From cb6462637efbd08770fea47b55b6f3a68e5da245 Mon Sep 17 00:00:00 2001 From: Dima Grossman Date: Sun, 15 Oct 2023 15:09:53 +0300 Subject: [PATCH 1/4] chore: upgrade pnpm --- .devcontainer/Dockerfile | 2 +- .gitpod.dockerfile | 2 +- _templates/provider/new/package.ejs.t | 4 - apps/api/Dockerfile | 2 +- apps/inbound-mail/Dockerfile | 2 +- apps/web/Dockerfile | 4 +- apps/webhook/Dockerfile | 2 +- apps/widget/Dockerfile | 2 +- apps/worker/Dockerfile | 2 +- apps/ws/Dockerfile | 2 +- libs/embed/Dockerfile | 2 +- package.json | 8 +- pnpm-lock.yaml | 22283 ++++++++++++----------- providers/africas-talking/package.json | 4 - providers/clicksend/package.json | 4 - providers/forty-six-elks/package.json | 4 - providers/mailtrap/package.json | 4 - providers/maqsam/package.json | 4 - providers/mattermost/package.json | 4 - providers/one-signal/package.json | 4 - providers/plunk/package.json | 4 - providers/push-webhook/package.json | 4 - providers/sendchamp/package.json | 4 - providers/sms-central/package.json | 4 - 24 files changed, 11626 insertions(+), 10735 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 73ca2ecbca2..ed6ad8ce3f0 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -22,7 +22,7 @@ RUN . /etc/os-release \ # RUN su node -c "source /usr/local/share/nvm/nvm.sh && nvm install ${EXTRA_NODE_VERSION}" # [Optional] Uncomment if you want to install more global node modules -RUN su node -c "npm install -g pnpm@7.33.4" +RUN su node -c "npm install -g pnpm@8.9.0" diff --git a/.gitpod.dockerfile b/.gitpod.dockerfile index 0b051589b8b..9977b434367 100644 --- a/.gitpod.dockerfile +++ b/.gitpod.dockerfile @@ -1,4 +1,4 @@ FROM gitpod/workspace-mongodb RUN sudo apt-get update && sudo apt-get install -y redis-server && sudo rm -rf /var/lib/apt/lists/* -RUN npm install -g pnpm@7.33.4 +RUN npm install -g pnpm@8.9.0 diff --git a/_templates/provider/new/package.ejs.t b/_templates/provider/new/package.ejs.t index aa94ddba9dc..5d6122610ec 100644 --- a/_templates/provider/new/package.ejs.t +++ b/_templates/provider/new/package.ejs.t @@ -33,10 +33,6 @@ "publishConfig": { "access": "public" }, - "engines": { - "node": ">=13.0.0 <17.0.0", - "pnpm": "^7.26.0" - }, "dependencies": { "@novu/stateless": "<%= version %>" }, diff --git a/apps/api/Dockerfile b/apps/api/Dockerfile index 05b4170e517..963994c0166 100644 --- a/apps/api/Dockerfile +++ b/apps/api/Dockerfile @@ -5,7 +5,7 @@ ENV BULL_MQ_PRO_NPM_TOKEN=$BULL_MQ_PRO_TOKEN ENV NX_DAEMON=false RUN npm i pm2 -g -RUN npm --no-update-notifier --no-fund --global install pnpm@7.33.4 +RUN npm --no-update-notifier --no-fund --global install pnpm@8.9.0 RUN pnpm --version WORKDIR /usr/src/app diff --git a/apps/inbound-mail/Dockerfile b/apps/inbound-mail/Dockerfile index 6592c77d7aa..fbe4ec0ebf6 100644 --- a/apps/inbound-mail/Dockerfile +++ b/apps/inbound-mail/Dockerfile @@ -5,7 +5,7 @@ ENV BULL_MQ_PRO_NPM_TOKEN=$BULL_MQ_PRO_TOKEN ENV NX_DAEMON=false RUN npm i pm2 -g -RUN npm --no-update-notifier --no-fund --global install pnpm@7.33.4 +RUN npm --no-update-notifier --no-fund --global install pnpm@8.9.0 RUN pnpm --version diff --git a/apps/web/Dockerfile b/apps/web/Dockerfile index ab2f64095a8..bc8805a7a98 100644 --- a/apps/web/Dockerfile +++ b/apps/web/Dockerfile @@ -5,7 +5,7 @@ ENV NX_DAEMON=false WORKDIR /usr/src/app RUN apk add --no-cache bash -RUN npm install -g pnpm@7.33.4 --loglevel notice +RUN npm install -g pnpm@8.9.0 --loglevel notice COPY .npmrc . COPY package.json . @@ -42,7 +42,7 @@ FROM node:16-alpine WORKDIR /app RUN apk add --no-cache bash -RUN npm install -g pnpm@7.33.4 http-server --loglevel notice +RUN npm install -g pnpm@8.9.0 http-server --loglevel notice COPY --from=builder /usr/src/app/apps/web/env.sh /app/env.sh COPY --from=builder /usr/src/app/apps/web/.env /app/.env diff --git a/apps/webhook/Dockerfile b/apps/webhook/Dockerfile index a3bde25c75c..686da15c1e3 100644 --- a/apps/webhook/Dockerfile +++ b/apps/webhook/Dockerfile @@ -2,7 +2,7 @@ FROM nikolaik/python-nodejs:python3.10-nodejs16-alpine as dev_base ENV NX_DAEMON=false RUN npm i pm2 -g -RUN npm --no-update-notifier --no-fund --global install pnpm@7.33.4 +RUN npm --no-update-notifier --no-fund --global install pnpm@8.9.0 RUN pnpm --version WORKDIR /usr/src/app diff --git a/apps/widget/Dockerfile b/apps/widget/Dockerfile index 6f36836b2be..28fe6f1a0f5 100644 --- a/apps/widget/Dockerfile +++ b/apps/widget/Dockerfile @@ -4,7 +4,7 @@ ENV NX_DAEMON=false WORKDIR /usr/src/app RUN apk add --no-cache bash -RUN npm install -g pnpm@7.33.4 --loglevel notice +RUN npm install -g pnpm@8.9.0 --loglevel notice COPY .npmrc . COPY package.json . diff --git a/apps/worker/Dockerfile b/apps/worker/Dockerfile index a0ee51501fc..d7f2687c034 100644 --- a/apps/worker/Dockerfile +++ b/apps/worker/Dockerfile @@ -6,7 +6,7 @@ ARG BULL_MQ_PRO_TOKEN ENV BULL_MQ_PRO_NPM_TOKEN=$BULL_MQ_PRO_TOKEN RUN npm i pm2 -g -RUN npm --no-update-notifier --no-fund --global install pnpm@7.33.4 +RUN npm --no-update-notifier --no-fund --global install pnpm@8.9.0 RUN pnpm --version WORKDIR /usr/src/app diff --git a/apps/ws/Dockerfile b/apps/ws/Dockerfile index 95097cdb8dc..8f71b41eeec 100644 --- a/apps/ws/Dockerfile +++ b/apps/ws/Dockerfile @@ -6,7 +6,7 @@ ENV NX_DAEMON=false WORKDIR /usr/src/app -RUN npm install -g pnpm@7.33.4 --loglevel notice +RUN npm install -g pnpm@8.9.0 --loglevel notice RUN npm i pm2 -g COPY .npmrc . diff --git a/libs/embed/Dockerfile b/libs/embed/Dockerfile index ae1df77321e..dc9c70fe1c4 100644 --- a/libs/embed/Dockerfile +++ b/libs/embed/Dockerfile @@ -2,7 +2,7 @@ FROM nikolaik/python-nodejs:python3.10-nodejs16-alpine WORKDIR /usr/src/app -RUN npm install -g pnpm@7.33.4 --loglevel notice --force +RUN npm install -g pnpm@8.9.0 --loglevel notice --force COPY .npmrc . COPY package.json . diff --git a/package.json b/package.json index 51b9af46dd1..f79d5793960 100644 --- a/package.json +++ b/package.json @@ -1,14 +1,14 @@ { "name": "novuhq", "private": true, - "packageManager": "pnpm@7.33.4", + "packageManager": "pnpm@8.9.0", "scripts": { "bootstrap": "npm run setup:dev", "start": "npm run jarvis", "preinstall": "npx only-allow pnpm", "prepare": "husky install", "publish": "lerna publish from-package", - "setup:project": "npx --yes pnpm@7.33.4 i && node scripts/setup-env-files.js && pnpm build", + "setup:project": "npx --yes pnpm@8.9.0 i && node scripts/setup-env-files.js && pnpm build", "clean": "lerna clean --yes && npm run prebuild", "commit": "cz", "nx": "nx", @@ -127,7 +127,7 @@ "meow": "^10.1.3", "mississippi": "^4.0.0", "ora": "~5.4.1", - "pnpm": "7.33.4", + "pnpm": "8.9.0", "prettier": "~2.8.0", "process": "^0.11.10", "rimraf": "^3.0.2", @@ -182,7 +182,7 @@ }, "engines": { "node": ">=13.0.0 <17.0.0", - "pnpm": "^7.33.4" + "pnpm": "^8.9.0" }, "dependencies": { "nx": "^15.9.2", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index f4f5e0ad312..40256195dc0 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,4 +1,8 @@ -lockfileVersion: 5.4 +lockfileVersion: '6.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false overrides: proxy-agent: ^6.3.0 @@ -7,3667 +11,5259 @@ overrides: importers: .: - specifiers: - '@auto-it/npm': ^10.36.5 - '@auto-it/released': ^10.36.5 - '@commitlint/cli': 17.6.6 - '@commitlint/config-angular': ^17.0.0 - '@commitlint/config-conventional': 17.6.6 - '@cspell/eslint-plugin': ^6.14.3 - '@nrwl/cli': 15.9.3 - '@nrwl/eslint-plugin-nx': 15.9.4 - '@nrwl/jest': 15.9.4 - '@nrwl/linter': 15.9.4 - '@nrwl/nx-cloud': ^15.3.5 - '@nrwl/tao': ^15.9.2 - '@nrwl/workspace': 13.10.6 - '@octokit/core': ^4.0.0 - '@pnpm/filter-workspace-packages': ^7.0.6 - '@pnpm/logger': ^5.0.0 - '@types/inquirer': 8.2.6 - '@types/jest': 29.5.2 - '@types/node': 16.11.7 - '@typescript-eslint/eslint-plugin': ^5.50.0 - '@typescript-eslint/parser': ^5.50.0 - auto: ^10.36.5 - chalk: 4.1.2 - chalk-animation: ^1.6.0 - commitizen: ^4.3.0 - cpx: ^1.5.0 - cross-env: ^7.0.3 - cross-spawn: ^7.0.3 - cspell: ^6.19.2 - cypress-intellij-reporter: ^0.0.7 - deep-extend: ^0.6.0 - detect-port: ^1.3.0 - eslint: ^8.33.0 - eslint-config-airbnb-typescript: ^17.1.0 - eslint-config-prettier: ^8.6.0 - eslint-import-resolver-webpack: ^0.13.7 - eslint-plugin-eslint-comments: ^3.2.0 - eslint-plugin-functional: ^3.7.2 - eslint-plugin-import: ^2.28.1 - eslint-plugin-jsx-a11y: ^6.5.1 - eslint-plugin-prettier: ^4.2.1 - eslint-plugin-promise: ^4.3.1 - eslint-plugin-react: 7.32.2 - eslint-plugin-react-hooks: ^4.4.0 - eslint-plugin-spellcheck: 0.0.20 - execa: ^6.1.0 - globby: ^12.2.0 - gradient-string: ^2.0.1 - husky: ^8.0.1 - hygen: ^6.2.0 - inquirer: 8.2.5 - jest: 27.5.1 - jira-prepare-commit-msg: 1.7.2 - lerna: 5.6.2 - lint-staged: ^10.5.4 - listr: ^0.14.3 - markdownlint-cli: ^0.33.0 - meow: ^10.1.3 - mississippi: ^4.0.0 - nx: ^15.9.2 - ora: ~5.4.1 - pnpm: 7.33.4 - prettier: ~2.8.0 - process: ^0.11.10 - rimraf: ^3.0.2 - shelljs: ^0.8.5 - stop-only: ^3.1.2 - tar: ^6.1.11 - ts-jest: 27.1.5 - ts-node: ~10.9.1 - tslib: ^2.4.0 - typescript: 4.9.5 - wait-port: ^0.3.0 dependencies: - nx: 15.9.2_@swc+core@1.3.49 - tslib: 2.5.0 + nx: + specifier: ^15.9.2 + version: 15.9.2(@swc/core@1.3.49) + tslib: + specifier: ^2.4.0 + version: 2.5.0 devDependencies: - '@auto-it/npm': 10.44.0_j6r65ghnzvzk7vhdh4hyogrm4a - '@auto-it/released': 10.44.0_j6r65ghnzvzk7vhdh4hyogrm4a - '@commitlint/cli': 17.6.6_@swc+core@1.3.49 - '@commitlint/config-angular': 17.4.4 - '@commitlint/config-conventional': 17.6.6 - '@cspell/eslint-plugin': 6.31.1 - '@nrwl/cli': 15.9.3_@swc+core@1.3.49 - '@nrwl/eslint-plugin-nx': 15.9.4_rmanuyj7qbkvesrwuotu2kcvrq - '@nrwl/jest': 15.9.4_4mszvvnvx7eov4zhuvou3pwege - '@nrwl/linter': 15.9.4_rifl5e35m62sxfy6k2lmajh6ta - '@nrwl/nx-cloud': 15.3.5 - '@nrwl/tao': 15.9.2_@swc+core@1.3.49 - '@nrwl/workspace': 13.10.6_436jpmx3has2zen3bhgulcyrsy - '@octokit/core': 4.2.0 - '@pnpm/filter-workspace-packages': 7.0.6_@pnpm+logger@5.0.0 - '@pnpm/logger': 5.0.0 - '@types/inquirer': 8.2.6 - '@types/jest': 29.5.2 - '@types/node': 16.11.7 - '@typescript-eslint/eslint-plugin': 5.58.0_hzv37tkb63et4viajosjuuyxgi - '@typescript-eslint/parser': 5.58.0_ze6bmax3gcsfve3yrzu6npguhe - auto: 10.44.0_j6r65ghnzvzk7vhdh4hyogrm4a - chalk: 4.1.2 - chalk-animation: 1.6.0 - commitizen: 4.3.0_@swc+core@1.3.49 - cpx: 1.5.0 - cross-env: 7.0.3 - cross-spawn: 7.0.3 - cspell: 6.19.2 - cypress-intellij-reporter: 0.0.7 - deep-extend: 0.6.0 - detect-port: 1.5.1 - eslint: 8.38.0 - eslint-config-airbnb-typescript: 17.1.0_do7ywwvi6jwswhx6pahjdup37u - eslint-config-prettier: 8.8.0_eslint@8.38.0 - eslint-import-resolver-webpack: 0.13.7_cgg6zkxgmecsi3sfqjiwsllzqq - eslint-plugin-eslint-comments: 3.2.0_eslint@8.38.0 - eslint-plugin-functional: 3.7.2_ze6bmax3gcsfve3yrzu6npguhe - eslint-plugin-import: 2.28.1_mqtuvpwfffxkinlbqzzyegexxa - eslint-plugin-jsx-a11y: 6.7.1_eslint@8.38.0 - eslint-plugin-prettier: 4.2.1_mrzcadguhkbme6yx3ehduvsjxu - eslint-plugin-promise: 4.3.1 - eslint-plugin-react: 7.32.2_eslint@8.38.0 - eslint-plugin-react-hooks: 4.6.0_eslint@8.38.0 - eslint-plugin-spellcheck: 0.0.20_eslint@8.38.0 - execa: 6.1.0 - globby: 12.2.0 - gradient-string: 2.0.2 - husky: 8.0.3 - hygen: 6.2.11 - inquirer: 8.2.5 - jest: 27.5.1_ts-node@10.9.1 - jira-prepare-commit-msg: 1.7.2 - lerna: 5.6.2_@swc+core@1.3.49 - lint-staged: 10.5.4 - listr: 0.14.3 - markdownlint-cli: 0.33.0 - meow: 10.1.5 - mississippi: 4.0.0 - ora: 5.4.1 - pnpm: 7.33.4 - prettier: 2.8.7 - process: 0.11.10 - rimraf: 3.0.2 - shelljs: 0.8.5 - stop-only: 3.3.1 - tar: 6.1.13 - ts-jest: 27.1.5_jt6hjr4g6reedzkbayzypxjbqa - ts-node: 10.9.1_j6r65ghnzvzk7vhdh4hyogrm4a - typescript: 4.9.5 - wait-port: 0.3.1 + '@auto-it/npm': + specifier: ^10.36.5 + version: 10.44.0(@swc/core@1.3.49)(@types/node@16.11.7)(typescript@4.9.5) + '@auto-it/released': + specifier: ^10.36.5 + version: 10.44.0(@swc/core@1.3.49)(@types/node@16.11.7)(typescript@4.9.5) + '@commitlint/cli': + specifier: 17.6.6 + version: 17.6.6(@swc/core@1.3.49) + '@commitlint/config-angular': + specifier: ^17.0.0 + version: 17.4.4 + '@commitlint/config-conventional': + specifier: 17.6.6 + version: 17.6.6 + '@cspell/eslint-plugin': + specifier: ^6.14.3 + version: 6.31.1 + '@nrwl/cli': + specifier: 15.9.3 + version: 15.9.3(@swc/core@1.3.49) + '@nrwl/eslint-plugin-nx': + specifier: 15.9.4 + version: 15.9.4(@typescript-eslint/parser@5.58.0)(eslint-config-prettier@8.8.0)(eslint@8.38.0)(nx@15.9.2)(typescript@4.9.5) + '@nrwl/jest': + specifier: 15.9.4 + version: 15.9.4(@swc/core@1.3.49)(@types/node@16.11.7)(nx@15.9.2)(ts-node@10.9.1)(typescript@4.9.5) + '@nrwl/linter': + specifier: 15.9.4 + version: 15.9.4(@swc/core@1.3.49)(eslint@8.38.0)(nx@15.9.2)(typescript@4.9.5) + '@nrwl/nx-cloud': + specifier: ^15.3.5 + version: 15.3.5 + '@nrwl/tao': + specifier: ^15.9.2 + version: 15.9.2(@swc/core@1.3.49) + '@nrwl/workspace': + specifier: 13.10.6 + version: 13.10.6(eslint@8.38.0)(prettier@2.8.7)(ts-node@10.9.1)(typescript@4.9.5) + '@octokit/core': + specifier: ^4.0.0 + version: 4.2.0 + '@pnpm/filter-workspace-packages': + specifier: ^7.0.6 + version: 7.0.6(@pnpm/logger@5.0.0) + '@pnpm/logger': + specifier: ^5.0.0 + version: 5.0.0 + '@types/inquirer': + specifier: 8.2.6 + version: 8.2.6 + '@types/jest': + specifier: 29.5.2 + version: 29.5.2 + '@types/node': + specifier: 16.11.7 + version: 16.11.7 + '@typescript-eslint/eslint-plugin': + specifier: ^5.50.0 + version: 5.58.0(@typescript-eslint/parser@5.58.0)(eslint@8.38.0)(typescript@4.9.5) + '@typescript-eslint/parser': + specifier: ^5.50.0 + version: 5.58.0(eslint@8.38.0)(typescript@4.9.5) + auto: + specifier: ^10.36.5 + version: 10.44.0(@swc/core@1.3.49)(@types/node@16.11.7)(typescript@4.9.5) + chalk: + specifier: 4.1.2 + version: 4.1.2 + chalk-animation: + specifier: ^1.6.0 + version: 1.6.0 + commitizen: + specifier: ^4.3.0 + version: 4.3.0(@swc/core@1.3.49) + cpx: + specifier: ^1.5.0 + version: 1.5.0 + cross-env: + specifier: ^7.0.3 + version: 7.0.3 + cross-spawn: + specifier: ^7.0.3 + version: 7.0.3 + cspell: + specifier: ^6.19.2 + version: 6.19.2 + cypress-intellij-reporter: + specifier: ^0.0.7 + version: 0.0.7 + deep-extend: + specifier: ^0.6.0 + version: 0.6.0 + detect-port: + specifier: ^1.3.0 + version: 1.5.1 + eslint: + specifier: ^8.33.0 + version: 8.38.0 + eslint-config-airbnb-typescript: + specifier: ^17.1.0 + version: 17.1.0(@typescript-eslint/eslint-plugin@5.58.0)(@typescript-eslint/parser@5.58.0)(eslint-plugin-import@2.28.1)(eslint@8.38.0) + eslint-config-prettier: + specifier: ^8.6.0 + version: 8.8.0(eslint@8.38.0) + eslint-import-resolver-webpack: + specifier: ^0.13.7 + version: 0.13.7(eslint-plugin-import@2.28.1)(webpack@5.78.0) + eslint-plugin-eslint-comments: + specifier: ^3.2.0 + version: 3.2.0(eslint@8.38.0) + eslint-plugin-functional: + specifier: ^3.7.2 + version: 3.7.2(eslint@8.38.0)(typescript@4.9.5) + eslint-plugin-import: + specifier: ^2.28.1 + version: 2.28.1(@typescript-eslint/parser@5.58.0)(eslint-import-resolver-webpack@0.13.7)(eslint@8.38.0) + eslint-plugin-jsx-a11y: + specifier: ^6.5.1 + version: 6.7.1(eslint@8.38.0) + eslint-plugin-prettier: + specifier: ^4.2.1 + version: 4.2.1(eslint-config-prettier@8.8.0)(eslint@8.38.0)(prettier@2.8.7) + eslint-plugin-promise: + specifier: ^4.3.1 + version: 4.3.1 + eslint-plugin-react: + specifier: 7.32.2 + version: 7.32.2(eslint@8.38.0) + eslint-plugin-react-hooks: + specifier: ^4.4.0 + version: 4.6.0(eslint@8.38.0) + eslint-plugin-spellcheck: + specifier: 0.0.20 + version: 0.0.20(eslint@8.38.0) + execa: + specifier: ^6.1.0 + version: 6.1.0 + globby: + specifier: ^12.2.0 + version: 12.2.0 + gradient-string: + specifier: ^2.0.1 + version: 2.0.2 + husky: + specifier: ^8.0.1 + version: 8.0.3 + hygen: + specifier: ^6.2.0 + version: 6.2.11 + inquirer: + specifier: 8.2.5 + version: 8.2.5 + jest: + specifier: 27.5.1 + version: 27.5.1(ts-node@10.9.1) + jira-prepare-commit-msg: + specifier: 1.7.2 + version: 1.7.2 + lerna: + specifier: 5.6.2 + version: 5.6.2(@swc/core@1.3.49) + lint-staged: + specifier: ^10.5.4 + version: 10.5.4 + listr: + specifier: ^0.14.3 + version: 0.14.3 + markdownlint-cli: + specifier: ^0.33.0 + version: 0.33.0 + meow: + specifier: ^10.1.3 + version: 10.1.5 + mississippi: + specifier: ^4.0.0 + version: 4.0.0 + ora: + specifier: ~5.4.1 + version: 5.4.1 + pnpm: + specifier: 8.9.0 + version: 8.9.0 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + process: + specifier: ^0.11.10 + version: 0.11.10 + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + shelljs: + specifier: ^0.8.5 + version: 0.8.5 + stop-only: + specifier: ^3.1.2 + version: 3.3.1 + tar: + specifier: ^6.1.11 + version: 6.1.13 + ts-jest: + specifier: 27.1.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@16.11.7)(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 + wait-port: + specifier: ^0.3.0 + version: 0.3.1 apps/api: - specifiers: - '@faker-js/faker': ^6.0.0 - '@godaddy/terminus': ^4.12.1 - '@google-cloud/storage': ^6.2.3 - '@nestjs/axios': ~2.0.0 - '@nestjs/cli': ^10.1.16 - '@nestjs/common': ^10.2.2 - '@nestjs/core': ^10.2.2 - '@nestjs/jwt': ^10.1.0 - '@nestjs/passport': ^10.0.1 - '@nestjs/platform-express': ^10.2.2 - '@nestjs/schematics': ^10.0.2 - '@nestjs/swagger': ^7.1.8 - '@nestjs/terminus': ^10.0.1 - '@nestjs/testing': ^10.2.2 - '@novu/application-generic': ^0.20.0-alpha.1 - '@novu/dal': ^0.20.0-alpha.1 - '@novu/ee-auth': ^0.19.0 - '@novu/node': ^0.20.0-alpha.1 - '@novu/shared': ^0.20.0-alpha.1 - '@novu/stateless': ^0.20.0-alpha.1 - '@novu/testing': ^0.20.0-alpha.1 - '@sendgrid/mail': ^7.6.0 - '@sentry/hub': ^7.40.0 - '@sentry/node': ^7.40.0 - '@sentry/tracing': ^7.40.0 - '@types/bcrypt': ^3.0.0 - '@types/bull': ^3.15.8 - '@types/chai': ^4.2.11 - '@types/express': 4.17.17 - '@types/mocha': ^8.2.3 - '@types/newrelic': ^9.14.0 - '@types/node': ^14.6.0 - '@types/passport-github': ^1.1.5 - '@types/passport-jwt': ^3.0.3 - '@types/sinon': ^9.0.0 - '@types/supertest': ^2.0.8 - axios: ^1.3.3 - bcrypt: ^5.0.0 - body-parser: ^1.20.0 - bull: ^4.2.1 - chai: ^4.2.0 - class-transformer: ^0.5.1 - class-validator: ^0.14.0 - compression: ^1.7.4 - cross-env: ^7.0.3 - date-fns: ^2.29.2 - dotenv: ^8.2.0 - envalid: ^6.0.1 - handlebars: ^4.7.7 - hat: ^0.0.3 - helmet: ^6.0.1 - ioredis: 5.3.2 - jsonwebtoken: 9.0.0 - lodash: ^4.17.15 - mocha: ^8.4.0 - nanoid: ^3.1.20 - nest-raven: ^10.0.0 - newrelic: ^9.15.0 - nodemon: ^3.0.1 - passport: 0.6.0 - passport-github2: ^0.1.12 - passport-jwt: ^4.0.0 - passport-oauth2: ^1.6.1 - recursive-diff: ^1.0.8 - redlock: 4.2.0 - reflect-metadata: ^0.1.13 - rimraf: ^3.0.2 - rxjs: 7.8.1 - sanitize-html: ^2.4.0 - shortid: ^2.2.16 - sinon: ^9.2.4 - slugify: ^1.4.6 - swagger-ui-express: ^4.4.0 - ts-loader: ~9.4.0 - ts-node: ~10.9.1 - tsconfig-paths: ~4.1.0 - twilio: ^4.14.1 - typescript: 4.9.5 - uuid: ^8.3.2 - dependencies: - '@godaddy/terminus': 4.12.1 - '@google-cloud/storage': 6.9.5 - '@nestjs/axios': 2.0.0_qwvj576sbz4hzeal5kp76dqnsi - '@nestjs/common': 10.2.2_j3td4gnlgk75ora6o6suo62byy - '@nestjs/core': 10.2.2_v4fpnjri37dvafci5vzkvgo4ne - '@nestjs/jwt': 10.1.0_@nestjs+common@10.2.2 - '@nestjs/passport': 10.0.1_kn4ljbedllcoqpuu4ifhphsdsu - '@nestjs/platform-express': 10.2.2_h33h3l6i5mruhsbo3bha6vy2fi - '@nestjs/swagger': 7.1.9_yggpgkps2ewgemp53dklozvzx4 - '@nestjs/terminus': 10.0.1_tzkr6j3uymzf5crrhzjmiwh6tq - '@novu/application-generic': link:../../packages/application-generic - '@novu/dal': link:../../libs/dal - '@novu/node': link:../../packages/node - '@novu/shared': link:../../libs/shared - '@novu/stateless': link:../../packages/stateless - '@novu/testing': link:../../libs/testing - '@sendgrid/mail': 7.7.0 - '@sentry/hub': 7.47.0 - '@sentry/node': 7.47.0 - '@sentry/tracing': 7.47.0 - '@types/newrelic': 9.14.0 - axios: 1.3.5 - bcrypt: 5.0.1 - body-parser: 1.20.2 - bull: 4.10.4 - class-transformer: 0.5.1 - class-validator: 0.14.0 - compression: 1.7.4 - cross-env: 7.0.3 - date-fns: 2.29.3 - dotenv: 8.6.0 - envalid: 6.0.2 - handlebars: 4.7.7 - hat: 0.0.3 - helmet: 6.1.4 - ioredis: 5.3.2 - jsonwebtoken: 9.0.0 - lodash: 4.17.21 - nanoid: 3.3.6 - nest-raven: 10.0.0_5jm5ambngrgwc4qwlo7r47envy - newrelic: 9.15.0 - passport: 0.6.0 - passport-github2: 0.1.12 - passport-jwt: 4.0.1 - passport-oauth2: 1.7.0 - recursive-diff: 1.0.9 - redlock: 4.2.0 - reflect-metadata: 0.1.13 - rimraf: 3.0.2 - rxjs: 7.8.1 - sanitize-html: 2.10.0 - shortid: 2.2.16 - slugify: 1.6.6 - swagger-ui-express: 4.6.2_express@4.18.2 - twilio: 4.15.0 - uuid: 8.3.2 + dependencies: + '@godaddy/terminus': + specifier: ^4.12.1 + version: 4.12.1 + '@google-cloud/storage': + specifier: ^6.2.3 + version: 6.9.5 + '@nestjs/axios': + specifier: ~2.0.0 + version: 2.0.0(@nestjs/common@10.2.2)(axios@1.3.5)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/common': + specifier: ^10.2.2 + version: 10.2.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/core': + specifier: ^10.2.2 + version: 10.2.2(@nestjs/common@10.2.2)(@nestjs/platform-express@10.2.2)(@nestjs/websockets@10.2.2)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/jwt': + specifier: ^10.1.0 + version: 10.1.0(@nestjs/common@10.2.2) + '@nestjs/passport': + specifier: ^10.0.1 + version: 10.0.1(@nestjs/common@10.2.2)(passport@0.6.0) + '@nestjs/platform-express': + specifier: ^10.2.2 + version: 10.2.2(@nestjs/common@10.2.2)(@nestjs/core@10.2.2) + '@nestjs/swagger': + specifier: ^7.1.8 + version: 7.1.9(@nestjs/common@10.2.2)(@nestjs/core@10.2.2)(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.1.13) + '@nestjs/terminus': + specifier: ^10.0.1 + version: 10.0.1(@nestjs/axios@2.0.0)(@nestjs/common@10.2.2)(@nestjs/core@10.2.2)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@novu/application-generic': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/application-generic + '@novu/dal': + specifier: ^0.20.0-alpha.1 + version: link:../../libs/dal + '@novu/node': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/node + '@novu/shared': + specifier: ^0.20.0-alpha.1 + version: link:../../libs/shared + '@novu/stateless': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/stateless + '@novu/testing': + specifier: ^0.20.0-alpha.1 + version: link:../../libs/testing + '@sendgrid/mail': + specifier: ^7.6.0 + version: 7.7.0 + '@sentry/hub': + specifier: ^7.40.0 + version: 7.47.0 + '@sentry/node': + specifier: ^7.40.0 + version: 7.47.0 + '@sentry/tracing': + specifier: ^7.40.0 + version: 7.47.0 + '@types/newrelic': + specifier: ^9.14.0 + version: 9.14.0 + axios: + specifier: ^1.3.3 + version: 1.3.5 + bcrypt: + specifier: ^5.0.0 + version: 5.0.1 + body-parser: + specifier: ^1.20.0 + version: 1.20.2 + bull: + specifier: ^4.2.1 + version: 4.10.4 + class-transformer: + specifier: ^0.5.1 + version: 0.5.1 + class-validator: + specifier: ^0.14.0 + version: 0.14.0 + compression: + specifier: ^1.7.4 + version: 1.7.4 + cross-env: + specifier: ^7.0.3 + version: 7.0.3 + date-fns: + specifier: ^2.29.2 + version: 2.29.3 + dotenv: + specifier: ^8.2.0 + version: 8.6.0 + envalid: + specifier: ^6.0.1 + version: 6.0.2 + handlebars: + specifier: ^4.7.7 + version: 4.7.7 + hat: + specifier: ^0.0.3 + version: 0.0.3 + helmet: + specifier: ^6.0.1 + version: 6.1.4 + ioredis: + specifier: 5.3.2 + version: 5.3.2 + jsonwebtoken: + specifier: 9.0.0 + version: 9.0.0 + lodash: + specifier: ^4.17.15 + version: 4.17.21 + nanoid: + specifier: ^3.1.20 + version: 3.3.6 + nest-raven: + specifier: ^10.0.0 + version: 10.0.0(@nestjs/common@10.2.2)(@nestjs/core@10.2.2)(@sentry/node@7.47.0)(class-transformer@0.5.1)(class-validator@0.14.0)(graphql@16.8.0)(reflect-metadata@0.1.13)(rxjs@7.8.1) + newrelic: + specifier: ^9.15.0 + version: 9.15.0 + passport: + specifier: 0.6.0 + version: 0.6.0 + passport-github2: + specifier: ^0.1.12 + version: 0.1.12 + passport-jwt: + specifier: ^4.0.0 + version: 4.0.1 + passport-oauth2: + specifier: ^1.6.1 + version: 1.7.0 + recursive-diff: + specifier: ^1.0.8 + version: 1.0.9 + redlock: + specifier: 4.2.0 + version: 4.2.0 + reflect-metadata: + specifier: ^0.1.13 + version: 0.1.13 + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + rxjs: + specifier: 7.8.1 + version: 7.8.1 + sanitize-html: + specifier: ^2.4.0 + version: 2.10.0 + shortid: + specifier: ^2.2.16 + version: 2.2.16 + slugify: + specifier: ^1.4.6 + version: 1.6.6 + swagger-ui-express: + specifier: ^4.4.0 + version: 4.6.2(express@4.18.2) + twilio: + specifier: ^4.14.1 + version: 4.15.0 + uuid: + specifier: ^8.3.2 + version: 8.3.2 optionalDependencies: - '@novu/ee-auth': link:../../enterprise/packages/auth + '@novu/ee-auth': + specifier: ^0.19.0 + version: link:../../enterprise/packages/auth devDependencies: - '@faker-js/faker': 6.3.1 - '@nestjs/cli': 10.1.16 - '@nestjs/schematics': 10.0.2_typescript@4.9.5 - '@nestjs/testing': 10.2.2_atmp46a5rgegz5v7qiffjhuro4 - '@types/bcrypt': 3.0.1 - '@types/bull': 3.15.9 - '@types/chai': 4.3.4 - '@types/express': 4.17.17 - '@types/mocha': 8.2.3 - '@types/node': 14.18.42 - '@types/passport-github': 1.1.7 - '@types/passport-jwt': 3.0.8 - '@types/sinon': 9.0.11 - '@types/supertest': 2.0.12 - chai: 4.3.7 - mocha: 8.4.0 - nodemon: 3.0.1 - sinon: 9.2.4 - ts-loader: 9.4.2_fejcc7gjbwtmwzggoernzojija - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - tsconfig-paths: 4.1.2 - typescript: 4.9.5 + '@faker-js/faker': + specifier: ^6.0.0 + version: 6.3.1 + '@nestjs/cli': + specifier: ^10.1.16 + version: 10.1.16(@swc/core@1.3.49) + '@nestjs/schematics': + specifier: ^10.0.2 + version: 10.0.2(typescript@4.9.5) + '@nestjs/testing': + specifier: ^10.2.2 + version: 10.2.2(@nestjs/common@10.2.2)(@nestjs/core@10.2.2)(@nestjs/platform-express@10.2.2) + '@types/bcrypt': + specifier: ^3.0.0 + version: 3.0.1 + '@types/bull': + specifier: ^3.15.8 + version: 3.15.9 + '@types/chai': + specifier: ^4.2.11 + version: 4.3.4 + '@types/express': + specifier: 4.17.17 + version: 4.17.17 + '@types/mocha': + specifier: ^8.2.3 + version: 8.2.3 + '@types/node': + specifier: ^14.6.0 + version: 14.18.42 + '@types/passport-github': + specifier: ^1.1.5 + version: 1.1.7 + '@types/passport-jwt': + specifier: ^3.0.3 + version: 3.0.8 + '@types/sinon': + specifier: ^9.0.0 + version: 9.0.11 + '@types/supertest': + specifier: ^2.0.8 + version: 2.0.12 + chai: + specifier: ^4.2.0 + version: 4.3.7 + mocha: + specifier: ^8.4.0 + version: 8.4.0 + nodemon: + specifier: ^3.0.1 + version: 3.0.1 + sinon: + specifier: ^9.2.4 + version: 9.2.4 + ts-loader: + specifier: ~9.4.0 + version: 9.4.2(typescript@4.9.5)(webpack@5.78.0) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + tsconfig-paths: + specifier: ~4.1.0 + version: 4.1.2 + typescript: + specifier: 4.9.5 + version: 4.9.5 apps/inbound-mail: - specifiers: - '@novu/application-generic': ^0.20.0-alpha.1 - '@novu/shared': ^0.20.0-alpha.1 - '@novu/testing': ^0.20.0-alpha.1 - '@sentry/node': ^7.12.1 - '@types/chai': ^4.2.11 - '@types/express': ^4.17.8 - '@types/html-to-text': ^9.0.1 - '@types/mocha': ^8.2.3 - '@types/node': ^14.14.6 - '@types/sinon': ^9.0.0 - '@types/smtp-server': ^3.5.7 - bluebird: ^2.9.30 - cross-env: ^7.0.3 - dotenv: ^8.6.0 - envalid: ^7.1.0 - extend: ^2.0.1 - html-to-text: ^9.0.5 - languagedetect: ^1.1.1 - lodash: ^4.17.15 - mailparser: ^0.6.0 - mocha: ^8.4.0 - newrelic: ^9.15.0 - nodemon: ^3.0.1 - prettier: ~2.8.0 - rimraf: ^3.0.2 - shelljs: ^0.8.5 - sinon: ^9.2.4 - smtp-server: ^1.4.0 - spamc: 0.0.5 - ts-jest: ^27.0.7 - ts-loader: ~9.4.0 - ts-node: ~10.9.1 - tsconfig-paths: ~4.1.0 - typescript: 4.9.5 - uuid: ^9.0.0 - winston: ^3.9.0 dependencies: - '@novu/application-generic': link:../../packages/application-generic - '@novu/shared': link:../../libs/shared - '@sentry/node': 7.47.0 - bluebird: 2.11.0 - dotenv: 8.6.0 - envalid: 7.3.1 - extend: 2.0.2 - html-to-text: 9.0.5 - languagedetect: 1.3.0 - lodash: 4.17.21 - mailparser: 0.6.2 - newrelic: 9.15.0 - rimraf: 3.0.2 - shelljs: 0.8.5 - smtp-server: 1.17.0 - spamc: 0.0.5 - uuid: 9.0.0 - winston: 3.10.0 + '@novu/application-generic': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/application-generic + '@novu/shared': + specifier: ^0.20.0-alpha.1 + version: link:../../libs/shared + '@sentry/node': + specifier: ^7.12.1 + version: 7.47.0 + bluebird: + specifier: ^2.9.30 + version: 2.11.0 + dotenv: + specifier: ^8.6.0 + version: 8.6.0 + envalid: + specifier: ^7.1.0 + version: 7.3.1 + extend: + specifier: ^2.0.1 + version: 2.0.2 + html-to-text: + specifier: ^9.0.5 + version: 9.0.5 + languagedetect: + specifier: ^1.1.1 + version: 1.3.0 + lodash: + specifier: ^4.17.15 + version: 4.17.21 + mailparser: + specifier: ^0.6.0 + version: 0.6.2 + newrelic: + specifier: ^9.15.0 + version: 9.15.0 + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + shelljs: + specifier: ^0.8.5 + version: 0.8.5 + smtp-server: + specifier: ^1.4.0 + version: 1.17.0 + spamc: + specifier: 0.0.5 + version: 0.0.5 + uuid: + specifier: ^9.0.0 + version: 9.0.0 + winston: + specifier: ^3.9.0 + version: 3.10.0 devDependencies: - '@novu/testing': link:../../libs/testing - '@types/chai': 4.3.4 - '@types/express': 4.17.17 - '@types/html-to-text': 9.0.1 - '@types/mocha': 8.2.3 - '@types/node': 14.18.42 - '@types/sinon': 9.0.11 - '@types/smtp-server': 3.5.7 - cross-env: 7.0.3 - mocha: 8.4.0 - nodemon: 3.0.1 - prettier: 2.8.7 - sinon: 9.2.4 - ts-jest: 27.1.5_cnngzrja2umb46xxazlucyx2qu - ts-loader: 9.4.2_fejcc7gjbwtmwzggoernzojija - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - tsconfig-paths: 4.1.2 - typescript: 4.9.5 + '@novu/testing': + specifier: ^0.20.0-alpha.1 + version: link:../../libs/testing + '@types/chai': + specifier: ^4.2.11 + version: 4.3.4 + '@types/express': + specifier: ^4.17.8 + version: 4.17.17 + '@types/html-to-text': + specifier: ^9.0.1 + version: 9.0.1 + '@types/mocha': + specifier: ^8.2.3 + version: 8.2.3 + '@types/node': + specifier: ^14.14.6 + version: 14.18.42 + '@types/sinon': + specifier: ^9.0.0 + version: 9.0.11 + '@types/smtp-server': + specifier: ^3.5.7 + version: 3.5.7 + cross-env: + specifier: ^7.0.3 + version: 7.0.3 + mocha: + specifier: ^8.4.0 + version: 8.4.0 + nodemon: + specifier: ^3.0.1 + version: 3.0.1 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + sinon: + specifier: ^9.2.4 + version: 9.2.4 + ts-jest: + specifier: ^27.0.7 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) + ts-loader: + specifier: ~9.4.0 + version: 9.4.2(typescript@4.9.5)(webpack@5.78.0) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + tsconfig-paths: + specifier: ~4.1.0 + version: 4.1.2 + typescript: + specifier: 4.9.5 + version: 4.9.5 apps/web: - specifiers: - '@ant-design/icons': ^4.6.2 - '@babel/plugin-proposal-optional-chaining': ^7.20.7 - '@babel/plugin-transform-react-display-name': ^7.18.6 - '@babel/plugin-transform-runtime': ^7.19.6 - '@babel/polyfill': ^7.12.1 - '@babel/preset-env': ^7.13.15 - '@babel/preset-react': ^7.13.13 - '@babel/preset-typescript': ^7.13.0 - '@babel/runtime': ^7.20.13 - '@cypress/react': ^7.0.2 - '@cypress/webpack-dev-server': ^3.1.2 - '@editorjs/editorjs': ^2.19.3 - '@editorjs/paragraph': ^2.8.0 - '@emotion/babel-plugin': ^11.7.2 - '@emotion/react': ^11.7.1 - '@emotion/styled': ^11.6.0 - '@fortawesome/fontawesome-svg-core': ^6.4.0 - '@fortawesome/free-regular-svg-icons': ^6.4.0 - '@fortawesome/free-solid-svg-icons': ^6.4.0 - '@fortawesome/react-fontawesome': ^0.2.0 - '@handlebars/parser': ^2.1.0 - '@hookform/devtools': ^4.3.0 - '@hookform/resolvers': ^2.9.1 - '@mantine/core': ^5.7.1 - '@mantine/dropzone': ^5.9.2 - '@mantine/form': ^5.10.4 - '@mantine/hooks': ^5.7.1 - '@mantine/notifications': ^5.7.1 - '@mantine/prism': ^5.7.1 - '@mantine/spotlight': ^5.7.1 - '@novu/dal': ^0.20.0-alpha.1 - '@novu/notification-center': ^0.20.0-alpha.1 - '@novu/shared': ^0.20.0-alpha.1 - '@novu/testing': ^0.20.0-alpha.1 - '@segment/analytics-next': ^1.48.0 - '@sentry/react': ^7.40.0 - '@sentry/tracing': ^7.40.0 - '@storybook/addon-actions': ^7.4.2 - '@storybook/addon-docs': ^7.4.2 - '@storybook/addon-essentials': ^7.4.2 - '@storybook/addon-links': ^7.4.2 - '@storybook/addon-mdx-gfm': ^7.4.2 - '@storybook/node-logger': ^7.4.2 - '@storybook/preset-create-react-app': ^7.4.2 - '@storybook/react': ^7.4.2 - '@storybook/react-webpack5': ^7.4.2 - '@storybook/theming': ^7.4.2 - '@tanstack/react-query': ^4.20.4 - '@tanstack/react-query-devtools': ^4.20.4 - '@testing-library/jest-dom': ^4.2.4 - '@testing-library/react': ^11.1.0 - '@testing-library/user-event': ^12.1.10 - '@types/jest': ^29.5.0 - '@types/node': ^12.0.0 - '@types/react': ^17.0.0 - '@types/react-dom': ^17.0.0 - '@types/react-table': ^7.7.12 - '@types/testing-library__jest-dom': ^5.14.5 - ace-builds: ^1.4.12 - antd: ^4.10.0 - autoprefixer: ^9.8.6 - axios: ^1.3.3 - babel-plugin-import: ^1.13.3 - chart.js: ^3.7.1 - customize-cra: ^1.0.0 - cypress: ^13.3.1 - cypress-localstorage-commands: ^2.2.4 - cypress-network-idle: ^1.14.2 - cypress-wait-until: ^2.0.1 - date-fns: ^2.29.2 - eslint-plugin-cypress: ^2.15.1 - eslint-plugin-react-hooks: ^4.4.0 - eslint-plugin-storybook: ^0.6.13 - handlebars: ^4.7.7 - html-webpack-plugin: 5.5.3 - http-server: ^0.13.0 - jwt-decode: ^3.1.2 - launchdarkly-react-client-sdk: ^3.0.6 - less: ^4.1.0 - less-loader: 4.1.0 - localforage: ^1.10.0 - lodash.capitalize: ^4.2.1 - lodash.clonedeep: ^4.5.0 - lodash.debounce: ^4.0.8 - lodash.get: ^4.3.2 - lodash.isequal: ^4.5.0 - lodash.set: ^4.3.2 - logrocket: ^3.0.1 - logrocket-react: ^5.0.1 - nodemon: ^3.0.1 - polished: ^4.1.3 - react: ^17.0.1 - react-ace: ^9.4.3 - react-app-rewired: ^2.2.1 - react-chartjs-2: ^4.0.1 - react-color: ^2.19.3 - react-css-theme-switcher: ^0.3.0 - react-custom-scrollbars: ^4.2.1 - react-dom: ^17.0.1 - react-editor-js: ^1.9.0 - react-error-boundary: ^3.1.4 - react-error-overlay: 6.0.11 - react-flow-renderer: ^10.2.2 - react-frame-component: ^5.2.3 - react-helmet-async: ^1.3.0 - react-hook-form: 7.43.9 - react-is: ^18.2.0 - react-joyride: ^2.5.3 - react-password-strength-bar: ^0.4.1 - react-router-dom: ^6.2.2 - react-scripts: ^5.0.1 - react-syntax-highlighter: ^15.4.3 - react-table: ^7.8.0 - react-use-intercom: ^2.0.0 - rimraf: ^3.0.2 - slugify: ^1.4.6 - storybook: ^7.4.2 - storybook-dark-mode: ^3.0.1 - typescript: 4.9.5 - uniqid: ^5.3.0 - uuid: 8.3.2 - web-vitals: ^1.0.1 - webpack: ^5.74.0 - webpack-bundle-analyzer: ^4.9.0 - webpack-dev-server: 4.11.1 - zod: ^3.22.4 - dependencies: - '@ant-design/icons': 4.8.0_sfoxds7t5ydpegc3knd667wn6m - '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.22.11 - '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.22.11 - '@babel/plugin-transform-runtime': 7.21.4_@babel+core@7.22.11 - '@cypress/react': 7.0.3_bfinbys3vemhhivbg2jouyjph4 - '@cypress/webpack-dev-server': 3.6.1_webpack@5.78.0 - '@editorjs/editorjs': 2.26.5 - '@editorjs/paragraph': 2.9.0 - '@emotion/babel-plugin': 11.10.6 - '@emotion/react': 11.10.6_h7fc2el62uaa77gho3xhys6ola - '@emotion/styled': 11.10.6_7hisdke2c3hq4r3q5z4dcdhmzi - '@fortawesome/fontawesome-svg-core': 6.4.0 - '@fortawesome/free-regular-svg-icons': 6.4.0 - '@fortawesome/free-solid-svg-icons': 6.4.0 - '@fortawesome/react-fontawesome': 0.2.0_zute3adenybwwon4zpn6czkvnu - '@handlebars/parser': 2.1.0 - '@hookform/devtools': 4.3.1_zsjcj4gvi24ks76nprapl4hsmq - '@hookform/resolvers': 2.9.11_react-hook-form@7.43.9 - '@mantine/core': 5.10.5_dw37j7nepvponzncdz6mvufjke - '@mantine/dropzone': 5.10.5_uqcojzsz4iurdloxre3kx4xxdq - '@mantine/form': 5.10.5_react@17.0.2 - '@mantine/hooks': 5.10.5_react@17.0.2 - '@mantine/notifications': 5.10.5_uqcojzsz4iurdloxre3kx4xxdq - '@mantine/prism': 5.10.5_uqcojzsz4iurdloxre3kx4xxdq - '@mantine/spotlight': 5.10.5_uqcojzsz4iurdloxre3kx4xxdq - '@novu/notification-center': link:../../packages/notification-center - '@novu/shared': link:../../libs/shared - '@segment/analytics-next': 1.51.3 - '@sentry/react': 7.47.0_react@17.0.2 - '@sentry/tracing': 7.47.0 - '@storybook/addon-docs': 7.4.2_ktlmga7inmpnhh4xu7kimj7cou - '@storybook/theming': 7.4.2_sfoxds7t5ydpegc3knd667wn6m - '@tanstack/react-query': 4.29.1_sfoxds7t5ydpegc3knd667wn6m - '@tanstack/react-query-devtools': 4.29.1_fc767x2zeowb6djszczb2347uq - '@testing-library/react': 11.2.7_sfoxds7t5ydpegc3knd667wn6m - '@testing-library/user-event': 12.8.3_@testing-library+dom@9.3.1 - '@types/jest': 29.5.1 - '@types/node': 12.20.55 - '@types/react': 17.0.53 - '@types/react-dom': 17.0.19 - '@types/react-table': 7.7.14 - ace-builds: 1.16.0 - antd: 4.24.8_sfoxds7t5ydpegc3knd667wn6m - autoprefixer: 9.8.8 - axios: 1.3.5 - babel-plugin-import: 1.13.6 - chart.js: 3.9.1 - customize-cra: 1.0.0 - date-fns: 2.29.3 - eslint-plugin-react-hooks: 4.6.0_eslint@8.48.0 - handlebars: 4.7.7 - html-webpack-plugin: 5.5.3_webpack@5.78.0 - jwt-decode: 3.1.2 - launchdarkly-react-client-sdk: 3.0.6_sfoxds7t5ydpegc3knd667wn6m - less: 4.1.3 - localforage: 1.10.0 - lodash.capitalize: 4.2.1 - lodash.clonedeep: 4.5.0 - lodash.debounce: 4.0.8 - lodash.get: 4.4.2 - lodash.isequal: 4.5.0 - lodash.set: 4.3.2 - logrocket: 3.0.1 - logrocket-react: 5.0.1_yo3aqogrrsw23ory4s7zu7wcpm - polished: 4.2.2 - react: 17.0.2 - react-ace: 9.5.0_sfoxds7t5ydpegc3knd667wn6m - react-chartjs-2: 4.3.1_5vgmout2ofjcau3vzj5upbaj34 - react-color: 2.19.3_react@17.0.2 - react-css-theme-switcher: 0.3.0_react@17.0.2 - react-custom-scrollbars: 4.2.1_sfoxds7t5ydpegc3knd667wn6m - react-dom: 17.0.2_react@17.0.2 - react-editor-js: 1.10.0_4t43o4z4vuajxdsiirtibzrzbi - react-error-boundary: 3.1.4_react@17.0.2 - react-flow-renderer: 10.3.17_sfoxds7t5ydpegc3knd667wn6m - react-frame-component: 5.2.6_oxfzelaz5ynxsop2v2nu2h2m64 - react-helmet-async: 1.3.0_sfoxds7t5ydpegc3knd667wn6m - react-hook-form: 7.43.9_react@17.0.2 - react-is: 18.2.0 - react-password-strength-bar: 0.4.1_sfoxds7t5ydpegc3knd667wn6m - react-router-dom: 6.2.2_sfoxds7t5ydpegc3knd667wn6m - react-scripts: 5.0.1_sq2rawq4ox4a7yhpjmexqgy4wu - react-syntax-highlighter: 15.5.0_react@17.0.2 - react-table: 7.8.0_react@17.0.2 - react-use-intercom: 2.1.0_sfoxds7t5ydpegc3knd667wn6m - rimraf: 3.0.2 - slugify: 1.6.6 - storybook-dark-mode: 3.0.1_ktlmga7inmpnhh4xu7kimj7cou - typescript: 4.9.5 - uniqid: 5.4.0 - uuid: 8.3.2 - web-vitals: 1.1.2 - webpack-dev-server: 4.11.1_webpack@5.78.0 - zod: 3.22.4 + dependencies: + '@ant-design/icons': + specifier: ^4.6.2 + version: 4.8.0(react-dom@17.0.2)(react@17.0.2) + '@babel/plugin-proposal-optional-chaining': + specifier: ^7.20.7 + version: 7.21.0(@babel/core@7.22.11) + '@babel/plugin-transform-react-display-name': + specifier: ^7.18.6 + version: 7.18.6(@babel/core@7.22.11) + '@babel/plugin-transform-runtime': + specifier: ^7.19.6 + version: 7.21.4(@babel/core@7.22.11) + '@cypress/react': + specifier: ^7.0.2 + version: 7.0.3(@types/react@17.0.53)(cypress@13.3.1)(react-dom@17.0.2)(react@17.0.2) + '@cypress/webpack-dev-server': + specifier: ^3.1.2 + version: 3.6.1(webpack@5.78.0) + '@editorjs/editorjs': + specifier: ^2.19.3 + version: 2.26.5 + '@editorjs/paragraph': + specifier: ^2.8.0 + version: 2.9.0 + '@emotion/babel-plugin': + specifier: ^11.7.2 + version: 11.10.6 + '@emotion/react': + specifier: ^11.7.1 + version: 11.10.6(@types/react@17.0.53)(react@17.0.2) + '@emotion/styled': + specifier: ^11.6.0 + version: 11.10.6(@emotion/react@11.10.6)(@types/react@17.0.53)(react@17.0.2) + '@fortawesome/fontawesome-svg-core': + specifier: ^6.4.0 + version: 6.4.0 + '@fortawesome/free-regular-svg-icons': + specifier: ^6.4.0 + version: 6.4.0 + '@fortawesome/free-solid-svg-icons': + specifier: ^6.4.0 + version: 6.4.0 + '@fortawesome/react-fontawesome': + specifier: ^0.2.0 + version: 0.2.0(@fortawesome/fontawesome-svg-core@6.4.0)(react@17.0.2) + '@handlebars/parser': + specifier: ^2.1.0 + version: 2.1.0 + '@hookform/devtools': + specifier: ^4.3.0 + version: 4.3.1(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) + '@hookform/resolvers': + specifier: ^2.9.1 + version: 2.9.11(react-hook-form@7.43.9) + '@mantine/core': + specifier: ^5.7.1 + version: 5.10.5(@emotion/react@11.10.6)(@mantine/hooks@5.10.5)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) + '@mantine/dropzone': + specifier: ^5.9.2 + version: 5.10.5(@mantine/core@5.10.5)(@mantine/hooks@5.10.5)(react-dom@17.0.2)(react@17.0.2) + '@mantine/form': + specifier: ^5.10.4 + version: 5.10.5(react@17.0.2) + '@mantine/hooks': + specifier: ^5.7.1 + version: 5.10.5(react@17.0.2) + '@mantine/notifications': + specifier: ^5.7.1 + version: 5.10.5(@mantine/core@5.10.5)(@mantine/hooks@5.10.5)(react-dom@17.0.2)(react@17.0.2) + '@mantine/prism': + specifier: ^5.7.1 + version: 5.10.5(@mantine/core@5.10.5)(@mantine/hooks@5.10.5)(react-dom@17.0.2)(react@17.0.2) + '@mantine/spotlight': + specifier: ^5.7.1 + version: 5.10.5(@mantine/core@5.10.5)(@mantine/hooks@5.10.5)(react-dom@17.0.2)(react@17.0.2) + '@novu/notification-center': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/notification-center + '@novu/shared': + specifier: ^0.20.0-alpha.1 + version: link:../../libs/shared + '@segment/analytics-next': + specifier: ^1.48.0 + version: 1.51.3 + '@sentry/react': + specifier: ^7.40.0 + version: 7.47.0(react@17.0.2) + '@sentry/tracing': + specifier: ^7.40.0 + version: 7.47.0 + '@storybook/addon-docs': + specifier: ^7.4.2 + version: 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) + '@storybook/theming': + specifier: ^7.4.2 + version: 7.4.2(react-dom@17.0.2)(react@17.0.2) + '@tanstack/react-query': + specifier: ^4.20.4 + version: 4.29.1(react-dom@17.0.2)(react@17.0.2) + '@tanstack/react-query-devtools': + specifier: ^4.20.4 + version: 4.29.1(@tanstack/react-query@4.29.1)(react-dom@17.0.2)(react@17.0.2) + '@testing-library/react': + specifier: ^11.1.0 + version: 11.2.7(react-dom@17.0.2)(react@17.0.2) + '@testing-library/user-event': + specifier: ^12.1.10 + version: 12.8.3(@testing-library/dom@9.3.1) + '@types/jest': + specifier: ^29.5.0 + version: 29.5.1 + '@types/node': + specifier: ^12.0.0 + version: 12.20.55 + '@types/react': + specifier: ^17.0.0 + version: 17.0.53 + '@types/react-dom': + specifier: ^17.0.0 + version: 17.0.19 + '@types/react-table': + specifier: ^7.7.12 + version: 7.7.14 + ace-builds: + specifier: ^1.4.12 + version: 1.16.0 + antd: + specifier: ^4.10.0 + version: 4.24.8(react-dom@17.0.2)(react@17.0.2) + autoprefixer: + specifier: ^9.8.6 + version: 9.8.8 + axios: + specifier: ^1.3.3 + version: 1.3.5 + babel-plugin-import: + specifier: ^1.13.3 + version: 1.13.6 + chart.js: + specifier: ^3.7.1 + version: 3.9.1 + customize-cra: + specifier: ^1.0.0 + version: 1.0.0 + date-fns: + specifier: ^2.29.2 + version: 2.29.3 + eslint-plugin-react-hooks: + specifier: ^4.4.0 + version: 4.6.0(eslint@8.48.0) + handlebars: + specifier: ^4.7.7 + version: 4.7.7 + html-webpack-plugin: + specifier: 5.5.3 + version: 5.5.3(webpack@5.78.0) + jwt-decode: + specifier: ^3.1.2 + version: 3.1.2 + launchdarkly-react-client-sdk: + specifier: ^3.0.6 + version: 3.0.6(react-dom@17.0.2)(react@17.0.2) + less: + specifier: ^4.1.0 + version: 4.1.3 + localforage: + specifier: ^1.10.0 + version: 1.10.0 + lodash.capitalize: + specifier: ^4.2.1 + version: 4.2.1 + lodash.clonedeep: + specifier: ^4.5.0 + version: 4.5.0 + lodash.debounce: + specifier: ^4.0.8 + version: 4.0.8 + lodash.get: + specifier: ^4.3.2 + version: 4.4.2 + lodash.isequal: + specifier: ^4.5.0 + version: 4.5.0 + lodash.set: + specifier: ^4.3.2 + version: 4.3.2 + logrocket: + specifier: ^3.0.1 + version: 3.0.1 + logrocket-react: + specifier: ^5.0.1 + version: 5.0.1(logrocket@3.0.1)(react-dom@17.0.2)(react@17.0.2) + polished: + specifier: ^4.1.3 + version: 4.2.2 + react: + specifier: ^17.0.1 + version: 17.0.2 + react-ace: + specifier: ^9.4.3 + version: 9.5.0(react-dom@17.0.2)(react@17.0.2) + react-chartjs-2: + specifier: ^4.0.1 + version: 4.3.1(chart.js@3.9.1)(react@17.0.2) + react-color: + specifier: ^2.19.3 + version: 2.19.3(react@17.0.2) + react-css-theme-switcher: + specifier: ^0.3.0 + version: 0.3.0(react@17.0.2) + react-custom-scrollbars: + specifier: ^4.2.1 + version: 4.2.1(react-dom@17.0.2)(react@17.0.2) + react-dom: + specifier: ^17.0.1 + version: 17.0.2(react@17.0.2) + react-editor-js: + specifier: ^1.9.0 + version: 1.10.0(@editorjs/editorjs@2.26.5)(@editorjs/paragraph@2.9.0) + react-error-boundary: + specifier: ^3.1.4 + version: 3.1.4(react@17.0.2) + react-flow-renderer: + specifier: ^10.2.2 + version: 10.3.17(react-dom@17.0.2)(react@17.0.2) + react-frame-component: + specifier: ^5.2.3 + version: 5.2.6(prop-types@15.8.1)(react-dom@17.0.2)(react@17.0.2) + react-helmet-async: + specifier: ^1.3.0 + version: 1.3.0(react-dom@17.0.2)(react@17.0.2) + react-hook-form: + specifier: 7.43.9 + version: 7.43.9(react@17.0.2) + react-is: + specifier: ^18.2.0 + version: 18.2.0 + react-password-strength-bar: + specifier: ^0.4.1 + version: 0.4.1(react-dom@17.0.2)(react@17.0.2) + react-router-dom: + specifier: ^6.2.2 + version: 6.2.2(react-dom@17.0.2)(react@17.0.2) + react-scripts: + specifier: ^5.0.1 + version: 5.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(@swc/core@1.3.49)(esbuild@0.18.20)(eslint-import-resolver-webpack@0.13.7)(eslint@8.48.0)(react@17.0.2)(ts-node@10.9.1)(typescript@4.9.5) + react-syntax-highlighter: + specifier: ^15.4.3 + version: 15.5.0(react@17.0.2) + react-table: + specifier: ^7.8.0 + version: 7.8.0(react@17.0.2) + react-use-intercom: + specifier: ^2.0.0 + version: 2.1.0(react-dom@17.0.2)(react@17.0.2) + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + slugify: + specifier: ^1.4.6 + version: 1.6.6 + storybook-dark-mode: + specifier: ^3.0.1 + version: 3.0.1(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) + typescript: + specifier: 4.9.5 + version: 4.9.5 + uniqid: + specifier: ^5.3.0 + version: 5.4.0 + uuid: + specifier: 8.3.2 + version: 8.3.2 + web-vitals: + specifier: ^1.0.1 + version: 1.1.2 + webpack-dev-server: + specifier: 4.11.1 + version: 4.11.1(webpack@5.78.0) + zod: + specifier: ^3.22.4 + version: 3.22.4 devDependencies: - '@babel/polyfill': 7.12.1 - '@babel/preset-env': 7.21.4_@babel+core@7.22.11 - '@babel/preset-react': 7.18.6_@babel+core@7.22.11 - '@babel/preset-typescript': 7.21.4_@babel+core@7.22.11 - '@babel/runtime': 7.21.0 - '@novu/dal': link:../../libs/dal - '@novu/testing': link:../../libs/testing - '@storybook/addon-actions': 7.4.2_ktlmga7inmpnhh4xu7kimj7cou - '@storybook/addon-essentials': 7.4.2_ktlmga7inmpnhh4xu7kimj7cou - '@storybook/addon-links': 7.4.2_sfoxds7t5ydpegc3knd667wn6m - '@storybook/addon-mdx-gfm': 7.4.2 - '@storybook/node-logger': 7.4.2 - '@storybook/preset-create-react-app': 7.4.2_zhmpv5huvbgsw2w4vx6ckqlpj4 - '@storybook/react': 7.4.2_jgxnvbe4faw3ohf4h6p42qq6oy - '@storybook/react-webpack5': 7.4.2_52n76ehbrwnhxlqwakgjhf2icq - '@testing-library/jest-dom': 4.2.4 - '@types/testing-library__jest-dom': 5.14.5 - cypress: 13.3.1 - cypress-localstorage-commands: 2.2.4_cypress@13.3.1 - cypress-network-idle: 1.14.2 - cypress-wait-until: 2.0.1 - eslint-plugin-cypress: 2.15.1_eslint@8.48.0 - eslint-plugin-storybook: 0.6.13_cgvy6hrg3pjeapqw5wnuqcmdo4 - http-server: 0.13.0 - less-loader: 4.1.0_less@4.1.3+webpack@5.78.0 - nodemon: 3.0.1 - react-app-rewired: 2.2.1_react-scripts@5.0.1 - react-error-overlay: 6.0.11 - react-joyride: 2.5.3_sfoxds7t5ydpegc3knd667wn6m - storybook: 7.4.2 - webpack: 5.78.0_u5c4qderjagc6tepfyiby6xhau - webpack-bundle-analyzer: 4.9.0 + '@babel/polyfill': + specifier: ^7.12.1 + version: 7.12.1 + '@babel/preset-env': + specifier: ^7.13.15 + version: 7.21.4(@babel/core@7.22.11) + '@babel/preset-react': + specifier: ^7.13.13 + version: 7.18.6(@babel/core@7.22.11) + '@babel/preset-typescript': + specifier: ^7.13.0 + version: 7.21.4(@babel/core@7.22.11) + '@babel/runtime': + specifier: ^7.20.13 + version: 7.21.0 + '@novu/dal': + specifier: ^0.20.0-alpha.1 + version: link:../../libs/dal + '@novu/testing': + specifier: ^0.20.0-alpha.1 + version: link:../../libs/testing + '@storybook/addon-actions': + specifier: ^7.4.2 + version: 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) + '@storybook/addon-essentials': + specifier: ^7.4.2 + version: 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) + '@storybook/addon-links': + specifier: ^7.4.2 + version: 7.4.2(react-dom@17.0.2)(react@17.0.2) + '@storybook/addon-mdx-gfm': + specifier: ^7.4.2 + version: 7.4.2 + '@storybook/node-logger': + specifier: ^7.4.2 + version: 7.4.2 + '@storybook/preset-create-react-app': + specifier: ^7.4.2 + version: 7.4.2(@babel/core@7.22.11)(react-refresh@0.14.0)(react-scripts@5.0.1)(typescript@4.9.5)(webpack-dev-server@4.11.1)(webpack@5.78.0) + '@storybook/react': + specifier: ^7.4.2 + version: 7.4.2(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5) + '@storybook/react-webpack5': + specifier: ^7.4.2 + version: 7.4.2(@babel/core@7.22.11)(@swc/core@1.3.49)(@types/react-dom@17.0.19)(@types/react@17.0.53)(esbuild@0.18.20)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack-dev-server@4.11.1) + '@testing-library/jest-dom': + specifier: ^4.2.4 + version: 4.2.4 + '@types/testing-library__jest-dom': + specifier: ^5.14.5 + version: 5.14.5 + cypress: + specifier: ^13.3.1 + version: 13.3.1 + cypress-localstorage-commands: + specifier: ^2.2.4 + version: 2.2.4(cypress@13.3.1) + cypress-network-idle: + specifier: ^1.14.2 + version: 1.14.2 + cypress-wait-until: + specifier: ^2.0.1 + version: 2.0.1 + eslint-plugin-cypress: + specifier: ^2.15.1 + version: 2.15.1(eslint@8.48.0) + eslint-plugin-storybook: + specifier: ^0.6.13 + version: 0.6.13(eslint@8.48.0)(typescript@4.9.5) + http-server: + specifier: ^0.13.0 + version: 0.13.0 + less-loader: + specifier: 4.1.0 + version: 4.1.0(less@4.1.3)(webpack@5.78.0) + nodemon: + specifier: ^3.0.1 + version: 3.0.1 + react-app-rewired: + specifier: ^2.2.1 + version: 2.2.1(react-scripts@5.0.1) + react-error-overlay: + specifier: 6.0.11 + version: 6.0.11 + react-joyride: + specifier: ^2.5.3 + version: 2.5.3(react-dom@17.0.2)(react@17.0.2) + storybook: + specifier: ^7.4.2 + version: 7.4.2 + webpack: + specifier: ^5.74.0 + version: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) + webpack-bundle-analyzer: + specifier: ^4.9.0 + version: 4.9.0 apps/webhook: - specifiers: - '@nestjs/axios': ~2.0.0 - '@nestjs/cli': ^10.1.16 - '@nestjs/common': ^10.2.2 - '@nestjs/core': ^10.2.2 - '@nestjs/platform-express': ^10.2.2 - '@nestjs/schematics': ^10.0.2 - '@nestjs/terminus': ^10.0.1 - '@nestjs/testing': ^10.2.2 - '@novu/application-generic': ^0.20.0-alpha.1 - '@novu/dal': ^0.20.0-alpha.1 - '@novu/shared': ^0.20.0-alpha.1 - '@novu/stateless': ^0.20.0-alpha.1 - '@novu/testing': ^0.20.0-alpha.1 - '@sentry/node': ^7.66.0 - '@types/chai': ^4.3.4 - '@types/express': ^4.17.8 - '@types/jest': ^29.5.0 - '@types/mocha': ^8.0.1 - '@types/node': ^14.14.6 - '@types/sinon': ^9.0.0 - '@types/supertest': ^2.0.10 - axios: ^1.3.3 - chai: ^4.2.0 - class-transformer: ^0.5.1 - class-validator: ^0.14.0 - cross-env: ^7.0.3 - dotenv: ^8.2.0 - envalid: ^7.1.0 - jest: ^27.0.6 - jsonwebtoken: 9.0.0 - lodash: ^4.17.15 - mocha: ^8.1.1 - nest-raven: ^10.0.0 - newrelic: ^9.15.0 - nodemon: ^3.0.1 - prettier: ~2.8.0 - reflect-metadata: ^0.1.13 - rimraf: ^3.0.2 - rxjs: 7.8.1 - sinon: ^9.2.4 - supertest: ^6.0.0 - ts-jest: ^27.0.7 - ts-loader: ~9.4.0 - ts-node: ~10.9.1 - tsconfig-paths: ~4.1.0 - typescript: 4.9.5 dependencies: - '@nestjs/axios': 2.0.0_qwvj576sbz4hzeal5kp76dqnsi - '@nestjs/common': 10.2.2_j3td4gnlgk75ora6o6suo62byy - '@nestjs/core': 10.2.2_v4fpnjri37dvafci5vzkvgo4ne - '@nestjs/platform-express': 10.2.2_h33h3l6i5mruhsbo3bha6vy2fi - '@nestjs/terminus': 10.0.1_tzkr6j3uymzf5crrhzjmiwh6tq - '@novu/application-generic': link:../../packages/application-generic - '@novu/dal': link:../../libs/dal - '@novu/shared': link:../../libs/shared - '@novu/stateless': link:../../packages/stateless - '@novu/testing': link:../../libs/testing - '@sentry/node': 7.66.0 - axios: 1.3.5 - class-transformer: 0.5.1 - class-validator: 0.14.0 - dotenv: 8.6.0 - envalid: 7.3.1 - jsonwebtoken: 9.0.0 - lodash: 4.17.21 - nest-raven: 10.0.0_yqdl5gxg4kqzuhpdj6c6ocukde - newrelic: 9.15.0 - reflect-metadata: 0.1.13 - rimraf: 3.0.2 - rxjs: 7.8.1 + '@nestjs/axios': + specifier: ~2.0.0 + version: 2.0.0(@nestjs/common@10.2.2)(axios@1.3.5)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/common': + specifier: ^10.2.2 + version: 10.2.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/core': + specifier: ^10.2.2 + version: 10.2.2(@nestjs/common@10.2.2)(@nestjs/platform-express@10.2.2)(@nestjs/websockets@10.2.2)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/platform-express': + specifier: ^10.2.2 + version: 10.2.2(@nestjs/common@10.2.2)(@nestjs/core@10.2.2) + '@nestjs/terminus': + specifier: ^10.0.1 + version: 10.0.1(@nestjs/axios@2.0.0)(@nestjs/common@10.2.2)(@nestjs/core@10.2.2)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@novu/application-generic': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/application-generic + '@novu/dal': + specifier: ^0.20.0-alpha.1 + version: link:../../libs/dal + '@novu/shared': + specifier: ^0.20.0-alpha.1 + version: link:../../libs/shared + '@novu/stateless': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/stateless + '@novu/testing': + specifier: ^0.20.0-alpha.1 + version: link:../../libs/testing + '@sentry/node': + specifier: ^7.66.0 + version: 7.66.0 + axios: + specifier: ^1.3.3 + version: 1.3.5 + class-transformer: + specifier: ^0.5.1 + version: 0.5.1 + class-validator: + specifier: ^0.14.0 + version: 0.14.0 + dotenv: + specifier: ^8.2.0 + version: 8.6.0 + envalid: + specifier: ^7.1.0 + version: 7.3.1 + jsonwebtoken: + specifier: 9.0.0 + version: 9.0.0 + lodash: + specifier: ^4.17.15 + version: 4.17.21 + nest-raven: + specifier: ^10.0.0 + version: 10.0.0(@nestjs/common@10.2.2)(@nestjs/core@10.2.2)(@sentry/node@7.66.0)(class-transformer@0.5.1)(class-validator@0.14.0)(graphql@16.8.0)(reflect-metadata@0.1.13)(rxjs@7.8.1) + newrelic: + specifier: ^9.15.0 + version: 9.15.0 + reflect-metadata: + specifier: ^0.1.13 + version: 0.1.13 + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + rxjs: + specifier: 7.8.1 + version: 7.8.1 devDependencies: - '@nestjs/cli': 10.1.16 - '@nestjs/schematics': 10.0.2_typescript@4.9.5 - '@nestjs/testing': 10.2.2_atmp46a5rgegz5v7qiffjhuro4 - '@types/chai': 4.3.4 - '@types/express': 4.17.17 - '@types/jest': 29.5.1 - '@types/mocha': 8.2.3 - '@types/node': 14.18.42 - '@types/sinon': 9.0.11 - '@types/supertest': 2.0.12 - chai: 4.3.7 - cross-env: 7.0.3 - jest: 27.5.1_ts-node@10.9.1 - mocha: 8.4.0 - nodemon: 3.0.1 - prettier: 2.8.7 - sinon: 9.2.4 - supertest: 6.3.3 - ts-jest: 27.1.5_46h2nya7z2u3ruciguirufjle4 - ts-loader: 9.4.2_fejcc7gjbwtmwzggoernzojija - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - tsconfig-paths: 4.1.2 - typescript: 4.9.5 + '@nestjs/cli': + specifier: ^10.1.16 + version: 10.1.16(@swc/core@1.3.49) + '@nestjs/schematics': + specifier: ^10.0.2 + version: 10.0.2(typescript@4.9.5) + '@nestjs/testing': + specifier: ^10.2.2 + version: 10.2.2(@nestjs/common@10.2.2)(@nestjs/core@10.2.2)(@nestjs/platform-express@10.2.2) + '@types/chai': + specifier: ^4.3.4 + version: 4.3.4 + '@types/express': + specifier: ^4.17.8 + version: 4.17.17 + '@types/jest': + specifier: ^29.5.0 + version: 29.5.1 + '@types/mocha': + specifier: ^8.0.1 + version: 8.2.3 + '@types/node': + specifier: ^14.14.6 + version: 14.18.42 + '@types/sinon': + specifier: ^9.0.0 + version: 9.0.11 + '@types/supertest': + specifier: ^2.0.10 + version: 2.0.12 + chai: + specifier: ^4.2.0 + version: 4.3.7 + cross-env: + specifier: ^7.0.3 + version: 7.0.3 + jest: + specifier: ^27.0.6 + version: 27.5.1(ts-node@10.9.1) + mocha: + specifier: ^8.1.1 + version: 8.4.0 + nodemon: + specifier: ^3.0.1 + version: 3.0.1 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + sinon: + specifier: ^9.2.4 + version: 9.2.4 + supertest: + specifier: ^6.0.0 + version: 6.3.3 + ts-jest: + specifier: ^27.0.7 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + ts-loader: + specifier: ~9.4.0 + version: 9.4.2(typescript@4.9.5)(webpack@5.78.0) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + tsconfig-paths: + specifier: ~4.1.0 + version: 4.1.2 + typescript: + specifier: 4.9.5 + version: 4.9.5 apps/widget: - specifiers: - '@ant-design/icons': ^4.5.0 - '@babel/plugin-proposal-optional-chaining': ^7.20.7 - '@babel/plugin-transform-react-display-name': ^7.18.6 - '@babel/plugin-transform-runtime': ^7.19.6 - '@babel/polyfill': ^7.12.1 - '@babel/preset-env': ^7.13.15 - '@babel/preset-react': ^7.13.13 - '@babel/preset-typescript': ^7.13.0 - '@babel/runtime': ^7.20.13 - '@emotion/babel-plugin': ^11.7.2 - '@emotion/react': ^11.7.1 - '@emotion/styled': ^11.6.0 - '@faker-js/faker': ^6.0.0 - '@mantine/core': 4.2.12 - '@mantine/hooks': 4.2.12 - '@novu/dal': ^0.20.0-alpha.1 - '@novu/notification-center': ^0.20.0-alpha.1 - '@novu/shared': ^0.20.0-alpha.1 - '@novu/testing': ^0.20.0-alpha.1 - '@types/jest': ^29.5.0 - '@types/node': ^12.0.0 - '@types/react': 17.0.62 - '@types/react-dom': 17.0.20 - '@types/react-router-dom': ^5.1.7 - antd: ^4.10.0 - babel-plugin-import: ^1.13.3 - chroma-js: ^2.4.2 - cross-env: ^7.0.3 - customize-cra: ^1.0.0 - cypress: ^13.3.1 - cypress-intellij-reporter: ^0.0.7 - cypress-network-idle: ^1.14.2 - eslint-plugin-cypress: ^2.15.1 - html-webpack-plugin: 5.5.3 - http-server: ^0.13.0 - iframe-resizer: ^4.3.1 - jest: 27.5.1 - jwt-decode: ^3.1.2 - less: ^4.1.0 - less-loader: 4.1.0 - polished: ^4.1.2 - react: 17.0.2 - react-app-rewired: ^2.2.1 - react-dom: 17.0.2 - react-infinite-scroll-component: ^6.0.0 - react-infinite-scroller: ^1.2.4 - react-is: ^18.2.0 - react-refresh: ^0.14.0 - react-router-dom: ^6.2.2 - react-scripts: ^5.0.1 - rimraf: ^3.0.2 - socket.io-client: 4.7.2 - typescript: 4.9.5 - web-vitals: ^0.2.4 - webfontloader: ^1.6.28 - webpack: 5.78.0 - webpack-dev-server: 4.11.1 - dependencies: - '@ant-design/icons': 4.8.0_sfoxds7t5ydpegc3knd667wn6m - '@emotion/react': 11.10.6_s55kszw6pq5iqmorlydcdh42pa - '@emotion/styled': 11.10.6_a5tg3mw6arxvrpxmynh3dc7e3q - '@mantine/core': 4.2.12_tv5js7grk5cznt6qhc6q2krogq - '@mantine/hooks': 4.2.12_react@17.0.2 - '@novu/notification-center': link:../../packages/notification-center - '@novu/shared': link:../../libs/shared - antd: 4.24.8_sfoxds7t5ydpegc3knd667wn6m - babel-plugin-import: 1.13.6 - chroma-js: 2.4.2 - eslint-plugin-cypress: 2.15.1_eslint@8.48.0 - iframe-resizer: 4.3.6 - jwt-decode: 3.1.2 - polished: 4.2.2 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-infinite-scroll-component: 6.1.0_react@17.0.2 - react-infinite-scroller: 1.2.6_react@17.0.2 - react-is: 18.2.0 - react-refresh: 0.14.0 - react-router-dom: 6.10.0_sfoxds7t5ydpegc3knd667wn6m - react-scripts: 5.0.1_2xn6hao67zmtzyfac7qsgeyxpu - rimraf: 3.0.2 - socket.io-client: 4.7.2 - web-vitals: 0.2.4 - webfontloader: 1.6.28 + dependencies: + '@ant-design/icons': + specifier: ^4.5.0 + version: 4.8.0(react-dom@17.0.2)(react@17.0.2) + '@emotion/react': + specifier: ^11.7.1 + version: 11.10.6(@types/react@17.0.62)(react@17.0.2) + '@emotion/styled': + specifier: ^11.6.0 + version: 11.10.6(@emotion/react@11.10.6)(@types/react@17.0.62)(react@17.0.2) + '@mantine/core': + specifier: 4.2.12 + version: 4.2.12(@babel/core@7.22.11)(@mantine/hooks@4.2.12)(@types/react@17.0.62)(react-dom@17.0.2)(react@17.0.2) + '@mantine/hooks': + specifier: 4.2.12 + version: 4.2.12(react@17.0.2) + '@novu/notification-center': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/notification-center + '@novu/shared': + specifier: ^0.20.0-alpha.1 + version: link:../../libs/shared + antd: + specifier: ^4.10.0 + version: 4.24.8(react-dom@17.0.2)(react@17.0.2) + babel-plugin-import: + specifier: ^1.13.3 + version: 1.13.6 + chroma-js: + specifier: ^2.4.2 + version: 2.4.2 + eslint-plugin-cypress: + specifier: ^2.15.1 + version: 2.15.1(eslint@8.48.0) + iframe-resizer: + specifier: ^4.3.1 + version: 4.3.6 + jwt-decode: + specifier: ^3.1.2 + version: 3.1.2 + polished: + specifier: ^4.1.2 + version: 4.2.2 + react: + specifier: 17.0.2 + version: 17.0.2 + react-dom: + specifier: 17.0.2 + version: 17.0.2(react@17.0.2) + react-infinite-scroll-component: + specifier: ^6.0.0 + version: 6.1.0(react@17.0.2) + react-infinite-scroller: + specifier: ^1.2.4 + version: 1.2.6(react@17.0.2) + react-is: + specifier: ^18.2.0 + version: 18.2.0 + react-refresh: + specifier: ^0.14.0 + version: 0.14.0 + react-router-dom: + specifier: ^6.2.2 + version: 6.10.0(react-dom@17.0.2)(react@17.0.2) + react-scripts: + specifier: ^5.0.1 + version: 5.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(@swc/core@1.3.49)(eslint-import-resolver-webpack@0.13.7)(eslint@8.48.0)(react@17.0.2)(ts-node@10.9.1)(typescript@4.9.5) + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + socket.io-client: + specifier: 4.7.2 + version: 4.7.2 + web-vitals: + specifier: ^0.2.4 + version: 0.2.4 + webfontloader: + specifier: ^1.6.28 + version: 1.6.28 devDependencies: - '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.22.11 - '@babel/plugin-transform-react-display-name': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-runtime': 7.21.4_@babel+core@7.22.11 - '@babel/polyfill': 7.12.1 - '@babel/preset-env': 7.22.20_@babel+core@7.22.11 - '@babel/preset-react': 7.22.15_@babel+core@7.22.11 - '@babel/preset-typescript': 7.21.4_@babel+core@7.22.11 - '@babel/runtime': 7.21.0 - '@emotion/babel-plugin': 11.10.6 - '@faker-js/faker': 6.3.1 - '@novu/dal': link:../../libs/dal - '@novu/testing': link:../../libs/testing - '@types/jest': 29.5.1 - '@types/node': 12.20.55 - '@types/react': 17.0.62 - '@types/react-dom': 17.0.20 - '@types/react-router-dom': 5.3.3 - cross-env: 7.0.3 - customize-cra: 1.0.0 - cypress: 13.3.1 - cypress-intellij-reporter: 0.0.7 - cypress-network-idle: 1.14.2 - html-webpack-plugin: 5.5.3_webpack@5.78.0 - http-server: 0.13.0 - jest: 27.5.1 - less: 4.1.3 - less-loader: 4.1.0_less@4.1.3+webpack@5.78.0 - react-app-rewired: 2.2.1_react-scripts@5.0.1 - typescript: 4.9.5 - webpack: 5.78.0 - webpack-dev-server: 4.11.1_webpack@5.78.0 + '@babel/plugin-proposal-optional-chaining': + specifier: ^7.20.7 + version: 7.21.0(@babel/core@7.22.11) + '@babel/plugin-transform-react-display-name': + specifier: ^7.18.6 + version: 7.22.5(@babel/core@7.22.11) + '@babel/plugin-transform-runtime': + specifier: ^7.19.6 + version: 7.21.4(@babel/core@7.22.11) + '@babel/polyfill': + specifier: ^7.12.1 + version: 7.12.1 + '@babel/preset-env': + specifier: ^7.13.15 + version: 7.22.20(@babel/core@7.22.11) + '@babel/preset-react': + specifier: ^7.13.13 + version: 7.22.15(@babel/core@7.22.11) + '@babel/preset-typescript': + specifier: ^7.13.0 + version: 7.21.4(@babel/core@7.22.11) + '@babel/runtime': + specifier: ^7.20.13 + version: 7.21.0 + '@emotion/babel-plugin': + specifier: ^11.7.2 + version: 11.10.6 + '@faker-js/faker': + specifier: ^6.0.0 + version: 6.3.1 + '@novu/dal': + specifier: ^0.20.0-alpha.1 + version: link:../../libs/dal + '@novu/testing': + specifier: ^0.20.0-alpha.1 + version: link:../../libs/testing + '@types/jest': + specifier: ^29.5.0 + version: 29.5.1 + '@types/node': + specifier: ^12.0.0 + version: 12.20.55 + '@types/react': + specifier: 17.0.62 + version: 17.0.62 + '@types/react-dom': + specifier: 17.0.20 + version: 17.0.20 + '@types/react-router-dom': + specifier: ^5.1.7 + version: 5.3.3 + cross-env: + specifier: ^7.0.3 + version: 7.0.3 + customize-cra: + specifier: ^1.0.0 + version: 1.0.0 + cypress: + specifier: ^13.3.1 + version: 13.3.1 + cypress-intellij-reporter: + specifier: ^0.0.7 + version: 0.0.7 + cypress-network-idle: + specifier: ^1.14.2 + version: 1.14.2 + html-webpack-plugin: + specifier: 5.5.3 + version: 5.5.3(webpack@5.78.0) + http-server: + specifier: ^0.13.0 + version: 0.13.0 + jest: + specifier: 27.5.1 + version: 27.5.1(ts-node@10.9.1) + less: + specifier: ^4.1.0 + version: 4.1.3 + less-loader: + specifier: 4.1.0 + version: 4.1.0(less@4.1.3)(webpack@5.78.0) + react-app-rewired: + specifier: ^2.2.1 + version: 2.2.1(react-scripts@5.0.1) + typescript: + specifier: 4.9.5 + version: 4.9.5 + webpack: + specifier: 5.78.0 + version: 5.78.0(@swc/core@1.3.49) + webpack-dev-server: + specifier: 4.11.1 + version: 4.11.1(webpack@5.78.0) apps/worker: - specifiers: - '@faker-js/faker': ^6.0.0 - '@nestjs/axios': ~2.0.0 - '@nestjs/cli': ^10.1.16 - '@nestjs/common': ^10.2.2 - '@nestjs/core': ^10.2.2 - '@nestjs/platform-express': ^10.2.2 - '@nestjs/schematics': ^10.0.2 - '@nestjs/swagger': ^7.1.9 - '@nestjs/terminus': ^10.0.1 - '@nestjs/testing': ^10.2.2 - '@novu/application-generic': ^0.20.0-alpha.1 - '@novu/dal': ^0.20.0-alpha.1 - '@novu/shared': ^0.20.0-alpha.1 - '@novu/stateless': ^0.20.0-alpha.1 - '@novu/testing': ^0.20.0-alpha.1 - '@sentry/node': ^7.40.0 - '@sentry/tracing': ^7.40.0 - '@types/bcrypt': ^3.0.0 - '@types/chai': ^4.2.11 - '@types/express': 4.17.17 - '@types/mocha': ^8.0.1 - '@types/newrelic': ^9.13.0 - '@types/node': ^14.6.0 - '@types/sinon': ^9.0.0 - '@types/supertest': ^2.0.8 - axios: ^1.3.3 - body-parser: ^1.20.0 - chai: ^4.2.0 - class-transformer: ^0.5.1 - class-validator: ^0.14.0 - cross-env: ^7.0.3 - date-fns: ^2.29.2 - dotenv: ^8.2.0 - envalid: ^6.0.1 - helmet: ^6.0.1 - inline-css: ^4.0.2 - ioredis: ^5.2.4 - lodash: ^4.17.15 - mocha: ^8.1.1 - nest-raven: ^10.0.0 - newrelic: ^9.15.0 - nodemon: ^3.0.1 - reflect-metadata: ^0.1.13 - rimraf: ^3.0.2 - rxjs: 7.8.1 - shortid: ^2.2.16 - simple-statistics: ^7.8.3 - sinon: ^9.2.4 - superagent-defaults: ^0.1.14 - supertest: ^5.0.0 - ts-loader: ~9.4.0 - ts-node: ~10.9.1 - tsconfig-paths: ~4.1.0 - typescript: 4.9.5 - uuid: ^8.3.2 - dependencies: - '@nestjs/axios': 2.0.0_qwvj576sbz4hzeal5kp76dqnsi - '@nestjs/common': 10.2.2_j3td4gnlgk75ora6o6suo62byy - '@nestjs/core': 10.2.2_v4fpnjri37dvafci5vzkvgo4ne - '@nestjs/platform-express': 10.2.2_h33h3l6i5mruhsbo3bha6vy2fi - '@nestjs/swagger': 7.1.9_yggpgkps2ewgemp53dklozvzx4 - '@nestjs/terminus': 10.0.1_tzkr6j3uymzf5crrhzjmiwh6tq - '@novu/application-generic': link:../../packages/application-generic - '@novu/dal': link:../../libs/dal - '@novu/shared': link:../../libs/shared - '@novu/stateless': link:../../packages/stateless - '@novu/testing': link:../../libs/testing - '@sentry/node': 7.47.0 - '@sentry/tracing': 7.47.0 - '@types/newrelic': 9.13.0 - axios: 1.3.5 - body-parser: 1.20.2 - class-transformer: 0.5.1 - class-validator: 0.14.0 - cross-env: 7.0.3 - date-fns: 2.29.3 - dotenv: 8.6.0 - envalid: 6.0.2 - helmet: 6.1.4 - inline-css: 4.0.2 - ioredis: 5.3.1 - lodash: 4.17.21 - nest-raven: 10.0.0_5jm5ambngrgwc4qwlo7r47envy - newrelic: 9.15.0 - reflect-metadata: 0.1.13 - rimraf: 3.0.2 - rxjs: 7.8.1 - shortid: 2.2.16 - simple-statistics: 7.8.3 - uuid: 8.3.2 + dependencies: + '@nestjs/axios': + specifier: ~2.0.0 + version: 2.0.0(@nestjs/common@10.2.2)(axios@1.3.5)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/common': + specifier: ^10.2.2 + version: 10.2.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/core': + specifier: ^10.2.2 + version: 10.2.2(@nestjs/common@10.2.2)(@nestjs/platform-express@10.2.2)(@nestjs/websockets@10.2.2)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/platform-express': + specifier: ^10.2.2 + version: 10.2.2(@nestjs/common@10.2.2)(@nestjs/core@10.2.2) + '@nestjs/swagger': + specifier: ^7.1.9 + version: 7.1.9(@nestjs/common@10.2.2)(@nestjs/core@10.2.2)(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.1.13) + '@nestjs/terminus': + specifier: ^10.0.1 + version: 10.0.1(@nestjs/axios@2.0.0)(@nestjs/common@10.2.2)(@nestjs/core@10.2.2)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@novu/application-generic': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/application-generic + '@novu/dal': + specifier: ^0.20.0-alpha.1 + version: link:../../libs/dal + '@novu/shared': + specifier: ^0.20.0-alpha.1 + version: link:../../libs/shared + '@novu/stateless': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/stateless + '@novu/testing': + specifier: ^0.20.0-alpha.1 + version: link:../../libs/testing + '@sentry/node': + specifier: ^7.40.0 + version: 7.47.0 + '@sentry/tracing': + specifier: ^7.40.0 + version: 7.47.0 + '@types/newrelic': + specifier: ^9.13.0 + version: 9.13.0 + axios: + specifier: ^1.3.3 + version: 1.3.5 + body-parser: + specifier: ^1.20.0 + version: 1.20.2 + class-transformer: + specifier: ^0.5.1 + version: 0.5.1 + class-validator: + specifier: ^0.14.0 + version: 0.14.0 + cross-env: + specifier: ^7.0.3 + version: 7.0.3 + date-fns: + specifier: ^2.29.2 + version: 2.29.3 + dotenv: + specifier: ^8.2.0 + version: 8.6.0 + envalid: + specifier: ^6.0.1 + version: 6.0.2 + helmet: + specifier: ^6.0.1 + version: 6.1.4 + inline-css: + specifier: ^4.0.2 + version: 4.0.2 + ioredis: + specifier: ^5.2.4 + version: 5.3.1 + lodash: + specifier: ^4.17.15 + version: 4.17.21 + nest-raven: + specifier: ^10.0.0 + version: 10.0.0(@nestjs/common@10.2.2)(@nestjs/core@10.2.2)(@sentry/node@7.47.0)(class-transformer@0.5.1)(class-validator@0.14.0)(graphql@16.8.0)(reflect-metadata@0.1.13)(rxjs@7.8.1) + newrelic: + specifier: ^9.15.0 + version: 9.15.0 + reflect-metadata: + specifier: ^0.1.13 + version: 0.1.13 + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + rxjs: + specifier: 7.8.1 + version: 7.8.1 + shortid: + specifier: ^2.2.16 + version: 2.2.16 + simple-statistics: + specifier: ^7.8.3 + version: 7.8.3 + uuid: + specifier: ^8.3.2 + version: 8.3.2 devDependencies: - '@faker-js/faker': 6.3.1 - '@nestjs/cli': 10.1.16 - '@nestjs/schematics': 10.0.2_typescript@4.9.5 - '@nestjs/testing': 10.2.2_atmp46a5rgegz5v7qiffjhuro4 - '@types/bcrypt': 3.0.1 - '@types/chai': 4.3.4 - '@types/express': 4.17.17 - '@types/mocha': 8.2.3 - '@types/node': 14.18.42 - '@types/sinon': 9.0.11 - '@types/supertest': 2.0.12 - chai: 4.3.7 - mocha: 8.4.0 - nodemon: 3.0.1 - sinon: 9.2.4 - superagent-defaults: 0.1.14_superagent@8.0.9 - supertest: 5.0.0 - ts-loader: 9.4.2_fejcc7gjbwtmwzggoernzojija - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - tsconfig-paths: 4.1.2 - typescript: 4.9.5 + '@faker-js/faker': + specifier: ^6.0.0 + version: 6.3.1 + '@nestjs/cli': + specifier: ^10.1.16 + version: 10.1.16(@swc/core@1.3.49) + '@nestjs/schematics': + specifier: ^10.0.2 + version: 10.0.2(typescript@4.9.5) + '@nestjs/testing': + specifier: ^10.2.2 + version: 10.2.2(@nestjs/common@10.2.2)(@nestjs/core@10.2.2)(@nestjs/platform-express@10.2.2) + '@types/bcrypt': + specifier: ^3.0.0 + version: 3.0.1 + '@types/chai': + specifier: ^4.2.11 + version: 4.3.4 + '@types/express': + specifier: 4.17.17 + version: 4.17.17 + '@types/mocha': + specifier: ^8.0.1 + version: 8.2.3 + '@types/node': + specifier: ^14.6.0 + version: 14.18.42 + '@types/sinon': + specifier: ^9.0.0 + version: 9.0.11 + '@types/supertest': + specifier: ^2.0.8 + version: 2.0.12 + chai: + specifier: ^4.2.0 + version: 4.3.7 + mocha: + specifier: ^8.1.1 + version: 8.4.0 + nodemon: + specifier: ^3.0.1 + version: 3.0.1 + sinon: + specifier: ^9.2.4 + version: 9.2.4 + superagent-defaults: + specifier: ^0.1.14 + version: 0.1.14(superagent@8.0.9) + supertest: + specifier: ^5.0.0 + version: 5.0.0 + ts-loader: + specifier: ~9.4.0 + version: 9.4.2(typescript@4.9.5)(webpack@5.78.0) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + tsconfig-paths: + specifier: ~4.1.0 + version: 4.1.2 + typescript: + specifier: 4.9.5 + version: 4.9.5 apps/ws: - specifiers: - '@godaddy/terminus': ^4.3.1 - '@nestjs/cli': ^10.1.16 - '@nestjs/common': ^10.2.2 - '@nestjs/core': ^10.2.2 - '@nestjs/jwt': ^10.1.0 - '@nestjs/platform-express': ^10.2.2 - '@nestjs/platform-socket.io': ^10.2.2 - '@nestjs/schematics': ^10.0.2 - '@nestjs/swagger': ^7.1.9 - '@nestjs/terminus': ^10.0.1 - '@nestjs/testing': ^10.2.2 - '@nestjs/websockets': ^10.2.2 - '@novu/application-generic': ^0.20.0-alpha.1 - '@novu/dal': ^0.20.0-alpha.1 - '@novu/shared': ^0.20.0-alpha.1 - '@novu/testing': ^0.20.0-alpha.1 - '@sentry/node': ^7.30.0 - '@socket.io/redis-adapter': ^7.2.0 - '@types/chai': ^4.2.11 - '@types/express': ^4.17.8 - '@types/jsonwebtoken': ^8.5.9 - '@types/mocha': ^8.2.3 - '@types/node': ^14.14.6 - '@types/socket.io': ^3.0.2 - '@types/supertest': ^2.0.10 - chai: ^4.2.0 - class-transformer: ^0.5.1 - class-validator: ^0.14.0 - cross-env: ^7.0.3 - dotenv: ^8.2.0 - envalid: ^7.1.0 - helmet: ^6.0.1 - ioredis: 5.3.2 - jsonwebtoken: 9.0.0 - lodash: ^4.17.15 - mocha: ^8.4.0 - nest-raven: ^10.0.0 - newrelic: ^9.15.0 - nodemon: ^3.0.1 - prettier: ~2.8.0 - reflect-metadata: ^0.1.13 - rimraf: ^3.0.2 - rxjs: 7.8.1 - sinon: ^9.2.4 - socket.io: ^4.7.2 - supertest: ^6.0.0 - ts-loader: ~9.4.0 - ts-node: ~10.9.1 - tsconfig-paths: ~4.1.0 - typescript: 4.9.5 dependencies: - '@godaddy/terminus': 4.11.2 - '@nestjs/common': 10.2.2_j3td4gnlgk75ora6o6suo62byy - '@nestjs/core': 10.2.2_citrzyslfkhhdbz2asyi4zrkay - '@nestjs/jwt': 10.1.0_@nestjs+common@10.2.2 - '@nestjs/platform-express': 10.2.2_h33h3l6i5mruhsbo3bha6vy2fi - '@nestjs/platform-socket.io': 10.2.2_plsgbdyiufqh7g45z4q7fp3f24 - '@nestjs/swagger': 7.1.9_yggpgkps2ewgemp53dklozvzx4 - '@nestjs/terminus': 10.0.1_fav3sr7ld5p2uwyjvw6t25yci4 - '@nestjs/websockets': 10.2.2_k2whfst7erenivdtupi63u2ejy - '@novu/application-generic': link:../../packages/application-generic - '@novu/dal': link:../../libs/dal - '@novu/shared': link:../../libs/shared - '@novu/testing': link:../../libs/testing - '@sentry/node': 7.47.0 - '@socket.io/redis-adapter': 7.2.0 - class-transformer: 0.5.1 - class-validator: 0.14.0 - dotenv: 8.6.0 - envalid: 7.3.1 - helmet: 6.1.4 - ioredis: 5.3.2 - jsonwebtoken: 9.0.0 - lodash: 4.17.21 - nest-raven: 10.0.0_5jm5ambngrgwc4qwlo7r47envy - newrelic: 9.15.0 - reflect-metadata: 0.1.13 - rimraf: 3.0.2 - rxjs: 7.8.1 - sinon: 9.2.4 - socket.io: 4.7.2 + '@godaddy/terminus': + specifier: ^4.3.1 + version: 4.11.2 + '@nestjs/common': + specifier: ^10.2.2 + version: 10.2.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/core': + specifier: ^10.2.2 + version: 10.2.2(@nestjs/common@10.2.2)(@nestjs/platform-express@10.2.2)(@nestjs/websockets@10.2.2)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/jwt': + specifier: ^10.1.0 + version: 10.1.0(@nestjs/common@10.2.2) + '@nestjs/platform-express': + specifier: ^10.2.2 + version: 10.2.2(@nestjs/common@10.2.2)(@nestjs/core@10.2.2) + '@nestjs/platform-socket.io': + specifier: ^10.2.2 + version: 10.2.2(@nestjs/common@10.2.2)(@nestjs/websockets@10.2.2)(rxjs@7.8.1) + '@nestjs/swagger': + specifier: ^7.1.9 + version: 7.1.9(@nestjs/common@10.2.2)(@nestjs/core@10.2.2)(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.1.13) + '@nestjs/terminus': + specifier: ^10.0.1 + version: 10.0.1(@nestjs/axios@2.0.0)(@nestjs/common@10.2.2)(@nestjs/core@10.2.2)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/websockets': + specifier: ^10.2.2 + version: 10.2.2(@nestjs/common@10.2.2)(@nestjs/core@10.2.2)(@nestjs/platform-socket.io@10.2.2)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@novu/application-generic': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/application-generic + '@novu/dal': + specifier: ^0.20.0-alpha.1 + version: link:../../libs/dal + '@novu/shared': + specifier: ^0.20.0-alpha.1 + version: link:../../libs/shared + '@novu/testing': + specifier: ^0.20.0-alpha.1 + version: link:../../libs/testing + '@sentry/node': + specifier: ^7.30.0 + version: 7.47.0 + '@socket.io/redis-adapter': + specifier: ^7.2.0 + version: 7.2.0 + class-transformer: + specifier: ^0.5.1 + version: 0.5.1 + class-validator: + specifier: ^0.14.0 + version: 0.14.0 + dotenv: + specifier: ^8.2.0 + version: 8.6.0 + envalid: + specifier: ^7.1.0 + version: 7.3.1 + helmet: + specifier: ^6.0.1 + version: 6.1.4 + ioredis: + specifier: 5.3.2 + version: 5.3.2 + jsonwebtoken: + specifier: 9.0.0 + version: 9.0.0 + lodash: + specifier: ^4.17.15 + version: 4.17.21 + nest-raven: + specifier: ^10.0.0 + version: 10.0.0(@nestjs/common@10.2.2)(@nestjs/core@10.2.2)(@sentry/node@7.47.0)(class-transformer@0.5.1)(class-validator@0.14.0)(graphql@16.8.0)(reflect-metadata@0.1.13)(rxjs@7.8.1) + newrelic: + specifier: ^9.15.0 + version: 9.15.0 + reflect-metadata: + specifier: ^0.1.13 + version: 0.1.13 + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + rxjs: + specifier: 7.8.1 + version: 7.8.1 + sinon: + specifier: ^9.2.4 + version: 9.2.4 + socket.io: + specifier: ^4.7.2 + version: 4.7.2 devDependencies: - '@nestjs/cli': 10.1.16 - '@nestjs/schematics': 10.0.2_typescript@4.9.5 - '@nestjs/testing': 10.2.2_atmp46a5rgegz5v7qiffjhuro4 - '@types/chai': 4.3.4 - '@types/express': 4.17.17 - '@types/jsonwebtoken': 8.5.9 - '@types/mocha': 8.2.3 - '@types/node': 14.18.42 - '@types/socket.io': 3.0.2 - '@types/supertest': 2.0.12 - chai: 4.3.7 - cross-env: 7.0.3 - mocha: 8.4.0 - nodemon: 3.0.1 - prettier: 2.8.7 - supertest: 6.3.3 - ts-loader: 9.4.2_fejcc7gjbwtmwzggoernzojija - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - tsconfig-paths: 4.1.2 - typescript: 4.9.5 + '@nestjs/cli': + specifier: ^10.1.16 + version: 10.1.16(@swc/core@1.3.49) + '@nestjs/schematics': + specifier: ^10.0.2 + version: 10.0.2(typescript@4.9.5) + '@nestjs/testing': + specifier: ^10.2.2 + version: 10.2.2(@nestjs/common@10.2.2)(@nestjs/core@10.2.2)(@nestjs/platform-express@10.2.2) + '@types/chai': + specifier: ^4.2.11 + version: 4.3.4 + '@types/express': + specifier: ^4.17.8 + version: 4.17.17 + '@types/jsonwebtoken': + specifier: ^8.5.9 + version: 8.5.9 + '@types/mocha': + specifier: ^8.2.3 + version: 8.2.3 + '@types/node': + specifier: ^14.14.6 + version: 14.18.42 + '@types/socket.io': + specifier: ^3.0.2 + version: 3.0.2 + '@types/supertest': + specifier: ^2.0.10 + version: 2.0.12 + chai: + specifier: ^4.2.0 + version: 4.3.7 + cross-env: + specifier: ^7.0.3 + version: 7.0.3 + mocha: + specifier: ^8.4.0 + version: 8.4.0 + nodemon: + specifier: ^3.0.1 + version: 3.0.1 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + supertest: + specifier: ^6.0.0 + version: 6.3.3 + ts-loader: + specifier: ~9.4.0 + version: 9.4.2(typescript@4.9.5)(webpack@5.78.0) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + tsconfig-paths: + specifier: ~4.1.0 + version: 4.1.2 + typescript: + specifier: 4.9.5 + version: 4.9.5 libs/dal: - specifiers: - '@aws-sdk/client-s3': ^3.382.0 - '@aws-sdk/s3-request-presigner': ^3.382.0 - '@faker-js/faker': ^6.0.0 - '@novu/shared': ^0.20.0-alpha.1 - '@sendgrid/mail': ^7.4.2 - '@types/async': ^3.2.1 - '@types/bluebird': ^3.5.30 - '@types/node': ^14.6.0 - '@typescript-eslint/parser': ^4.14.2 - JSONStream: ^1.3.5 - apollo-boost: 0.4.9 - archiver: ^5.0.0 - async: ^3.2.0 - aws-sdk: ^2.665.0 - bluebird: ^3.7.2 - class-transformer: ^0.5.1 - cross-fetch: ^3.0.4 - date-fns: ^2.29.2 - eslint-plugin-prettier: ^4.2.1 - event-stream: ^4.0.1 - fs-extra: ^9.0.0 - googleapis: ^60.0.1 - intercom-client: ^2.11.0 - jsonfile: ^6.0.1 - mongoose: ^7.5.0 - mongoose-delete: ^1.0.1 - ng-intercom: ^8.0.2 - nodemon: ^3.0.1 - reflect-metadata: ^0.1.13 - rimraf: ^3.0.2 - superagent-defaults: ^0.1.14 - supertest: ^5.0.0 - ts-node: ~10.9.1 - tsconfig-paths: ~4.1.0 - typescript: 4.9.5 - uuid: ^8.3.0 dependencies: - '@aws-sdk/client-s3': 3.388.0 - '@aws-sdk/s3-request-presigner': 3.388.0 - '@faker-js/faker': 6.3.1 - '@novu/shared': link:../shared - '@sendgrid/mail': 7.7.0 - JSONStream: 1.3.5 - archiver: 5.3.1 - async: 3.2.4 - aws-sdk: 2.1354.0 - bluebird: 3.7.2 - class-transformer: 0.5.1 - cross-fetch: 3.1.5 - date-fns: 2.29.3 - event-stream: 4.0.1 - fs-extra: 9.1.0 - googleapis: 60.0.1 - intercom-client: 2.11.2 - jsonfile: 6.1.0 - mongoose: 7.5.2 - mongoose-delete: 1.0.1_mongoose@7.5.2 - ng-intercom: 8.0.2 - reflect-metadata: 0.1.13 - rimraf: 3.0.2 - superagent-defaults: 0.1.14_superagent@8.0.9 - supertest: 5.0.0 - uuid: 8.3.2 + '@aws-sdk/client-s3': + specifier: ^3.382.0 + version: 3.388.0 + '@aws-sdk/s3-request-presigner': + specifier: ^3.382.0 + version: 3.388.0 + '@faker-js/faker': + specifier: ^6.0.0 + version: 6.3.1 + '@novu/shared': + specifier: ^0.20.0-alpha.1 + version: link:../shared + '@sendgrid/mail': + specifier: ^7.4.2 + version: 7.7.0 + JSONStream: + specifier: ^1.3.5 + version: 1.3.5 + archiver: + specifier: ^5.0.0 + version: 5.3.1 + async: + specifier: ^3.2.0 + version: 3.2.4 + aws-sdk: + specifier: ^2.665.0 + version: 2.1354.0 + bluebird: + specifier: ^3.7.2 + version: 3.7.2 + class-transformer: + specifier: ^0.5.1 + version: 0.5.1 + cross-fetch: + specifier: ^3.0.4 + version: 3.1.5 + date-fns: + specifier: ^2.29.2 + version: 2.29.3 + event-stream: + specifier: ^4.0.1 + version: 4.0.1 + fs-extra: + specifier: ^9.0.0 + version: 9.1.0 + googleapis: + specifier: ^60.0.1 + version: 60.0.1 + intercom-client: + specifier: ^2.11.0 + version: 2.11.2 + jsonfile: + specifier: ^6.0.1 + version: 6.1.0 + mongoose: + specifier: ^7.5.0 + version: 7.5.2 + mongoose-delete: + specifier: ^1.0.1 + version: 1.0.1(mongoose@7.5.2) + ng-intercom: + specifier: ^8.0.2 + version: 8.0.2 + reflect-metadata: + specifier: ^0.1.13 + version: 0.1.13 + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + superagent-defaults: + specifier: ^0.1.14 + version: 0.1.14(superagent@8.0.9) + supertest: + specifier: ^5.0.0 + version: 5.0.0 + uuid: + specifier: ^8.3.0 + version: 8.3.2 devDependencies: - '@types/async': 3.2.18 - '@types/bluebird': 3.5.38 - '@types/node': 14.18.42 - '@typescript-eslint/parser': 4.33.0_jofidmxrjzhj7l6vknpw5ecvfe - apollo-boost: 0.4.9_graphql@15.8.0 - eslint-plugin-prettier: 4.2.1_6l7kvkw7pbq7sx3iiqo67pyozi - nodemon: 3.0.1 - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - tsconfig-paths: 4.1.2 - typescript: 4.9.5 + '@types/async': + specifier: ^3.2.1 + version: 3.2.18 + '@types/bluebird': + specifier: ^3.5.30 + version: 3.5.38 + '@types/node': + specifier: ^14.6.0 + version: 14.18.42 + '@typescript-eslint/parser': + specifier: ^4.14.2 + version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) + apollo-boost: + specifier: 0.4.9 + version: 0.4.9(graphql@15.8.0) + eslint-plugin-prettier: + specifier: ^4.2.1 + version: 4.2.1(eslint-config-prettier@8.8.0)(eslint@7.32.0)(prettier@2.8.7) + nodemon: + specifier: ^3.0.1 + version: 3.0.1 + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + tsconfig-paths: + specifier: ~4.1.0 + version: 4.1.2 + typescript: + specifier: 4.9.5 + version: 4.9.5 libs/embed: - specifiers: - '@commitlint/cli': ^17.0.0 - '@commitlint/config-conventional': ^17.0.0 - '@novu/notification-center': ^0.20.0-alpha.1 - '@rollup/plugin-node-resolve': ^6.0.0 - '@rollup/plugin-replace': ^5.0.2 - '@types/iframe-resizer': ^3.5.8 - '@types/jest': 29.5.2 - '@types/node': ^14.14.16 - colors: 1.4.0 - concurrently: ^5.3.0 - coveralls: ^3.0.2 - cross-env: ^5.2.0 - http-server: ^0.13.0 - husky: ^1.0.1 - iframe-resizer: ^4.3.1 - jest: ^27.0.6 - jest-config: ^27.4.7 - lodash.camelcase: ^4.3.0 - prettier: ~2.8.0 - prompt: ^1.0.0 - replace-in-file: ^3.4.2 - rimraf: ^2.6.2 - rollup: ^3.15.0 - rollup-plugin-commonjs: ^10.1.0 - rollup-plugin-json: ^4.0.0 - rollup-plugin-sourcemaps: ^0.6.3 - rollup-plugin-terser: ^7.0.2 - rollup-plugin-typescript2: ^0.34.1 - semantic-release: ^19.0.3 - shelljs: ^0.8.3 - ts-jest: ^27.1.3 - ts-node: ~10.9.1 - tslib: ^2.3.1 - typescript: 4.9.5 dependencies: - '@novu/notification-center': link:../../packages/notification-center - '@types/iframe-resizer': 3.5.9 - iframe-resizer: 4.3.6 + '@novu/notification-center': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/notification-center + '@types/iframe-resizer': + specifier: ^3.5.8 + version: 3.5.9 + iframe-resizer: + specifier: ^4.3.1 + version: 4.3.6 devDependencies: - '@commitlint/cli': 17.5.1 - '@commitlint/config-conventional': 17.4.4 - '@rollup/plugin-node-resolve': 6.1.0_rollup@3.20.2 - '@rollup/plugin-replace': 5.0.2_rollup@3.20.2 - '@types/jest': 29.5.2 - '@types/node': 14.18.42 - colors: 1.4.0 - concurrently: 5.3.0 - coveralls: 3.1.1 - cross-env: 5.2.1 - http-server: 0.13.0 - husky: 1.3.1 - jest: 27.5.1_ts-node@10.9.1 - jest-config: 27.5.1_ts-node@10.9.1 - lodash.camelcase: 4.3.0 - prettier: 2.8.7 - prompt: 1.3.0 - replace-in-file: 3.4.4 - rimraf: 2.7.1 - rollup: 3.20.2 - rollup-plugin-commonjs: 10.1.0_rollup@3.20.2 - rollup-plugin-json: 4.0.0 - rollup-plugin-sourcemaps: 0.6.3_zqbtwiefoqdn56wtfj6ofq72gq - rollup-plugin-terser: 7.0.2_rollup@3.20.2 - rollup-plugin-typescript2: 0.34.1_e7tciabaay7z2i5ycjdzz3zl6i - semantic-release: 19.0.5 - shelljs: 0.8.5 - ts-jest: 27.1.5_jt6hjr4g6reedzkbayzypxjbqa - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - tslib: 2.5.0 - typescript: 4.9.5 + '@commitlint/cli': + specifier: ^17.0.0 + version: 17.5.1(@swc/core@1.3.49) + '@commitlint/config-conventional': + specifier: ^17.0.0 + version: 17.4.4 + '@rollup/plugin-node-resolve': + specifier: ^6.0.0 + version: 6.1.0(rollup@3.20.2) + '@rollup/plugin-replace': + specifier: ^5.0.2 + version: 5.0.2(rollup@3.20.2) + '@types/jest': + specifier: 29.5.2 + version: 29.5.2 + '@types/node': + specifier: ^14.14.16 + version: 14.18.42 + colors: + specifier: 1.4.0 + version: 1.4.0 + concurrently: + specifier: ^5.3.0 + version: 5.3.0 + coveralls: + specifier: ^3.0.2 + version: 3.1.1 + cross-env: + specifier: ^5.2.0 + version: 5.2.1 + http-server: + specifier: ^0.13.0 + version: 0.13.0 + husky: + specifier: ^1.0.1 + version: 1.3.1 + jest: + specifier: ^27.0.6 + version: 27.5.1(ts-node@10.9.1) + jest-config: + specifier: ^27.4.7 + version: 27.5.1(ts-node@10.9.1) + lodash.camelcase: + specifier: ^4.3.0 + version: 4.3.0 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + prompt: + specifier: ^1.0.0 + version: 1.3.0 + replace-in-file: + specifier: ^3.4.2 + version: 3.4.4 + rimraf: + specifier: ^2.6.2 + version: 2.7.1 + rollup: + specifier: ^3.15.0 + version: 3.20.2 + rollup-plugin-commonjs: + specifier: ^10.1.0 + version: 10.1.0(rollup@3.20.2) + rollup-plugin-json: + specifier: ^4.0.0 + version: 4.0.0 + rollup-plugin-sourcemaps: + specifier: ^0.6.3 + version: 0.6.3(@types/node@14.18.42)(rollup@3.20.2) + rollup-plugin-terser: + specifier: ^7.0.2 + version: 7.0.2(rollup@3.20.2) + rollup-plugin-typescript2: + specifier: ^0.34.1 + version: 0.34.1(rollup@3.20.2)(typescript@4.9.5) + semantic-release: + specifier: ^19.0.3 + version: 19.0.5 + shelljs: + specifier: ^0.8.3 + version: 0.8.5 + ts-jest: + specifier: ^27.1.3 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + tslib: + specifier: ^2.3.1 + version: 2.5.0 + typescript: + specifier: 4.9.5 + version: 4.9.5 libs/shared: - specifiers: - '@types/bluebird': ^3.5.24 - axios: ^1.4.0 - class-transformer: 0.5.1 - class-validator: 0.14.0 - rimraf: ^3.0.2 - typescript: 4.9.5 dependencies: - axios: 1.4.0 - class-transformer: 0.5.1 - class-validator: 0.14.0 + axios: + specifier: ^1.4.0 + version: 1.4.0 + class-transformer: + specifier: 0.5.1 + version: 0.5.1 + class-validator: + specifier: 0.14.0 + version: 0.14.0 devDependencies: - '@types/bluebird': 3.5.38 - rimraf: 3.0.2 - typescript: 4.9.5 + '@types/bluebird': + specifier: ^3.5.24 + version: 3.5.38 + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + typescript: + specifier: 4.9.5 + version: 4.9.5 libs/testing: - specifiers: - '@faker-js/faker': ^6.0.0 - '@novu/dal': ^0.20.0-alpha.1 - '@novu/shared': ^0.20.0-alpha.1 - '@types/async': ^3.2.1 - '@types/bluebird': ^3.5.30 - '@types/node': ^14.6.0 - '@typescript-eslint/parser': ^4.14.2 - JSONStream: ^1.3.5 - apollo-boost: 0.4.9 - async: ^3.2.0 - axios: ^1.3.3 - bcrypt: ~5.0.0 - bullmq: ^3.10.2 - class-transformer: 0.5.1 - cross-fetch: ^3.0.4 - eslint-plugin-prettier: ^4.2.1 - event-stream: ^4.0.1 - fs-extra: ^9.0.0 - jsonfile: ^6.0.1 - mongoose: ^7.5.0 - ng-intercom: ^8.0.2 - nodemon: ^3.0.1 - reflect-metadata: ^0.1.13 - rimraf: ^3.0.2 - shortid: ^2.2.16 - slugify: ^1.4.6 - superagent-defaults: ^0.1.14 - supertest: ^5.0.0 - ts-node: ~10.9.1 - tsconfig-paths: ~4.1.0 - typescript: 4.9.5 - uuid: ^8.3.0 dependencies: - '@faker-js/faker': 6.3.1 - '@novu/dal': link:../dal - '@novu/shared': link:../shared - JSONStream: 1.3.5 - async: 3.2.4 - axios: 1.3.5 - bcrypt: 5.0.1 - bullmq: 3.10.4 - class-transformer: 0.5.1 - cross-fetch: 3.1.5 - event-stream: 4.0.1 - fs-extra: 9.1.0 - jsonfile: 6.1.0 - mongoose: 7.5.2 - ng-intercom: 8.0.2 - reflect-metadata: 0.1.13 - rimraf: 3.0.2 - shortid: 2.2.16 - slugify: 1.6.6 - superagent-defaults: 0.1.14_superagent@8.0.9 - supertest: 5.0.0 - uuid: 8.3.2 + '@faker-js/faker': + specifier: ^6.0.0 + version: 6.3.1 + '@novu/dal': + specifier: ^0.20.0-alpha.1 + version: link:../dal + '@novu/shared': + specifier: ^0.20.0-alpha.1 + version: link:../shared + JSONStream: + specifier: ^1.3.5 + version: 1.3.5 + async: + specifier: ^3.2.0 + version: 3.2.4 + axios: + specifier: ^1.3.3 + version: 1.3.5 + bcrypt: + specifier: ~5.0.0 + version: 5.0.1 + bullmq: + specifier: ^3.10.2 + version: 3.10.4 + class-transformer: + specifier: 0.5.1 + version: 0.5.1 + cross-fetch: + specifier: ^3.0.4 + version: 3.1.5 + event-stream: + specifier: ^4.0.1 + version: 4.0.1 + fs-extra: + specifier: ^9.0.0 + version: 9.1.0 + jsonfile: + specifier: ^6.0.1 + version: 6.1.0 + mongoose: + specifier: ^7.5.0 + version: 7.5.2 + ng-intercom: + specifier: ^8.0.2 + version: 8.0.2 + reflect-metadata: + specifier: ^0.1.13 + version: 0.1.13 + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + shortid: + specifier: ^2.2.16 + version: 2.2.16 + slugify: + specifier: ^1.4.6 + version: 1.6.6 + superagent-defaults: + specifier: ^0.1.14 + version: 0.1.14(superagent@8.0.9) + supertest: + specifier: ^5.0.0 + version: 5.0.0 + uuid: + specifier: ^8.3.0 + version: 8.3.2 devDependencies: - '@types/async': 3.2.18 - '@types/bluebird': 3.5.38 - '@types/node': 14.18.42 - '@typescript-eslint/parser': 4.33.0_jofidmxrjzhj7l6vknpw5ecvfe - apollo-boost: 0.4.9_graphql@15.8.0 - eslint-plugin-prettier: 4.2.1_6l7kvkw7pbq7sx3iiqo67pyozi - nodemon: 3.0.1 - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - tsconfig-paths: 4.1.2 - typescript: 4.9.5 + '@types/async': + specifier: ^3.2.1 + version: 3.2.18 + '@types/bluebird': + specifier: ^3.5.30 + version: 3.5.38 + '@types/node': + specifier: ^14.6.0 + version: 14.18.42 + '@typescript-eslint/parser': + specifier: ^4.14.2 + version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) + apollo-boost: + specifier: 0.4.9 + version: 0.4.9(graphql@15.8.0) + eslint-plugin-prettier: + specifier: ^4.2.1 + version: 4.2.1(eslint-config-prettier@8.8.0)(eslint@7.32.0)(prettier@2.8.7) + nodemon: + specifier: ^3.0.1 + version: 3.0.1 + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + tsconfig-paths: + specifier: ~4.1.0 + version: 4.1.2 + typescript: + specifier: 4.9.5 + version: 4.9.5 packages/application-generic: - specifiers: - '@aws-sdk/client-s3': ^3.382.0 - '@aws-sdk/s3-request-presigner': ^3.382.0 - '@azure/storage-blob': ^12.11.0 - '@google-cloud/storage': ^6.2.3 - '@istanbuljs/nyc-config-typescript': ^1.0.1 - '@nestjs/common': '>=10' - '@nestjs/core': '>=10' - '@nestjs/jwt': ^10.1.0 - '@nestjs/swagger': '>=6' - '@nestjs/terminus': '>=10' - '@nestjs/testing': '>=10' - '@novu/africas-talking': ^0.20.0-alpha.1 - '@novu/apns': ^0.20.0-alpha.1 - '@novu/burst-sms': ^0.20.0-alpha.1 - '@novu/clickatell': ^0.20.0-alpha.1 - '@novu/clicksend': ^0.20.0-alpha.1 - '@novu/dal': ^0.20.0-alpha.1 - '@novu/discord': ^0.20.0-alpha.1 - '@novu/email-webhook': ^0.20.0-alpha.0 - '@novu/emailjs': ^0.20.0-alpha.1 - '@novu/expo': ^0.20.0-alpha.1 - '@novu/fcm': ^0.20.0-alpha.1 - '@novu/firetext': ^0.20.0-alpha.1 - '@novu/forty-six-elks': ^0.20.0-alpha.1 - '@novu/gupshup': ^0.20.0-alpha.1 - '@novu/infobip': ^0.20.0-alpha.1 - '@novu/kannel': ^0.20.0-alpha.1 - '@novu/mailersend': ^0.20.0-alpha.1 - '@novu/mailgun': ^0.20.0-alpha.1 - '@novu/mailjet': ^0.20.0-alpha.1 - '@novu/mailtrap': ^0.20.0-alpha.1 - '@novu/mandrill': ^0.20.0-alpha.1 - '@novu/maqsam': ^0.20.0-alpha.1 - '@novu/mattermost': ^0.20.0-alpha.1 - '@novu/ms-teams': ^0.20.0-alpha.0 - '@novu/netcore': ^0.20.0-alpha.1 - '@novu/nodemailer': ^0.20.0-alpha.1 - '@novu/one-signal': ^0.20.0-alpha.1 - '@novu/outlook365': ^0.20.0-alpha.1 - '@novu/plivo': ^0.20.0-alpha.1 - '@novu/plunk': ^0.20.0-alpha.1 - '@novu/postmark': ^0.20.0-alpha.1 - '@novu/push-webhook': ^0.20.0-alpha.1 - '@novu/resend': ^0.20.0-alpha.1 - '@novu/sendchamp': ^0.20.0-alpha.1 - '@novu/sendgrid': ^0.20.0-alpha.1 - '@novu/sendinblue': ^0.20.0-alpha.1 - '@novu/ses': ^0.20.0-alpha.1 - '@novu/shared': ^0.20.0-alpha.1 - '@novu/slack': ^0.20.0-alpha.1 - '@novu/sms-central': ^0.20.0-alpha.0 - '@novu/sms77': ^0.20.0-alpha.1 - '@novu/sns': ^0.20.0-alpha.1 - '@novu/sparkpost': ^0.20.0-alpha.1 - '@novu/stateless': ^0.20.0-alpha.1 - '@novu/telnyx': ^0.20.0-alpha.1 - '@novu/termii': ^0.20.0-alpha.1 - '@novu/testing': ^0.20.0-alpha.1 - '@novu/twilio': ^0.20.0-alpha.1 - '@sentry/node': ^7.12.1 - '@taskforcesh/bullmq-pro': 5.1.14 - '@types/analytics-node': ^3.1.9 - '@types/jest': 29.5.2 - '@types/sinon': ^9.0.0 - analytics-node: ^6.2.0 - bullmq: ^3.10.2 - class-transformer: ^0.5.1 - class-validator: ^0.14.0 - codecov: ^3.5.0 - cpx: ^1.5.0 - date-fns: ^2.29.2 - dotenv: ^8.2.0 - handlebars: ^4.7.7 - ioredis: ^5.2.4 - jest: ^27.1.0 - launchdarkly-node-server-sdk: ^7.0.1 - lodash: ^4.17.15 - mixpanel: ^0.17.0 - nestjs-pino: ^3.4.0 - newrelic: ^9 - node-fetch: ^3.2.10 - npm-run-all: ^4.1.5 - nyc: ^15.1.0 - pino-http: ^8.3.3 - pino-pretty: ^9.4.0 - prettier: ~2.8.0 - redlock: 4.2.0 - reflect-metadata: ^0.1.13 - rimraf: ^3.0.2 - rrule: ^2.7.2 - sinon: ^9.2.4 - ts-jest: ^27.0.5 - ts-node: ~10.9.1 - typescript: 4.9.5 dependencies: - '@aws-sdk/client-s3': 3.388.0 - '@aws-sdk/s3-request-presigner': 3.388.0 - '@azure/storage-blob': 12.13.0 - '@google-cloud/storage': 6.9.5 - '@nestjs/common': 10.2.2_j3td4gnlgk75ora6o6suo62byy - '@nestjs/core': 10.2.2_hvzojgbgemkkg4y2oz5vs6hq4y - '@nestjs/jwt': 10.1.0_@nestjs+common@10.2.2 - '@nestjs/swagger': 7.1.9_yggpgkps2ewgemp53dklozvzx4 - '@nestjs/terminus': 10.0.1_fav3sr7ld5p2uwyjvw6t25yci4 - '@nestjs/testing': 10.2.2_h33h3l6i5mruhsbo3bha6vy2fi - '@novu/africas-talking': link:../../providers/africas-talking - '@novu/apns': link:../../providers/apns - '@novu/burst-sms': link:../../providers/burst-sms - '@novu/clickatell': link:../../providers/clickatell - '@novu/clicksend': link:../../providers/clicksend - '@novu/dal': link:../../libs/dal - '@novu/discord': link:../../providers/discord - '@novu/email-webhook': link:../../providers/email-webhook - '@novu/emailjs': link:../../providers/emailjs - '@novu/expo': link:../../providers/expo - '@novu/fcm': link:../../providers/fcm - '@novu/firetext': link:../../providers/firetext - '@novu/forty-six-elks': link:../../providers/forty-six-elks - '@novu/gupshup': link:../../providers/gupshup - '@novu/infobip': link:../../providers/infobip - '@novu/kannel': link:../../providers/kannel - '@novu/mailersend': link:../../providers/mailersend - '@novu/mailgun': link:../../providers/mailgun - '@novu/mailjet': link:../../providers/mailjet - '@novu/mailtrap': link:../../providers/mailtrap - '@novu/mandrill': link:../../providers/mandrill - '@novu/maqsam': link:../../providers/maqsam - '@novu/mattermost': link:../../providers/mattermost - '@novu/ms-teams': link:../../providers/ms-teams - '@novu/netcore': link:../../providers/netcore - '@novu/nodemailer': link:../../providers/nodemailer - '@novu/one-signal': link:../../providers/one-signal - '@novu/outlook365': link:../../providers/outlook365 - '@novu/plivo': link:../../providers/plivo - '@novu/plunk': link:../../providers/plunk - '@novu/postmark': link:../../providers/postmark - '@novu/push-webhook': link:../../providers/push-webhook - '@novu/resend': link:../../providers/resend - '@novu/sendchamp': link:../../providers/sendchamp - '@novu/sendgrid': link:../../providers/sendgrid - '@novu/sendinblue': link:../../providers/sendinblue - '@novu/ses': link:../../providers/ses - '@novu/shared': link:../../libs/shared - '@novu/slack': link:../../providers/slack - '@novu/sms-central': link:../../providers/sms-central - '@novu/sms77': link:../../providers/sms77 - '@novu/sns': link:../../providers/sns - '@novu/sparkpost': link:../../providers/sparkpost - '@novu/stateless': link:../stateless - '@novu/telnyx': link:../../providers/telnyx - '@novu/termii': link:../../providers/termii - '@novu/testing': link:../../libs/testing - '@novu/twilio': link:../../providers/twilio - '@sentry/node': 7.47.0 - analytics-node: 6.2.0 - bullmq: 3.10.4 - class-transformer: 0.5.1 - class-validator: 0.14.0 - date-fns: 2.29.3 - handlebars: 4.7.7 - ioredis: 5.3.1 - launchdarkly-node-server-sdk: 7.0.1 - lodash: 4.17.21 - mixpanel: 0.17.0 - nestjs-pino: 3.4.0_63skzxoikz7i6kgl2v2i7k2p4y - newrelic: 9.15.0 - node-fetch: 3.3.1 - pino-http: 8.3.3 - pino-pretty: 9.4.0 - redlock: 4.2.0 - reflect-metadata: 0.1.13 - rrule: 2.7.2 + '@aws-sdk/client-s3': + specifier: ^3.382.0 + version: 3.388.0 + '@aws-sdk/s3-request-presigner': + specifier: ^3.382.0 + version: 3.388.0 + '@azure/storage-blob': + specifier: ^12.11.0 + version: 12.13.0 + '@google-cloud/storage': + specifier: ^6.2.3 + version: 6.9.5 + '@nestjs/common': + specifier: '>=10' + version: 10.2.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/core': + specifier: '>=10' + version: 10.2.2(@nestjs/common@10.2.2)(@nestjs/platform-express@10.2.2)(@nestjs/websockets@10.2.2)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/jwt': + specifier: ^10.1.0 + version: 10.1.0(@nestjs/common@10.2.2) + '@nestjs/swagger': + specifier: '>=6' + version: 7.1.9(@nestjs/common@10.2.2)(@nestjs/core@10.2.2)(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.1.13) + '@nestjs/terminus': + specifier: '>=10' + version: 10.0.1(@nestjs/axios@2.0.0)(@nestjs/common@10.2.2)(@nestjs/core@10.2.2)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/testing': + specifier: '>=10' + version: 10.2.2(@nestjs/common@10.2.2)(@nestjs/core@10.2.2)(@nestjs/platform-express@10.2.2) + '@novu/africas-talking': + specifier: ^0.20.0-alpha.1 + version: link:../../providers/africas-talking + '@novu/apns': + specifier: ^0.20.0-alpha.1 + version: link:../../providers/apns + '@novu/burst-sms': + specifier: ^0.20.0-alpha.1 + version: link:../../providers/burst-sms + '@novu/clickatell': + specifier: ^0.20.0-alpha.1 + version: link:../../providers/clickatell + '@novu/clicksend': + specifier: ^0.20.0-alpha.1 + version: link:../../providers/clicksend + '@novu/dal': + specifier: ^0.20.0-alpha.1 + version: link:../../libs/dal + '@novu/discord': + specifier: ^0.20.0-alpha.1 + version: link:../../providers/discord + '@novu/email-webhook': + specifier: ^0.20.0-alpha.0 + version: link:../../providers/email-webhook + '@novu/emailjs': + specifier: ^0.20.0-alpha.1 + version: link:../../providers/emailjs + '@novu/expo': + specifier: ^0.20.0-alpha.1 + version: link:../../providers/expo + '@novu/fcm': + specifier: ^0.20.0-alpha.1 + version: link:../../providers/fcm + '@novu/firetext': + specifier: ^0.20.0-alpha.1 + version: link:../../providers/firetext + '@novu/forty-six-elks': + specifier: ^0.20.0-alpha.1 + version: link:../../providers/forty-six-elks + '@novu/gupshup': + specifier: ^0.20.0-alpha.1 + version: link:../../providers/gupshup + '@novu/infobip': + specifier: ^0.20.0-alpha.1 + version: link:../../providers/infobip + '@novu/kannel': + specifier: ^0.20.0-alpha.1 + version: link:../../providers/kannel + '@novu/mailersend': + specifier: ^0.20.0-alpha.1 + version: link:../../providers/mailersend + '@novu/mailgun': + specifier: ^0.20.0-alpha.1 + version: link:../../providers/mailgun + '@novu/mailjet': + specifier: ^0.20.0-alpha.1 + version: link:../../providers/mailjet + '@novu/mailtrap': + specifier: ^0.20.0-alpha.1 + version: link:../../providers/mailtrap + '@novu/mandrill': + specifier: ^0.20.0-alpha.1 + version: link:../../providers/mandrill + '@novu/maqsam': + specifier: ^0.20.0-alpha.1 + version: link:../../providers/maqsam + '@novu/mattermost': + specifier: ^0.20.0-alpha.1 + version: link:../../providers/mattermost + '@novu/ms-teams': + specifier: ^0.20.0-alpha.0 + version: link:../../providers/ms-teams + '@novu/netcore': + specifier: ^0.20.0-alpha.1 + version: link:../../providers/netcore + '@novu/nodemailer': + specifier: ^0.20.0-alpha.1 + version: link:../../providers/nodemailer + '@novu/one-signal': + specifier: ^0.20.0-alpha.1 + version: link:../../providers/one-signal + '@novu/outlook365': + specifier: ^0.20.0-alpha.1 + version: link:../../providers/outlook365 + '@novu/plivo': + specifier: ^0.20.0-alpha.1 + version: link:../../providers/plivo + '@novu/plunk': + specifier: ^0.20.0-alpha.1 + version: link:../../providers/plunk + '@novu/postmark': + specifier: ^0.20.0-alpha.1 + version: link:../../providers/postmark + '@novu/push-webhook': + specifier: ^0.20.0-alpha.1 + version: link:../../providers/push-webhook + '@novu/resend': + specifier: ^0.20.0-alpha.1 + version: link:../../providers/resend + '@novu/sendchamp': + specifier: ^0.20.0-alpha.1 + version: link:../../providers/sendchamp + '@novu/sendgrid': + specifier: ^0.20.0-alpha.1 + version: link:../../providers/sendgrid + '@novu/sendinblue': + specifier: ^0.20.0-alpha.1 + version: link:../../providers/sendinblue + '@novu/ses': + specifier: ^0.20.0-alpha.1 + version: link:../../providers/ses + '@novu/shared': + specifier: ^0.20.0-alpha.1 + version: link:../../libs/shared + '@novu/slack': + specifier: ^0.20.0-alpha.1 + version: link:../../providers/slack + '@novu/sms-central': + specifier: ^0.20.0-alpha.0 + version: link:../../providers/sms-central + '@novu/sms77': + specifier: ^0.20.0-alpha.1 + version: link:../../providers/sms77 + '@novu/sns': + specifier: ^0.20.0-alpha.1 + version: link:../../providers/sns + '@novu/sparkpost': + specifier: ^0.20.0-alpha.1 + version: link:../../providers/sparkpost + '@novu/stateless': + specifier: ^0.20.0-alpha.1 + version: link:../stateless + '@novu/telnyx': + specifier: ^0.20.0-alpha.1 + version: link:../../providers/telnyx + '@novu/termii': + specifier: ^0.20.0-alpha.1 + version: link:../../providers/termii + '@novu/testing': + specifier: ^0.20.0-alpha.1 + version: link:../../libs/testing + '@novu/twilio': + specifier: ^0.20.0-alpha.1 + version: link:../../providers/twilio + '@sentry/node': + specifier: ^7.12.1 + version: 7.47.0 + analytics-node: + specifier: ^6.2.0 + version: 6.2.0 + bullmq: + specifier: ^3.10.2 + version: 3.10.4 + class-transformer: + specifier: ^0.5.1 + version: 0.5.1 + class-validator: + specifier: ^0.14.0 + version: 0.14.0 + date-fns: + specifier: ^2.29.2 + version: 2.29.3 + handlebars: + specifier: ^4.7.7 + version: 4.7.7 + ioredis: + specifier: ^5.2.4 + version: 5.3.1 + launchdarkly-node-server-sdk: + specifier: ^7.0.1 + version: 7.0.1 + lodash: + specifier: ^4.17.15 + version: 4.17.21 + mixpanel: + specifier: ^0.17.0 + version: 0.17.0 + nestjs-pino: + specifier: ^3.4.0 + version: 3.4.0(@nestjs/common@10.2.2)(pino-http@8.3.3) + newrelic: + specifier: ^9 + version: 9.15.0 + node-fetch: + specifier: ^3.2.10 + version: 3.3.1 + pino-http: + specifier: ^8.3.3 + version: 8.3.3 + pino-pretty: + specifier: ^9.4.0 + version: 9.4.0 + redlock: + specifier: 4.2.0 + version: 4.2.0 + reflect-metadata: + specifier: ^0.1.13 + version: 0.1.13 + rrule: + specifier: ^2.7.2 + version: 2.7.2 optionalDependencies: - '@taskforcesh/bullmq-pro': 5.1.14 + '@taskforcesh/bullmq-pro': + specifier: 5.1.14 + version: 5.1.14 devDependencies: - '@istanbuljs/nyc-config-typescript': 1.0.2_nyc@15.1.0 - '@types/analytics-node': 3.1.11 - '@types/jest': 29.5.2 - '@types/sinon': 9.0.11 - codecov: 3.8.3 - cpx: 1.5.0 - dotenv: 8.6.0 - jest: 27.5.1_ts-node@10.9.1 - npm-run-all: 4.1.5 - nyc: 15.1.0 - prettier: 2.8.7 - rimraf: 3.0.2 - sinon: 9.2.4 - ts-jest: 27.1.5_jt6hjr4g6reedzkbayzypxjbqa - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - typescript: 4.9.5 + '@istanbuljs/nyc-config-typescript': + specifier: ^1.0.1 + version: 1.0.2(nyc@15.1.0) + '@types/analytics-node': + specifier: ^3.1.9 + version: 3.1.11 + '@types/jest': + specifier: 29.5.2 + version: 29.5.2 + '@types/sinon': + specifier: ^9.0.0 + version: 9.0.11 + codecov: + specifier: ^3.5.0 + version: 3.8.3 + cpx: + specifier: ^1.5.0 + version: 1.5.0 + dotenv: + specifier: ^8.2.0 + version: 8.6.0 + jest: + specifier: ^27.1.0 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + nyc: + specifier: ^15.1.0 + version: 15.1.0 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + sinon: + specifier: ^9.2.4 + version: 9.2.4 + ts-jest: + specifier: ^27.0.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 packages/cli: - specifiers: - '@novu/shared': ^0.20.0-alpha.1 - '@types/analytics-node': ^3.1.9 - '@types/configstore': ^5.0.1 - '@types/inquirer': ^8.2.0 - '@types/mocha': 9.1.1 - analytics-node: ^6.2.0 - axios: ^1.3.3 - chalk: 4.1.2 - commander: ^9.0.0 - configstore: ^5.0.0 - dotenv: ^8.2.0 - get-port: ^5.1.1 - gradient-string: ^2.0.0 - inquirer: ^8.2.0 - jwt-decode: ^3.1.2 - ncp: ^2.0.0 - nodemon: ^3.0.1 - open: ^8.4.0 - ora: ^5.4.1 - ts-node: ~10.9.1 - typescript: 4.9.5 - uuid: ^9.0.0 dependencies: - '@novu/shared': link:../../libs/shared - analytics-node: 6.2.0 - axios: 1.3.5 - chalk: 4.1.2 - commander: 9.5.0 - configstore: 5.0.1 - dotenv: 8.6.0 - get-port: 5.1.1 - gradient-string: 2.0.2 - inquirer: 8.2.5 - jwt-decode: 3.1.2 - open: 8.4.2 - ora: 5.4.1 - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - uuid: 9.0.0 + '@novu/shared': + specifier: ^0.20.0-alpha.1 + version: link:../../libs/shared + analytics-node: + specifier: ^6.2.0 + version: 6.2.0 + axios: + specifier: ^1.3.3 + version: 1.3.5 + chalk: + specifier: 4.1.2 + version: 4.1.2 + commander: + specifier: ^9.0.0 + version: 9.5.0 + configstore: + specifier: ^5.0.0 + version: 5.0.1 + dotenv: + specifier: ^8.2.0 + version: 8.6.0 + get-port: + specifier: ^5.1.1 + version: 5.1.1 + gradient-string: + specifier: ^2.0.0 + version: 2.0.2 + inquirer: + specifier: ^8.2.0 + version: 8.2.5 + jwt-decode: + specifier: ^3.1.2 + version: 3.1.2 + open: + specifier: ^8.4.0 + version: 8.4.2 + ora: + specifier: ^5.4.1 + version: 5.4.1 + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + uuid: + specifier: ^9.0.0 + version: 9.0.0 devDependencies: - '@types/analytics-node': 3.1.11 - '@types/configstore': 5.0.1 - '@types/inquirer': 8.2.6 - '@types/mocha': 9.1.1 - ncp: 2.0.0 - nodemon: 3.0.1 - typescript: 4.9.5 + '@types/analytics-node': + specifier: ^3.1.9 + version: 3.1.11 + '@types/configstore': + specifier: ^5.0.1 + version: 5.0.1 + '@types/inquirer': + specifier: ^8.2.0 + version: 8.2.6 + '@types/mocha': + specifier: 9.1.1 + version: 9.1.1 + ncp: + specifier: ^2.0.0 + version: 2.0.0 + nodemon: + specifier: ^3.0.1 + version: 3.0.1 + typescript: + specifier: 4.9.5 + version: 4.9.5 packages/client: - specifiers: - '@novu/shared': ^0.20.0-alpha.1 - '@types/jest': 29.5.2 - '@types/node': ^14.6.0 - codecov: ^3.5.0 - jest: ^27.0.6 - npm-run-all: ^4.1.5 - rimraf: ^3.0.2 - ts-jest: ^27.0.5 - typedoc: ^0.24.0 - typescript: 4.9.5 dependencies: - '@novu/shared': link:../../libs/shared + '@novu/shared': + specifier: ^0.20.0-alpha.1 + version: link:../../libs/shared devDependencies: - '@types/jest': 29.5.2 - '@types/node': 14.18.42 - codecov: 3.8.3 - jest: 27.5.1 - npm-run-all: 4.1.5 - rimraf: 3.0.2 - ts-jest: 27.1.5_jt6hjr4g6reedzkbayzypxjbqa - typedoc: 0.24.6_typescript@4.9.5 - typescript: 4.9.5 + '@types/jest': + specifier: 29.5.2 + version: 29.5.2 + '@types/node': + specifier: ^14.6.0 + version: 14.18.42 + codecov: + specifier: ^3.5.0 + version: 3.8.3 + jest: + specifier: ^27.0.6 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + ts-jest: + specifier: ^27.0.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) + typedoc: + specifier: ^0.24.0 + version: 0.24.6(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 packages/headless: - specifiers: - '@babel/preset-env': ^7.13.15 - '@babel/preset-typescript': ^7.13.0 - '@novu/client': ^0.20.0-alpha.1 - '@novu/shared': ^0.20.0-alpha.1 - '@tanstack/query-core': ^4.15.1 - '@types/jest': ^29.2.3 - '@types/node': ^14.6.0 - jest: ^29.3.1 - jest-environment-jsdom: ^29.3.1 - socket.io-client: 4.7.2 - ts-jest: ^29.0.3 - typedoc: ^0.24.0 - typescript: 4.9.5 dependencies: - '@novu/client': link:../client - '@novu/shared': link:../../libs/shared - '@tanstack/query-core': 4.29.1 - socket.io-client: 4.7.2 + '@novu/client': + specifier: ^0.20.0-alpha.1 + version: link:../client + '@novu/shared': + specifier: ^0.20.0-alpha.1 + version: link:../../libs/shared + '@tanstack/query-core': + specifier: ^4.15.1 + version: 4.29.1 + socket.io-client: + specifier: 4.7.2 + version: 4.7.2 devDependencies: - '@babel/preset-env': 7.21.4_@babel+core@7.22.11 - '@babel/preset-typescript': 7.21.4_@babel+core@7.22.11 - '@types/jest': 29.5.0 - '@types/node': 14.18.42 - jest: 29.5.0_@types+node@14.18.42 - jest-environment-jsdom: 29.5.0 - ts-jest: 29.1.0_warwjzk3ewnxrmv2f2elppn4ae - typedoc: 0.24.6_typescript@4.9.5 - typescript: 4.9.5 + '@babel/preset-env': + specifier: ^7.13.15 + version: 7.21.4(@babel/core@7.22.11) + '@babel/preset-typescript': + specifier: ^7.13.0 + version: 7.21.4(@babel/core@7.22.11) + '@types/jest': + specifier: ^29.2.3 + version: 29.5.0 + '@types/node': + specifier: ^14.6.0 + version: 14.18.42 + jest: + specifier: ^29.3.1 + version: 29.5.0(@types/node@14.18.42)(ts-node@10.9.1) + jest-environment-jsdom: + specifier: ^29.3.1 + version: 29.5.0 + ts-jest: + specifier: ^29.0.3 + version: 29.1.0(@babel/core@7.22.11)(jest@29.5.0)(typescript@4.9.5) + typedoc: + specifier: ^0.24.0 + version: 0.24.6(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 packages/nest: - specifiers: - '@istanbuljs/nyc-config-typescript': ^1.0.1 - '@nestjs/common': ^8.2.0 - '@novu/stateless': ^0.20.0-alpha.1 - '@types/jest': 29.5.2 - codecov: ^3.5.0 - cspell: ^4.1.0 - gh-pages: ^3.1.0 - jest: ^27.1.0 - npm-run-all: ^4.1.5 - nyc: ^15.1.0 - open-cli: ^6.0.1 - prettier: ~2.8.0 - rimraf: ^3.0.2 - ts-jest: ^27.0.5 - ts-node: ~10.9.1 - typedoc: ^0.24.0 - typescript: 4.9.5 dependencies: - '@nestjs/common': 8.4.7_atc7tu2sld2m3nk4hmwkqn6qde - '@novu/stateless': link:../stateless + '@nestjs/common': + specifier: ^8.2.0 + version: 8.4.7(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@novu/stateless': + specifier: ^0.20.0-alpha.1 + version: link:../stateless devDependencies: - '@istanbuljs/nyc-config-typescript': 1.0.2_nyc@15.1.0 - '@types/jest': 29.5.2 - codecov: 3.8.3 - cspell: 4.2.8 - gh-pages: 3.2.3 - jest: 27.5.1_ts-node@10.9.1 - npm-run-all: 4.1.5 - nyc: 15.1.0 - open-cli: 6.0.1 - prettier: 2.8.7 - rimraf: 3.0.2 - ts-jest: 27.1.5_jt6hjr4g6reedzkbayzypxjbqa - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - typedoc: 0.24.6_typescript@4.9.5 - typescript: 4.9.5 + '@istanbuljs/nyc-config-typescript': + specifier: ^1.0.1 + version: 1.0.2(nyc@15.1.0) + '@types/jest': + specifier: 29.5.2 + version: 29.5.2 + codecov: + specifier: ^3.5.0 + version: 3.8.3 + cspell: + specifier: ^4.1.0 + version: 4.2.8 + gh-pages: + specifier: ^3.1.0 + version: 3.2.3 + jest: + specifier: ^27.1.0 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + nyc: + specifier: ^15.1.0 + version: 15.1.0 + open-cli: + specifier: ^6.0.1 + version: 6.0.1 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + ts-jest: + specifier: ^27.0.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + typedoc: + specifier: ^0.24.0 + version: 0.24.6(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 packages/node: - specifiers: - '@novu/shared': ^0.20.0-alpha.1 - '@sendgrid/mail': ^7.4.6 - '@types/jest': 29.5.2 - '@types/lodash.get': ^4.4.6 - '@types/lodash.merge': ^4.6.6 - '@types/node': ^14.6.0 - axios: ^1.4.0 - codecov: ^3.5.0 - handlebars: ^4.7.7 - jest: ^27.0.6 - lodash.get: ^4.4.2 - lodash.merge: ^4.6.2 - npm-run-all: ^4.1.5 - open-cli: ^6.0.1 - rimraf: ^3.0.2 - run-p: 0.0.0 - ts-jest: ^27.0.5 - typedoc: ^0.24.0 - typescript: 4.9.5 dependencies: - '@novu/shared': link:../../libs/shared - handlebars: 4.7.7 - lodash.get: 4.4.2 - lodash.merge: 4.6.2 + '@novu/shared': + specifier: ^0.20.0-alpha.1 + version: link:../../libs/shared + handlebars: + specifier: ^4.7.7 + version: 4.7.7 + lodash.get: + specifier: ^4.4.2 + version: 4.4.2 + lodash.merge: + specifier: ^4.6.2 + version: 4.6.2 devDependencies: - '@sendgrid/mail': 7.7.0 - '@types/jest': 29.5.2 - '@types/lodash.get': 4.4.7 - '@types/lodash.merge': 4.6.7 - '@types/node': 14.18.42 - axios: 1.4.0 - codecov: 3.8.3 - jest: 27.5.1 - npm-run-all: 4.1.5 - open-cli: 6.0.1 - rimraf: 3.0.2 - run-p: 0.0.0 - ts-jest: 27.1.5_jt6hjr4g6reedzkbayzypxjbqa - typedoc: 0.24.6_typescript@4.9.5 - typescript: 4.9.5 + '@sendgrid/mail': + specifier: ^7.4.6 + version: 7.7.0 + '@types/jest': + specifier: 29.5.2 + version: 29.5.2 + '@types/lodash.get': + specifier: ^4.4.6 + version: 4.4.7 + '@types/lodash.merge': + specifier: ^4.6.6 + version: 4.6.7 + '@types/node': + specifier: ^14.6.0 + version: 14.18.42 + axios: + specifier: ^1.4.0 + version: 1.4.0 + codecov: + specifier: ^3.5.0 + version: 3.8.3 + jest: + specifier: ^27.0.6 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + open-cli: + specifier: ^6.0.1 + version: 6.0.1 + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + run-p: + specifier: 0.0.0 + version: 0.0.0 + ts-jest: + specifier: ^27.0.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) + typedoc: + specifier: ^0.24.0 + version: 0.24.6(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 packages/notification-center: - specifiers: - '@babel/preset-env': ^7.13.15 - '@babel/preset-react': ^7.13.13 - '@babel/preset-typescript': ^7.13.0 - '@emotion/css': ^11.10.5 - '@emotion/react': ^11.7.1 - '@emotion/styled': ^11.6.0 - '@mantine/core': ^5.7.1 - '@mantine/hooks': ^5.7.1 - '@novu/client': ^0.20.0-alpha.1 - '@novu/shared': ^0.20.0-alpha.1 - '@storybook/addon-actions': ^7.4.2 - '@storybook/addon-essentials': ^7.4.2 - '@storybook/addon-interactions': ^7.4.2 - '@storybook/addon-links': ^7.4.2 - '@storybook/addon-mdx-gfm': ^7.4.2 - '@storybook/react': ^7.4.2 - '@storybook/react-webpack5': ^7.4.2 - '@tanstack/react-query': ^4.20.4 - '@testing-library/dom': ^9.3.0 - '@testing-library/jest-dom': ^4.2.4 - '@testing-library/react': ^11.1.0 - '@testing-library/react-hooks': ^8.0.1 - '@testing-library/user-event': ^12.1.10 - '@types/jest': ^29.2.3 - '@types/node': ^18.11.12 - '@types/react': ^17.0.0 - '@types/react-dom': ^17.0.0 - acorn: ^8.7.1 - acorn-jsx: ^5.3.2 - axios: ^1.4.0 - babel-loader: ^8.2.4 - compression-webpack-plugin: ^10.0.0 - eslint-plugin-storybook: ^0.6.13 - jest: ^29.3.1 - jest-environment-jsdom: ^29.3.1 - jest-transform-stub: ^2.0.0 - lodash.clonedeep: ^4.5.0 - lodash.debounce: ^4.0.8 - lodash.merge: ^4.6.2 - react: ^17.0.1 - react-dom: ^17.0.1 - react-infinite-scroll-component: ^6.0.0 - rimraf: ^3.0.2 - socket.io-client: 4.7.2 - storybook: ^7.4.2 - terser-webpack-plugin: ^5.3.9 - ts-jest: ^29.0.3 - ts-loader: ~9.4.0 - tslib: ^2.3.1 - typescript: 4.9.5 - url-loader: ^4.1.1 - webfontloader: ^1.6.28 - webpack: ^5.74.0 - webpack-bundle-analyzer: ^4.9.0 - webpack-cli: ^5.1.4 - dependencies: - '@emotion/css': 11.10.6 - '@emotion/react': 11.10.6_h7fc2el62uaa77gho3xhys6ola - '@emotion/styled': 11.10.6_7hisdke2c3hq4r3q5z4dcdhmzi - '@mantine/core': 5.10.5_dw37j7nepvponzncdz6mvufjke - '@mantine/hooks': 5.10.5_react@17.0.2 - '@novu/client': link:../client - '@novu/shared': link:../../libs/shared - '@tanstack/react-query': 4.29.1_sfoxds7t5ydpegc3knd667wn6m - acorn-jsx: 5.3.2_acorn@8.8.2 - axios: 1.4.0 - lodash.clonedeep: 4.5.0 - lodash.debounce: 4.0.8 - lodash.merge: 4.6.2 - react-infinite-scroll-component: 6.1.0_react@17.0.2 - socket.io-client: 4.7.2 - tslib: 2.5.0 - webfontloader: 1.6.28 + dependencies: + '@emotion/css': + specifier: ^11.10.5 + version: 11.10.6 + '@emotion/react': + specifier: ^11.7.1 + version: 11.10.6(@types/react@17.0.53)(react@17.0.2) + '@emotion/styled': + specifier: ^11.6.0 + version: 11.10.6(@emotion/react@11.10.6)(@types/react@17.0.53)(react@17.0.2) + '@mantine/core': + specifier: ^5.7.1 + version: 5.10.5(@emotion/react@11.10.6)(@mantine/hooks@5.10.5)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) + '@mantine/hooks': + specifier: ^5.7.1 + version: 5.10.5(react@17.0.2) + '@novu/client': + specifier: ^0.20.0-alpha.1 + version: link:../client + '@novu/shared': + specifier: ^0.20.0-alpha.1 + version: link:../../libs/shared + '@tanstack/react-query': + specifier: ^4.20.4 + version: 4.29.1(react-dom@17.0.2)(react@17.0.2) + acorn-jsx: + specifier: ^5.3.2 + version: 5.3.2(acorn@8.8.2) + axios: + specifier: ^1.4.0 + version: 1.4.0 + lodash.clonedeep: + specifier: ^4.5.0 + version: 4.5.0 + lodash.debounce: + specifier: ^4.0.8 + version: 4.0.8 + lodash.merge: + specifier: ^4.6.2 + version: 4.6.2 + react-infinite-scroll-component: + specifier: ^6.0.0 + version: 6.1.0(react@17.0.2) + socket.io-client: + specifier: 4.7.2 + version: 4.7.2 + tslib: + specifier: ^2.3.1 + version: 2.5.0 + webfontloader: + specifier: ^1.6.28 + version: 1.6.28 devDependencies: - '@babel/preset-env': 7.22.20_@babel+core@7.22.11 - '@babel/preset-react': 7.22.15_@babel+core@7.22.11 - '@babel/preset-typescript': 7.21.4_@babel+core@7.22.11 - '@storybook/addon-actions': 7.4.2_ktlmga7inmpnhh4xu7kimj7cou - '@storybook/addon-essentials': 7.4.2_ktlmga7inmpnhh4xu7kimj7cou - '@storybook/addon-interactions': 7.4.2_ktlmga7inmpnhh4xu7kimj7cou - '@storybook/addon-links': 7.4.2_sfoxds7t5ydpegc3knd667wn6m - '@storybook/addon-mdx-gfm': 7.4.2 - '@storybook/react': 7.4.2_jgxnvbe4faw3ohf4h6p42qq6oy - '@storybook/react-webpack5': 7.4.2_vwul62em6qezjiqxjnjsyslgzm - '@testing-library/dom': 9.3.0 - '@testing-library/jest-dom': 4.2.4 - '@testing-library/react': 11.2.7_sfoxds7t5ydpegc3knd667wn6m - '@testing-library/react-hooks': 8.0.1_zsjcj4gvi24ks76nprapl4hsmq - '@testing-library/user-event': 12.8.3_@testing-library+dom@9.3.0 - '@types/jest': 29.5.0 - '@types/node': 18.15.11 - '@types/react': 17.0.53 - '@types/react-dom': 17.0.19 - acorn: 8.8.2 - babel-loader: 8.3.0_pzz2ydzkafj27vzf3wnu5rjngu - compression-webpack-plugin: 10.0.0_webpack@5.82.1 - eslint-plugin-storybook: 0.6.13_cgvy6hrg3pjeapqw5wnuqcmdo4 - jest: 29.5.0_@types+node@18.15.11 - jest-environment-jsdom: 29.5.0 - jest-transform-stub: 2.0.0 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - rimraf: 3.0.2 - storybook: 7.4.2 - terser-webpack-plugin: 5.3.9_aka7ue4sjkoeo6uo4dlqntmpgy - ts-jest: 29.1.0_25qyn5tohmpc7hklflfuuc5j3e - ts-loader: 9.4.2_hybrf64lftnf5l2xwgg7goi2iu - typescript: 4.9.5 - url-loader: 4.1.1_webpack@5.82.1 - webpack: 5.82.1_w67ycjwq2niq3jlxgktvf5aow4 - webpack-bundle-analyzer: 4.9.0 - webpack-cli: 5.1.4_jwpra7xq62zw3tehur2jwszlsq + '@babel/preset-env': + specifier: ^7.13.15 + version: 7.22.20(@babel/core@7.22.11) + '@babel/preset-react': + specifier: ^7.13.13 + version: 7.22.15(@babel/core@7.22.11) + '@babel/preset-typescript': + specifier: ^7.13.0 + version: 7.21.4(@babel/core@7.22.11) + '@storybook/addon-actions': + specifier: ^7.4.2 + version: 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) + '@storybook/addon-essentials': + specifier: ^7.4.2 + version: 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) + '@storybook/addon-interactions': + specifier: ^7.4.2 + version: 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) + '@storybook/addon-links': + specifier: ^7.4.2 + version: 7.4.2(react-dom@17.0.2)(react@17.0.2) + '@storybook/addon-mdx-gfm': + specifier: ^7.4.2 + version: 7.4.2 + '@storybook/react': + specifier: ^7.4.2 + version: 7.4.2(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5) + '@storybook/react-webpack5': + specifier: ^7.4.2 + version: 7.4.2(@babel/core@7.22.11)(@swc/core@1.3.49)(@types/react-dom@17.0.19)(@types/react@17.0.53)(esbuild@0.18.20)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack-cli@5.1.4) + '@testing-library/dom': + specifier: ^9.3.0 + version: 9.3.0 + '@testing-library/jest-dom': + specifier: ^4.2.4 + version: 4.2.4 + '@testing-library/react': + specifier: ^11.1.0 + version: 11.2.7(react-dom@17.0.2)(react@17.0.2) + '@testing-library/react-hooks': + specifier: ^8.0.1 + version: 8.0.1(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) + '@testing-library/user-event': + specifier: ^12.1.10 + version: 12.8.3(@testing-library/dom@9.3.0) + '@types/jest': + specifier: ^29.2.3 + version: 29.5.0 + '@types/node': + specifier: ^18.11.12 + version: 18.15.11 + '@types/react': + specifier: ^17.0.0 + version: 17.0.53 + '@types/react-dom': + specifier: ^17.0.0 + version: 17.0.19 + acorn: + specifier: ^8.7.1 + version: 8.8.2 + babel-loader: + specifier: ^8.2.4 + version: 8.3.0(@babel/core@7.22.11)(webpack@5.82.1) + compression-webpack-plugin: + specifier: ^10.0.0 + version: 10.0.0(webpack@5.82.1) + eslint-plugin-storybook: + specifier: ^0.6.13 + version: 0.6.13(eslint@8.48.0)(typescript@4.9.5) + jest: + specifier: ^29.3.1 + version: 29.5.0(@types/node@18.15.11)(ts-node@10.9.1) + jest-environment-jsdom: + specifier: ^29.3.1 + version: 29.5.0 + jest-transform-stub: + specifier: ^2.0.0 + version: 2.0.0 + react: + specifier: ^17.0.1 + version: 17.0.2 + react-dom: + specifier: ^17.0.1 + version: 17.0.2(react@17.0.2) + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + storybook: + specifier: ^7.4.2 + version: 7.4.2 + terser-webpack-plugin: + specifier: ^5.3.9 + version: 5.3.9(@swc/core@1.3.49)(esbuild@0.18.20)(webpack@5.82.1) + ts-jest: + specifier: ^29.0.3 + version: 29.1.0(@babel/core@7.22.11)(esbuild@0.18.20)(jest@29.5.0)(typescript@4.9.5) + ts-loader: + specifier: ~9.4.0 + version: 9.4.2(typescript@4.9.5)(webpack@5.82.1) + typescript: + specifier: 4.9.5 + version: 4.9.5 + url-loader: + specifier: ^4.1.1 + version: 4.1.1(webpack@5.82.1) + webpack: + specifier: ^5.74.0 + version: 5.82.1(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) + webpack-bundle-analyzer: + specifier: ^4.9.0 + version: 4.9.0 + webpack-cli: + specifier: ^5.1.4 + version: 5.1.4(webpack-bundle-analyzer@4.9.0)(webpack@5.82.1) packages/notification-center-angular: - specifiers: - '@angular-devkit/build-angular': ~15.2.0 - '@angular/cli': ~15.2.0 - '@angular/common': ~15.2.0 - '@angular/compiler': ~15.2.0 - '@angular/compiler-cli': ~15.2.0 - '@angular/core': ~15.2.0 - '@angular/platform-browser': ~15.2.0 - '@angular/platform-browser-dynamic': ~15.2.0 - '@novu/notification-center': ^0.20.0-alpha.1 - '@types/jasmine': ~4.3.0 - jasmine-core: ~4.6.0 - karma: ~6.4.0 - karma-chrome-launcher: ~3.2.0 - karma-coverage: ~2.2.0 - karma-jasmine: ~5.1.0 - karma-jasmine-html-reporter: ~2.0.0 - ng-packagr: ~15.2.0 - react: ^17.0.1 - react-dom: ^17.0.1 - tslib: ^2.3.0 - typescript: 4.9.5 - zone.js: ~0.12.0 - dependencies: - '@angular/common': 15.2.6_gqtyyqdltpkxhlbpgg44ryhm2q - '@angular/compiler': 15.2.6_@angular+core@15.2.6 - '@angular/core': 15.2.6_rxjs@7.8.1+zone.js@0.12.0 - '@angular/platform-browser': 15.2.6_xspguhg7zqj5ayvnxqasw2epk4 - '@angular/platform-browser-dynamic': 15.2.6_n2pq7ehjjlbnmzq6nreqvmxwky - '@novu/notification-center': link:../notification-center - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - tslib: 2.5.0 - zone.js: 0.12.0 + dependencies: + '@angular/common': + specifier: ~15.2.0 + version: 15.2.6(@angular/core@15.2.6)(rxjs@7.8.1) + '@angular/compiler': + specifier: ~15.2.0 + version: 15.2.6(@angular/core@15.2.6) + '@angular/core': + specifier: ~15.2.0 + version: 15.2.6(rxjs@7.8.1)(zone.js@0.12.0) + '@angular/platform-browser': + specifier: ~15.2.0 + version: 15.2.6(@angular/common@15.2.6)(@angular/core@15.2.6) + '@angular/platform-browser-dynamic': + specifier: ~15.2.0 + version: 15.2.6(@angular/common@15.2.6)(@angular/compiler@15.2.6)(@angular/core@15.2.6)(@angular/platform-browser@15.2.6) + '@novu/notification-center': + specifier: ^0.20.0-alpha.1 + version: link:../notification-center + react: + specifier: ^17.0.1 + version: 17.0.2 + react-dom: + specifier: ^17.0.1 + version: 17.0.2(react@17.0.2) + tslib: + specifier: ^2.3.0 + version: 2.5.0 + zone.js: + specifier: ~0.12.0 + version: 0.12.0 devDependencies: - '@angular-devkit/build-angular': 15.2.5_buram342ib6gvank4wlhqufpxm - '@angular/cli': 15.2.5 - '@angular/compiler-cli': 15.2.6_54xk3mtsepvzoktlwdjj2rm7na - '@types/jasmine': 4.3.1 - jasmine-core: 4.6.0 - karma: 6.4.1 - karma-chrome-launcher: 3.2.0 - karma-coverage: 2.2.0 - karma-jasmine: 5.1.0_karma@6.4.1 - karma-jasmine-html-reporter: 2.0.0_vl3unt3t2otf46m2vvwnwo5vau - ng-packagr: 15.2.2_ahbmumcorrwcj53hbqfxcomynm - typescript: 4.9.5 + '@angular-devkit/build-angular': + specifier: ~15.2.0 + version: 15.2.5(@angular/compiler-cli@15.2.6)(@swc/core@1.3.49)(karma@6.4.1)(ng-packagr@15.2.2)(typescript@4.9.5) + '@angular/cli': + specifier: ~15.2.0 + version: 15.2.5 + '@angular/compiler-cli': + specifier: ~15.2.0 + version: 15.2.6(@angular/compiler@15.2.6)(typescript@4.9.5) + '@types/jasmine': + specifier: ~4.3.0 + version: 4.3.1 + jasmine-core: + specifier: ~4.6.0 + version: 4.6.0 + karma: + specifier: ~6.4.0 + version: 6.4.1 + karma-chrome-launcher: + specifier: ~3.2.0 + version: 3.2.0 + karma-coverage: + specifier: ~2.2.0 + version: 2.2.0 + karma-jasmine: + specifier: ~5.1.0 + version: 5.1.0(karma@6.4.1) + karma-jasmine-html-reporter: + specifier: ~2.0.0 + version: 2.0.0(jasmine-core@4.6.0)(karma-jasmine@5.1.0)(karma@6.4.1) + ng-packagr: + specifier: ~15.2.0 + version: 15.2.2(@angular/compiler-cli@15.2.6)(tslib@2.5.0)(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 packages/notification-center-vue: - specifiers: - '@emotion/css': ^11.10.5 - '@novu/floating-vue': ^2.0.3 - '@novu/notification-center': ^0.20.0-alpha.1 - '@rushstack/eslint-patch': ^1.1.4 - '@types/node': ^18.11.12 - '@vitejs/plugin-vue': ^4.0.0 - '@vitejs/plugin-vue-jsx': ^3.0.0 - '@vue/eslint-config-prettier': ^7.0.0 - '@vue/eslint-config-typescript': ^11.0.0 - '@vue/tsconfig': ^0.1.3 - eslint: ^8.22.0 - eslint-plugin-vue: ^9.3.0 - npm-run-all: ^4.1.5 - prettier: ~2.8.0 - react: ^17.0.1 - react-dom: ^17.0.1 - typescript: 4.9.5 - vite: ^4.4.9 - vue: ^3.2.45 - vue-tsc: ^1.2.0 dependencies: - '@emotion/css': 11.10.6 - '@novu/floating-vue': 2.0.3_vue@3.2.47 - '@novu/notification-center': link:../notification-center - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + '@emotion/css': + specifier: ^11.10.5 + version: 11.10.6 + '@novu/floating-vue': + specifier: ^2.0.3 + version: 2.0.3(vue@3.2.47) + '@novu/notification-center': + specifier: ^0.20.0-alpha.1 + version: link:../notification-center + react: + specifier: ^17.0.1 + version: 17.0.2 + react-dom: + specifier: ^17.0.1 + version: 17.0.2(react@17.0.2) devDependencies: - '@rushstack/eslint-patch': 1.2.0 - '@types/node': 18.15.11 - '@vitejs/plugin-vue': 4.1.0_vite@4.4.9+vue@3.2.47 - '@vitejs/plugin-vue-jsx': 3.0.1_vite@4.4.9+vue@3.2.47 - '@vue/eslint-config-prettier': 7.1.0_7bukkzi2qfqwzn63s5moor2wwy - '@vue/eslint-config-typescript': 11.0.2_wjfky2tccqcyepzc44bwgbyisq - '@vue/tsconfig': 0.1.3_@types+node@18.15.11 - eslint: 8.38.0 - eslint-plugin-vue: 9.10.0_eslint@8.38.0 - npm-run-all: 4.1.5 - prettier: 2.8.7 - typescript: 4.9.5 - vite: 4.4.9_@types+node@18.15.11 - vue: 3.2.47 - vue-tsc: 1.2.0_typescript@4.9.5 + '@rushstack/eslint-patch': + specifier: ^1.1.4 + version: 1.2.0 + '@types/node': + specifier: ^18.11.12 + version: 18.15.11 + '@vitejs/plugin-vue': + specifier: ^4.0.0 + version: 4.1.0(vite@4.4.9)(vue@3.2.47) + '@vitejs/plugin-vue-jsx': + specifier: ^3.0.0 + version: 3.0.1(vite@4.4.9)(vue@3.2.47) + '@vue/eslint-config-prettier': + specifier: ^7.0.0 + version: 7.1.0(eslint@8.38.0)(prettier@2.8.7) + '@vue/eslint-config-typescript': + specifier: ^11.0.0 + version: 11.0.2(eslint-plugin-vue@9.10.0)(eslint@8.38.0)(typescript@4.9.5) + '@vue/tsconfig': + specifier: ^0.1.3 + version: 0.1.3(@types/node@18.15.11) + eslint: + specifier: ^8.22.0 + version: 8.38.0 + eslint-plugin-vue: + specifier: ^9.3.0 + version: 9.10.0(eslint@8.38.0) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + typescript: + specifier: 4.9.5 + version: 4.9.5 + vite: + specifier: ^4.4.9 + version: 4.4.9(@types/node@18.15.11) + vue: + specifier: ^3.2.45 + version: 3.2.47 + vue-tsc: + specifier: ^1.2.0 + version: 1.2.0(typescript@4.9.5) packages/stateless: - specifiers: - '@sendgrid/mail': ^7.4.6 - '@types/jest': 29.5.2 - '@types/lodash.get': ^4.4.6 - '@types/lodash.merge': ^4.6.6 - '@types/node': ^14.6.0 - codecov: ^3.5.0 - handlebars: ^4.7.7 - jest: ^27.0.6 - lodash.get: ^4.4.2 - lodash.merge: ^4.6.2 - npm-run-all: ^4.1.5 - open-cli: ^6.0.1 - rimraf: ^3.0.2 - run-p: 0.0.0 - ts-jest: ^27.0.5 - typedoc: ^0.24.0 - typescript: 4.9.5 dependencies: - handlebars: 4.7.7 - lodash.get: 4.4.2 - lodash.merge: 4.6.2 + handlebars: + specifier: ^4.7.7 + version: 4.7.7 + lodash.get: + specifier: ^4.4.2 + version: 4.4.2 + lodash.merge: + specifier: ^4.6.2 + version: 4.6.2 devDependencies: - '@sendgrid/mail': 7.7.0 - '@types/jest': 29.5.2 - '@types/lodash.get': 4.4.7 - '@types/lodash.merge': 4.6.7 - '@types/node': 14.18.42 - codecov: 3.8.3 - jest: 27.5.1 - npm-run-all: 4.1.5 - open-cli: 6.0.1 - rimraf: 3.0.2 - run-p: 0.0.0 - ts-jest: 27.1.5_jt6hjr4g6reedzkbayzypxjbqa - typedoc: 0.24.6_typescript@4.9.5 - typescript: 4.9.5 + '@sendgrid/mail': + specifier: ^7.4.6 + version: 7.7.0 + '@types/jest': + specifier: 29.5.2 + version: 29.5.2 + '@types/lodash.get': + specifier: ^4.4.6 + version: 4.4.7 + '@types/lodash.merge': + specifier: ^4.6.6 + version: 4.6.7 + '@types/node': + specifier: ^14.6.0 + version: 14.18.42 + codecov: + specifier: ^3.5.0 + version: 3.8.3 + jest: + specifier: ^27.0.6 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + open-cli: + specifier: ^6.0.1 + version: 6.0.1 + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + run-p: + specifier: 0.0.0 + version: 0.0.0 + ts-jest: + specifier: ^27.0.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) + typedoc: + specifier: ^0.24.0 + version: 0.24.6(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 providers/africas-talking: - specifiers: - '@istanbuljs/nyc-config-typescript': ~1.0.1 - '@novu/stateless': ^0.20.0-alpha.1 - '@types/jest': ~29.5.0 - africastalking: ^0.6.2 - cspell: ~6.19.2 - jest: ~27.5.1 - npm-run-all: ^4.1.5 - nyc: ~15.1.0 - prettier: ~2.8.0 - rimraf: ~3.0.2 - ts-jest: ~27.1.5 - ts-node: ~10.9.1 - typescript: 4.9.5 dependencies: - '@novu/stateless': link:../../packages/stateless - africastalking: 0.6.2 + '@novu/stateless': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/stateless + africastalking: + specifier: ^0.6.2 + version: 0.6.2 devDependencies: - '@istanbuljs/nyc-config-typescript': 1.0.2_nyc@15.1.0 - '@types/jest': 29.5.1 - cspell: 6.19.2 - jest: 27.5.1_ts-node@10.9.1 - npm-run-all: 4.1.5 - nyc: 15.1.0 - prettier: 2.8.7 - rimraf: 3.0.2 - ts-jest: 27.1.5_46h2nya7z2u3ruciguirufjle4 - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - typescript: 4.9.5 + '@istanbuljs/nyc-config-typescript': + specifier: ~1.0.1 + version: 1.0.2(nyc@15.1.0) + '@types/jest': + specifier: ~29.5.0 + version: 29.5.1 + cspell: + specifier: ~6.19.2 + version: 6.19.2 + jest: + specifier: ~27.5.1 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + nyc: + specifier: ~15.1.0 + version: 15.1.0 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + rimraf: + specifier: ~3.0.2 + version: 3.0.2 + ts-jest: + specifier: ~27.1.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 providers/apns: - specifiers: - '@istanbuljs/nyc-config-typescript': ^1.0.1 - '@novu/stateless': ^0.20.0-alpha.1 - '@parse/node-apn': ^5.2.3 - '@types/jest': ^29.5.0 - codecov: ^3.5.0 - cspell: ^4.1.0 - gh-pages: ^3.1.0 - jest: ^27.1.0 - npm-run-all: ^4.1.5 - nyc: ^15.1.0 - open-cli: ^6.0.1 - prettier: ~2.8.0 - ts-jest: ^27.0.5 - ts-node: ~10.9.1 - typedoc: ^0.24.0 - typescript: 4.9.5 dependencies: - '@novu/stateless': link:../../packages/stateless - '@parse/node-apn': 5.2.3 + '@novu/stateless': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/stateless + '@parse/node-apn': + specifier: ^5.2.3 + version: 5.2.3 devDependencies: - '@istanbuljs/nyc-config-typescript': 1.0.2_nyc@15.1.0 - '@types/jest': 29.5.1 - codecov: 3.8.3 - cspell: 4.2.8 - gh-pages: 3.2.3 - jest: 27.5.1_ts-node@10.9.1 - npm-run-all: 4.1.5 - nyc: 15.1.0 - open-cli: 6.0.1 - prettier: 2.8.7 - ts-jest: 27.1.5_46h2nya7z2u3ruciguirufjle4 - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - typedoc: 0.24.6_typescript@4.9.5 - typescript: 4.9.5 + '@istanbuljs/nyc-config-typescript': + specifier: ^1.0.1 + version: 1.0.2(nyc@15.1.0) + '@types/jest': + specifier: ^29.5.0 + version: 29.5.1 + codecov: + specifier: ^3.5.0 + version: 3.8.3 + cspell: + specifier: ^4.1.0 + version: 4.2.8 + gh-pages: + specifier: ^3.1.0 + version: 3.2.3 + jest: + specifier: ^27.1.0 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + nyc: + specifier: ^15.1.0 + version: 15.1.0 + open-cli: + specifier: ^6.0.1 + version: 6.0.1 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + ts-jest: + specifier: ^27.0.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + typedoc: + specifier: ^0.24.0 + version: 0.24.6(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 providers/burst-sms: - specifiers: - '@istanbuljs/nyc-config-typescript': ^1.0.1 - '@novu/stateless': ^0.20.0-alpha.1 - '@types/jest': ^29.5.0 - axios: ^1.3.3 - codecov: ^3.5.0 - cspell: ^4.1.0 - gh-pages: ^3.1.0 - jest: ^27.1.0 - npm-run-all: ^4.1.5 - nyc: ^15.1.0 - open-cli: ^6.0.1 - prettier: ~2.8.0 - qs: ^6.11.0 - rimraf: ^3.0.2 - ts-jest: ^27.0.5 - ts-node: ~10.9.1 - typedoc: ^0.24.0 - typescript: 4.9.5 - uuid: ^9.0.0 dependencies: - '@novu/stateless': link:../../packages/stateless - axios: 1.3.5 - qs: 6.11.1 + '@novu/stateless': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/stateless + axios: + specifier: ^1.3.3 + version: 1.3.5 + qs: + specifier: ^6.11.0 + version: 6.11.1 devDependencies: - '@istanbuljs/nyc-config-typescript': 1.0.2_nyc@15.1.0 - '@types/jest': 29.5.1 - codecov: 3.8.3 - cspell: 4.2.8 - gh-pages: 3.2.3 - jest: 27.5.1_ts-node@10.9.1 - npm-run-all: 4.1.5 - nyc: 15.1.0 - open-cli: 6.0.1 - prettier: 2.8.7 - rimraf: 3.0.2 - ts-jest: 27.1.5_46h2nya7z2u3ruciguirufjle4 - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - typedoc: 0.24.6_typescript@4.9.5 - typescript: 4.9.5 - uuid: 9.0.0 + '@istanbuljs/nyc-config-typescript': + specifier: ^1.0.1 + version: 1.0.2(nyc@15.1.0) + '@types/jest': + specifier: ^29.5.0 + version: 29.5.1 + codecov: + specifier: ^3.5.0 + version: 3.8.3 + cspell: + specifier: ^4.1.0 + version: 4.2.8 + gh-pages: + specifier: ^3.1.0 + version: 3.2.3 + jest: + specifier: ^27.1.0 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + nyc: + specifier: ^15.1.0 + version: 15.1.0 + open-cli: + specifier: ^6.0.1 + version: 6.0.1 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + ts-jest: + specifier: ^27.0.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + typedoc: + specifier: ^0.24.0 + version: 0.24.6(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 + uuid: + specifier: ^9.0.0 + version: 9.0.0 providers/clickatell: - specifiers: - '@istanbuljs/nyc-config-typescript': ^1.0.1 - '@novu/stateless': ^0.20.0-alpha.1 - '@types/jest': ^29.5.0 - axios: ^1.3.3 - codecov: ^3.5.0 - cspell: ^4.1.0 - gh-pages: ^3.1.0 - jest: ^27.1.0 - npm-run-all: ^4.1.5 - nyc: ^15.1.0 - open-cli: ^6.0.1 - prettier: ~2.8.0 - ts-jest: ^27.0.5 - ts-node: ~10.9.1 - typedoc: ^0.24.0 - typescript: 4.9.5 dependencies: - '@novu/stateless': link:../../packages/stateless - axios: 1.3.5 + '@novu/stateless': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/stateless + axios: + specifier: ^1.3.3 + version: 1.3.5 devDependencies: - '@istanbuljs/nyc-config-typescript': 1.0.2_nyc@15.1.0 - '@types/jest': 29.5.1 - codecov: 3.8.3 - cspell: 4.2.8 - gh-pages: 3.2.3 - jest: 27.5.1_ts-node@10.9.1 - npm-run-all: 4.1.5 - nyc: 15.1.0 - open-cli: 6.0.1 - prettier: 2.8.7 - ts-jest: 27.1.5_46h2nya7z2u3ruciguirufjle4 - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - typedoc: 0.24.6_typescript@4.9.5 - typescript: 4.9.5 + '@istanbuljs/nyc-config-typescript': + specifier: ^1.0.1 + version: 1.0.2(nyc@15.1.0) + '@types/jest': + specifier: ^29.5.0 + version: 29.5.1 + codecov: + specifier: ^3.5.0 + version: 3.8.3 + cspell: + specifier: ^4.1.0 + version: 4.2.8 + gh-pages: + specifier: ^3.1.0 + version: 3.2.3 + jest: + specifier: ^27.1.0 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + nyc: + specifier: ^15.1.0 + version: 15.1.0 + open-cli: + specifier: ^6.0.1 + version: 6.0.1 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + ts-jest: + specifier: ^27.0.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + typedoc: + specifier: ^0.24.0 + version: 0.24.6(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 providers/clicksend: - specifiers: - '@istanbuljs/nyc-config-typescript': ~1.0.1 - '@novu/stateless': 0.16.3 - '@types/jest': ~27.5.2 - clicksend: ^5.0.37 - cspell: ~6.19.2 - jest: ~27.5.1 - npm-run-all: ^4.1.5 - nyc: ~15.1.0 - prettier: ~2.8.0 - rimraf: ~3.0.2 - ts-jest: ~27.1.5 - ts-node: ~10.9.1 - typescript: 4.9.5 dependencies: - '@novu/stateless': 0.16.3 - clicksend: 5.0.37 + '@novu/stateless': + specifier: 0.16.3 + version: 0.16.3 + clicksend: + specifier: ^5.0.37 + version: 5.0.37 devDependencies: - '@istanbuljs/nyc-config-typescript': 1.0.2_nyc@15.1.0 - '@types/jest': 27.5.2 - cspell: 6.19.2 - jest: 27.5.1_ts-node@10.9.1 - npm-run-all: 4.1.5 - nyc: 15.1.0 - prettier: 2.8.7 - rimraf: 3.0.2 - ts-jest: 27.1.5_tdguimvmawsauzyxxfukpkg77i - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - typescript: 4.9.5 + '@istanbuljs/nyc-config-typescript': + specifier: ~1.0.1 + version: 1.0.2(nyc@15.1.0) + '@types/jest': + specifier: ~27.5.2 + version: 27.5.2 + cspell: + specifier: ~6.19.2 + version: 6.19.2 + jest: + specifier: ~27.5.1 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + nyc: + specifier: ~15.1.0 + version: 15.1.0 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + rimraf: + specifier: ~3.0.2 + version: 3.0.2 + ts-jest: + specifier: ~27.1.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@27.5.2)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 providers/discord: - specifiers: - '@istanbuljs/nyc-config-typescript': ^1.0.1 - '@novu/stateless': ^0.20.0-alpha.1 - '@types/jest': ^29.5.0 - axios: ^1.3.3 - codecov: ^3.5.0 - cspell: ^4.1.0 - gh-pages: ^3.1.0 - jest: ^27.1.0 - npm-run-all: ^4.1.5 - nyc: ^15.1.0 - open-cli: ^6.0.1 - prettier: ~2.8.0 - rimraf: ^3.0.2 - ts-jest: ^27.0.5 - ts-node: ~10.9.1 - typedoc: ^0.24.0 - typescript: 4.9.5 dependencies: - '@novu/stateless': link:../../packages/stateless - axios: 1.3.5 + '@novu/stateless': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/stateless + axios: + specifier: ^1.3.3 + version: 1.3.5 devDependencies: - '@istanbuljs/nyc-config-typescript': 1.0.2_nyc@15.1.0 - '@types/jest': 29.5.1 - codecov: 3.8.3 - cspell: 4.2.8 - gh-pages: 3.2.3 - jest: 27.5.1_ts-node@10.9.1 - npm-run-all: 4.1.5 - nyc: 15.1.0 - open-cli: 6.0.1 - prettier: 2.8.7 - rimraf: 3.0.2 - ts-jest: 27.1.5_46h2nya7z2u3ruciguirufjle4 - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - typedoc: 0.24.6_typescript@4.9.5 - typescript: 4.9.5 + '@istanbuljs/nyc-config-typescript': + specifier: ^1.0.1 + version: 1.0.2(nyc@15.1.0) + '@types/jest': + specifier: ^29.5.0 + version: 29.5.1 + codecov: + specifier: ^3.5.0 + version: 3.8.3 + cspell: + specifier: ^4.1.0 + version: 4.2.8 + gh-pages: + specifier: ^3.1.0 + version: 3.2.3 + jest: + specifier: ^27.1.0 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + nyc: + specifier: ^15.1.0 + version: 15.1.0 + open-cli: + specifier: ^6.0.1 + version: 6.0.1 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + ts-jest: + specifier: ^27.0.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + typedoc: + specifier: ^0.24.0 + version: 0.24.6(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 providers/email-webhook: - specifiers: - '@istanbuljs/nyc-config-typescript': ~1.0.1 - '@novu/stateless': ^0.15.0 - '@types/jest': ~27.5.2 - axios: ^1.3.5 - cspell: ~6.19.2 - jest: ~27.5.1 - npm-run-all: ^4.1.5 - nyc: ~15.1.0 - prettier: ~2.8.0 - rimraf: ~3.0.2 - ts-jest: ~27.1.5 - ts-node: ~10.9.1 - typescript: 4.9.5 dependencies: - '@novu/stateless': 0.15.0 - axios: 1.3.5 + '@novu/stateless': + specifier: ^0.15.0 + version: 0.15.0 + axios: + specifier: ^1.3.5 + version: 1.3.5 devDependencies: - '@istanbuljs/nyc-config-typescript': 1.0.2_nyc@15.1.0 - '@types/jest': 27.5.2 - cspell: 6.19.2 - jest: 27.5.1_ts-node@10.9.1 - npm-run-all: 4.1.5 - nyc: 15.1.0 - prettier: 2.8.7 - rimraf: 3.0.2 - ts-jest: 27.1.5_tdguimvmawsauzyxxfukpkg77i - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - typescript: 4.9.5 + '@istanbuljs/nyc-config-typescript': + specifier: ~1.0.1 + version: 1.0.2(nyc@15.1.0) + '@types/jest': + specifier: ~27.5.2 + version: 27.5.2 + cspell: + specifier: ~6.19.2 + version: 6.19.2 + jest: + specifier: ~27.5.1 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + nyc: + specifier: ~15.1.0 + version: 15.1.0 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + rimraf: + specifier: ~3.0.2 + version: 3.0.2 + ts-jest: + specifier: ~27.1.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@27.5.2)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 providers/emailjs: - specifiers: - '@istanbuljs/nyc-config-typescript': 1.0.2 - '@novu/stateless': ^0.20.0-alpha.1 - '@types/jest': 29.5.2 - codecov: ^3.5.0 - cspell: ^4.1.0 - emailjs: ^3.6.0 - gh-pages: ^3.1.0 - jest: 27.5.1 - npm-run-all: ^4.1.5 - nyc: ^15.1.0 - open-cli: ^6.0.1 - prettier: ~2.8.0 - rimraf: ^3.0.2 - ts-jest: ^27.0.5 - ts-node: ~10.9.1 - typedoc: ^0.24.0 - typescript: 4.9.5 dependencies: - '@novu/stateless': link:../../packages/stateless - emailjs: 3.8.1_typescript@4.9.5 + '@novu/stateless': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/stateless + emailjs: + specifier: ^3.6.0 + version: 3.8.1(typescript@4.9.5) devDependencies: - '@istanbuljs/nyc-config-typescript': 1.0.2_nyc@15.1.0 - '@types/jest': 29.5.2 - codecov: 3.8.3 - cspell: 4.2.8 - gh-pages: 3.2.3 - jest: 27.5.1_ts-node@10.9.1 - npm-run-all: 4.1.5 - nyc: 15.1.0 - open-cli: 6.0.1 - prettier: 2.8.7 - rimraf: 3.0.2 - ts-jest: 27.1.5_jt6hjr4g6reedzkbayzypxjbqa - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - typedoc: 0.24.6_typescript@4.9.5 - typescript: 4.9.5 + '@istanbuljs/nyc-config-typescript': + specifier: 1.0.2 + version: 1.0.2(nyc@15.1.0) + '@types/jest': + specifier: 29.5.2 + version: 29.5.2 + codecov: + specifier: ^3.5.0 + version: 3.8.3 + cspell: + specifier: ^4.1.0 + version: 4.2.8 + gh-pages: + specifier: ^3.1.0 + version: 3.2.3 + jest: + specifier: 27.5.1 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + nyc: + specifier: ^15.1.0 + version: 15.1.0 + open-cli: + specifier: ^6.0.1 + version: 6.0.1 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + ts-jest: + specifier: ^27.0.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + typedoc: + specifier: ^0.24.0 + version: 0.24.6(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 providers/expo: - specifiers: - '@istanbuljs/nyc-config-typescript': ^1.0.1 - '@novu/stateless': ^0.20.0-alpha.1 - '@types/jest': ^29.5.0 - codecov: ^3.5.0 - cspell: ^4.1.0 - expo-server-sdk: ^3.6.0 - gh-pages: ^3.1.0 - jest: ^27.1.0 - npm-run-all: ^4.1.5 - nyc: ^15.1.0 - open-cli: ^6.0.1 - prettier: ~2.8.0 - rimraf: ^3.0.2 - ts-jest: ^27.0.5 - ts-node: ~10.9.1 - typedoc: ^0.24.0 - typescript: 4.9.5 dependencies: - '@novu/stateless': link:../../packages/stateless - expo-server-sdk: 3.7.0 + '@novu/stateless': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/stateless + expo-server-sdk: + specifier: ^3.6.0 + version: 3.7.0 devDependencies: - '@istanbuljs/nyc-config-typescript': 1.0.2_nyc@15.1.0 - '@types/jest': 29.5.1 - codecov: 3.8.3 - cspell: 4.2.8 - gh-pages: 3.2.3 - jest: 27.5.1_ts-node@10.9.1 - npm-run-all: 4.1.5 - nyc: 15.1.0 - open-cli: 6.0.1 - prettier: 2.8.7 - rimraf: 3.0.2 - ts-jest: 27.1.5_46h2nya7z2u3ruciguirufjle4 - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - typedoc: 0.24.6_typescript@4.9.5 - typescript: 4.9.5 + '@istanbuljs/nyc-config-typescript': + specifier: ^1.0.1 + version: 1.0.2(nyc@15.1.0) + '@types/jest': + specifier: ^29.5.0 + version: 29.5.1 + codecov: + specifier: ^3.5.0 + version: 3.8.3 + cspell: + specifier: ^4.1.0 + version: 4.2.8 + gh-pages: + specifier: ^3.1.0 + version: 3.2.3 + jest: + specifier: ^27.1.0 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + nyc: + specifier: ^15.1.0 + version: 15.1.0 + open-cli: + specifier: ^6.0.1 + version: 6.0.1 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + ts-jest: + specifier: ^27.0.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + typedoc: + specifier: ^0.24.0 + version: 0.24.6(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 providers/fcm: - specifiers: - '@istanbuljs/nyc-config-typescript': ^1.0.1 - '@novu/stateless': ^0.20.0-alpha.1 - '@types/jest': ^29.5.0 - '@types/mocha': ^8.0.1 - codecov: ^3.5.0 - cspell: ^4.1.0 - eslint: 7.32.0 - firebase-admin: ^11.10.1 - gh-pages: ^3.1.0 - jest: ^27.1.0 - jest-node-exports-resolver: ^1.1.6 - npm-run-all: ^4.1.5 - nyc: ^15.1.0 - open-cli: ^6.0.1 - prettier: ~2.8.0 - rimraf: ^3.0.2 - ts-jest: ^27.0.5 - ts-node: ~10.9.1 - typedoc: ^0.24.0 - typescript: 4.9.5 dependencies: - '@novu/stateless': link:../../packages/stateless - firebase-admin: 11.10.1 + '@novu/stateless': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/stateless + firebase-admin: + specifier: ^11.10.1 + version: 11.10.1 devDependencies: - '@istanbuljs/nyc-config-typescript': 1.0.2_nyc@15.1.0 - '@types/jest': 29.5.1 - '@types/mocha': 8.2.3 - codecov: 3.8.3 - cspell: 4.2.8 - eslint: 7.32.0 - gh-pages: 3.2.3 - jest: 27.5.1_ts-node@10.9.1 - jest-node-exports-resolver: 1.1.6 - npm-run-all: 4.1.5 - nyc: 15.1.0 - open-cli: 6.0.1 - prettier: 2.8.7 - rimraf: 3.0.2 - ts-jest: 27.1.5_46h2nya7z2u3ruciguirufjle4 - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - typedoc: 0.24.6_typescript@4.9.5 - typescript: 4.9.5 + '@istanbuljs/nyc-config-typescript': + specifier: ^1.0.1 + version: 1.0.2(nyc@15.1.0) + '@types/jest': + specifier: ^29.5.0 + version: 29.5.1 + '@types/mocha': + specifier: ^8.0.1 + version: 8.2.3 + codecov: + specifier: ^3.5.0 + version: 3.8.3 + cspell: + specifier: ^4.1.0 + version: 4.2.8 + eslint: + specifier: 7.32.0 + version: 7.32.0 + gh-pages: + specifier: ^3.1.0 + version: 3.2.3 + jest: + specifier: ^27.1.0 + version: 27.5.1(ts-node@10.9.1) + jest-node-exports-resolver: + specifier: ^1.1.6 + version: 1.1.6 + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + nyc: + specifier: ^15.1.0 + version: 15.1.0 + open-cli: + specifier: ^6.0.1 + version: 6.0.1 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + ts-jest: + specifier: ^27.0.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + typedoc: + specifier: ^0.24.0 + version: 0.24.6(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 providers/firetext: - specifiers: - '@babel/preset-env': ^7.13.15 - '@istanbuljs/nyc-config-typescript': ^1.0.1 - '@novu/stateless': ^0.20.0-alpha.1 - '@types/jest': ^29.5.0 - '@types/uuid': ^8.3.4 - codecov: ^3.5.0 - cspell: ^4.1.0 - fetch-mock: ^9.11.0 - gh-pages: ^3.1.0 - jest: ^27.1.0 - node-fetch: ^3.2.10 - npm-run-all: ^4.1.5 - nyc: ^15.1.0 - open-cli: ^6.0.1 - prettier: ~2.8.0 - rimraf: ^3.0.2 - ts-jest: ^27.0.5 - ts-node: ~10.9.1 - typedoc: ^0.24.0 - typescript: 4.9.5 dependencies: - '@novu/stateless': link:../../packages/stateless - node-fetch: 3.3.1 + '@novu/stateless': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/stateless + node-fetch: + specifier: ^3.2.10 + version: 3.3.1 devDependencies: - '@babel/preset-env': 7.21.4_@babel+core@7.22.11 - '@istanbuljs/nyc-config-typescript': 1.0.2_nyc@15.1.0 - '@types/jest': 29.5.1 - '@types/uuid': 8.3.4 - codecov: 3.8.3 - cspell: 4.2.8 - fetch-mock: 9.11.0_node-fetch@3.3.1 - gh-pages: 3.2.3 - jest: 27.5.1_ts-node@10.9.1 - npm-run-all: 4.1.5 - nyc: 15.1.0 - open-cli: 6.0.1 - prettier: 2.8.7 - rimraf: 3.0.2 - ts-jest: 27.1.5_46h2nya7z2u3ruciguirufjle4 - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - typedoc: 0.24.6_typescript@4.9.5 - typescript: 4.9.5 + '@babel/preset-env': + specifier: ^7.13.15 + version: 7.21.4(@babel/core@7.22.11) + '@istanbuljs/nyc-config-typescript': + specifier: ^1.0.1 + version: 1.0.2(nyc@15.1.0) + '@types/jest': + specifier: ^29.5.0 + version: 29.5.1 + '@types/uuid': + specifier: ^8.3.4 + version: 8.3.4 + codecov: + specifier: ^3.5.0 + version: 3.8.3 + cspell: + specifier: ^4.1.0 + version: 4.2.8 + fetch-mock: + specifier: ^9.11.0 + version: 9.11.0(node-fetch@3.3.1) + gh-pages: + specifier: ^3.1.0 + version: 3.2.3 + jest: + specifier: ^27.1.0 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + nyc: + specifier: ^15.1.0 + version: 15.1.0 + open-cli: + specifier: ^6.0.1 + version: 6.0.1 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + ts-jest: + specifier: ^27.0.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + typedoc: + specifier: ^0.24.0 + version: 0.24.6(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 providers/forty-six-elks: - specifiers: - '@istanbuljs/nyc-config-typescript': ~1.0.1 - '@novu/stateless': ^0.20.0-alpha.1 - '@types/jest': ~29.5.0 - axios: ^1.3.4 - cspell: ~6.19.2 - jest: ~27.5.1 - npm-run-all: ^4.1.5 - nyc: ~15.1.0 - prettier: ~2.8.0 - rimraf: ~3.0.2 - ts-jest: ~27.1.5 - ts-node: ~10.9.1 - typescript: 4.9.5 dependencies: - '@novu/stateless': link:../../packages/stateless - axios: 1.3.5 + '@novu/stateless': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/stateless + axios: + specifier: ^1.3.4 + version: 1.3.5 devDependencies: - '@istanbuljs/nyc-config-typescript': 1.0.2_nyc@15.1.0 - '@types/jest': 29.5.1 - cspell: 6.19.2 - jest: 27.5.1_ts-node@10.9.1 - npm-run-all: 4.1.5 - nyc: 15.1.0 - prettier: 2.8.7 - rimraf: 3.0.2 - ts-jest: 27.1.5_46h2nya7z2u3ruciguirufjle4 - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - typescript: 4.9.5 + '@istanbuljs/nyc-config-typescript': + specifier: ~1.0.1 + version: 1.0.2(nyc@15.1.0) + '@types/jest': + specifier: ~29.5.0 + version: 29.5.1 + cspell: + specifier: ~6.19.2 + version: 6.19.2 + jest: + specifier: ~27.5.1 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + nyc: + specifier: ~15.1.0 + version: 15.1.0 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + rimraf: + specifier: ~3.0.2 + version: 3.0.2 + ts-jest: + specifier: ~27.1.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 providers/gupshup: - specifiers: - '@babel/preset-env': ^7.13.15 - '@istanbuljs/nyc-config-typescript': ^1.0.1 - '@novu/stateless': ^0.20.0-alpha.1 - '@types/jest': ^29.5.0 - codecov: ^3.5.0 - cspell: ^4.1.0 - gh-pages: ^3.1.0 - jest: ^27.1.0 - node-fetch: ^3.2.10 - npm-run-all: ^4.1.5 - nyc: ^15.1.0 - open-cli: ^6.0.1 - prettier: ~2.8.0 - rimraf: ^3.0.2 - ts-jest: ^27.0.5 - ts-node: ~10.9.1 - typedoc: ^0.24.0 - typescript: 4.9.5 dependencies: - '@novu/stateless': link:../../packages/stateless - node-fetch: 3.3.1 + '@novu/stateless': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/stateless + node-fetch: + specifier: ^3.2.10 + version: 3.3.1 devDependencies: - '@babel/preset-env': 7.21.4_@babel+core@7.22.11 - '@istanbuljs/nyc-config-typescript': 1.0.2_nyc@15.1.0 - '@types/jest': 29.5.1 - codecov: 3.8.3 - cspell: 4.2.8 - gh-pages: 3.2.3 - jest: 27.5.1_ts-node@10.9.1 - npm-run-all: 4.1.5 - nyc: 15.1.0 - open-cli: 6.0.1 - prettier: 2.8.7 - rimraf: 3.0.2 - ts-jest: 27.1.5_46h2nya7z2u3ruciguirufjle4 - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - typedoc: 0.24.6_typescript@4.9.5 - typescript: 4.9.5 + '@babel/preset-env': + specifier: ^7.13.15 + version: 7.21.4(@babel/core@7.22.11) + '@istanbuljs/nyc-config-typescript': + specifier: ^1.0.1 + version: 1.0.2(nyc@15.1.0) + '@types/jest': + specifier: ^29.5.0 + version: 29.5.1 + codecov: + specifier: ^3.5.0 + version: 3.8.3 + cspell: + specifier: ^4.1.0 + version: 4.2.8 + gh-pages: + specifier: ^3.1.0 + version: 3.2.3 + jest: + specifier: ^27.1.0 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + nyc: + specifier: ^15.1.0 + version: 15.1.0 + open-cli: + specifier: ^6.0.1 + version: 6.0.1 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + ts-jest: + specifier: ^27.0.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + typedoc: + specifier: ^0.24.0 + version: 0.24.6(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 providers/infobip: - specifiers: - '@infobip-api/sdk': ^0.2.0 - '@istanbuljs/nyc-config-typescript': ^1.0.1 - '@novu/stateless': ^0.20.0-alpha.1 - '@types/jest': ^29.5.0 - codecov: ^3.5.0 - cspell: ^4.1.0 - gh-pages: ^3.1.0 - jest: ^27.1.0 - npm-run-all: ^4.1.5 - nyc: ^15.1.0 - open-cli: ^6.0.1 - prettier: ~2.8.0 - rimraf: ^3.0.2 - ts-jest: ^27.0.5 - ts-node: ~10.9.1 - typedoc: ^0.24.0 - typescript: 4.9.5 dependencies: - '@infobip-api/sdk': 0.2.0 - '@novu/stateless': link:../../packages/stateless + '@infobip-api/sdk': + specifier: ^0.2.0 + version: 0.2.0 + '@novu/stateless': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/stateless devDependencies: - '@istanbuljs/nyc-config-typescript': 1.0.2_nyc@15.1.0 - '@types/jest': 29.5.1 - codecov: 3.8.3 - cspell: 4.2.8 - gh-pages: 3.2.3 - jest: 27.5.1_ts-node@10.9.1 - npm-run-all: 4.1.5 - nyc: 15.1.0 - open-cli: 6.0.1 - prettier: 2.8.7 - rimraf: 3.0.2 - ts-jest: 27.1.5_46h2nya7z2u3ruciguirufjle4 - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - typedoc: 0.24.6_typescript@4.9.5 - typescript: 4.9.5 + '@istanbuljs/nyc-config-typescript': + specifier: ^1.0.1 + version: 1.0.2(nyc@15.1.0) + '@types/jest': + specifier: ^29.5.0 + version: 29.5.1 + codecov: + specifier: ^3.5.0 + version: 3.8.3 + cspell: + specifier: ^4.1.0 + version: 4.2.8 + gh-pages: + specifier: ^3.1.0 + version: 3.2.3 + jest: + specifier: ^27.1.0 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + nyc: + specifier: ^15.1.0 + version: 15.1.0 + open-cli: + specifier: ^6.0.1 + version: 6.0.1 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + ts-jest: + specifier: ^27.0.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + typedoc: + specifier: ^0.24.0 + version: 0.24.6(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 providers/kannel: - specifiers: - '@istanbuljs/nyc-config-typescript': ^1.0.1 - '@novu/stateless': ^0.20.0-alpha.1 - '@types/jest': ^29.5.0 - axios: ^0.27.2 - codecov: ^3.5.0 - cspell: ^4.1.0 - gh-pages: ^3.1.0 - jest: ^27.1.0 - npm-run-all: ^4.1.5 - nyc: ^15.1.0 - open-cli: ^6.0.1 - prettier: ~2.8.0 - rimraf: ^3.0.2 - ts-jest: ^27.0.5 - ts-node: ~10.9.1 - typedoc: ^0.24.0 - typescript: 4.9.5 dependencies: - '@novu/stateless': link:../../packages/stateless - axios: 0.27.2 + '@novu/stateless': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/stateless + axios: + specifier: ^0.27.2 + version: 0.27.2 devDependencies: - '@istanbuljs/nyc-config-typescript': 1.0.2_nyc@15.1.0 - '@types/jest': 29.5.1 - codecov: 3.8.3 - cspell: 4.2.8 - gh-pages: 3.2.3 - jest: 27.5.1_ts-node@10.9.1 - npm-run-all: 4.1.5 - nyc: 15.1.0 - open-cli: 6.0.1 - prettier: 2.8.7 - rimraf: 3.0.2 - ts-jest: 27.1.5_46h2nya7z2u3ruciguirufjle4 - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - typedoc: 0.24.6_typescript@4.9.5 - typescript: 4.9.5 + '@istanbuljs/nyc-config-typescript': + specifier: ^1.0.1 + version: 1.0.2(nyc@15.1.0) + '@types/jest': + specifier: ^29.5.0 + version: 29.5.1 + codecov: + specifier: ^3.5.0 + version: 3.8.3 + cspell: + specifier: ^4.1.0 + version: 4.2.8 + gh-pages: + specifier: ^3.1.0 + version: 3.2.3 + jest: + specifier: ^27.1.0 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + nyc: + specifier: ^15.1.0 + version: 15.1.0 + open-cli: + specifier: ^6.0.1 + version: 6.0.1 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + ts-jest: + specifier: ^27.0.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + typedoc: + specifier: ^0.24.0 + version: 0.24.6(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 providers/mailersend: - specifiers: - '@istanbuljs/nyc-config-typescript': ^1.0.1 - '@novu/stateless': ^0.20.0-alpha.1 - '@types/jest': ^29.5.0 - codecov: ^3.5.0 - cspell: ^4.1.0 - gh-pages: ^3.1.0 - jest: ^27.1.0 - mailersend: ^1.3.1 - npm-run-all: ^4.1.5 - nyc: ^15.1.0 - open-cli: ^6.0.1 - prettier: ~2.8.0 - rimraf: ^3.0.2 - ts-jest: ^27.0.5 - ts-node: ~10.9.1 - typedoc: ^0.24.0 - typescript: 4.9.5 dependencies: - '@novu/stateless': link:../../packages/stateless - mailersend: 1.4.6 + '@novu/stateless': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/stateless + mailersend: + specifier: ^1.3.1 + version: 1.4.6 devDependencies: - '@istanbuljs/nyc-config-typescript': 1.0.2_nyc@15.1.0 - '@types/jest': 29.5.1 - codecov: 3.8.3 - cspell: 4.2.8 - gh-pages: 3.2.3 - jest: 27.5.1_ts-node@10.9.1 - npm-run-all: 4.1.5 - nyc: 15.1.0 - open-cli: 6.0.1 - prettier: 2.8.7 - rimraf: 3.0.2 - ts-jest: 27.1.5_46h2nya7z2u3ruciguirufjle4 - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - typedoc: 0.24.6_typescript@4.9.5 - typescript: 4.9.5 + '@istanbuljs/nyc-config-typescript': + specifier: ^1.0.1 + version: 1.0.2(nyc@15.1.0) + '@types/jest': + specifier: ^29.5.0 + version: 29.5.1 + codecov: + specifier: ^3.5.0 + version: 3.8.3 + cspell: + specifier: ^4.1.0 + version: 4.2.8 + gh-pages: + specifier: ^3.1.0 + version: 3.2.3 + jest: + specifier: ^27.1.0 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + nyc: + specifier: ^15.1.0 + version: 15.1.0 + open-cli: + specifier: ^6.0.1 + version: 6.0.1 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + ts-jest: + specifier: ^27.0.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + typedoc: + specifier: ^0.24.0 + version: 0.24.6(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 providers/mailgun: - specifiers: - '@istanbuljs/nyc-config-typescript': 1.0.2 - '@novu/stateless': ^0.20.0-alpha.1 - '@types/jest': 29.5.2 - codecov: ^3.5.0 - cspell: ^4.1.0 - form-data: ^4.0.0 - gh-pages: ^3.1.0 - jest: 27.5.1 - mailgun.js: ^8.0.1 - nock: ^13.1.3 - npm-run-all: ^4.1.5 - nyc: ^15.1.0 - open-cli: ^6.0.1 - prettier: ~2.8.0 - rimraf: ^3.0.2 - ts-jest: ^27.0.5 - ts-node: ~10.9.1 - typedoc: ^0.24.0 - typescript: 4.9.5 dependencies: - '@novu/stateless': link:../../packages/stateless - form-data: 4.0.0 - mailgun.js: 8.2.1 - nock: 13.3.0 + '@novu/stateless': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/stateless + form-data: + specifier: ^4.0.0 + version: 4.0.0 + mailgun.js: + specifier: ^8.0.1 + version: 8.2.1 + nock: + specifier: ^13.1.3 + version: 13.3.0 devDependencies: - '@istanbuljs/nyc-config-typescript': 1.0.2_nyc@15.1.0 - '@types/jest': 29.5.2 - codecov: 3.8.3 - cspell: 4.2.8 - gh-pages: 3.2.3 - jest: 27.5.1_ts-node@10.9.1 - npm-run-all: 4.1.5 - nyc: 15.1.0 - open-cli: 6.0.1 - prettier: 2.8.7 - rimraf: 3.0.2 - ts-jest: 27.1.5_jt6hjr4g6reedzkbayzypxjbqa - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - typedoc: 0.24.6_typescript@4.9.5 - typescript: 4.9.5 + '@istanbuljs/nyc-config-typescript': + specifier: 1.0.2 + version: 1.0.2(nyc@15.1.0) + '@types/jest': + specifier: 29.5.2 + version: 29.5.2 + codecov: + specifier: ^3.5.0 + version: 3.8.3 + cspell: + specifier: ^4.1.0 + version: 4.2.8 + gh-pages: + specifier: ^3.1.0 + version: 3.2.3 + jest: + specifier: 27.5.1 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + nyc: + specifier: ^15.1.0 + version: 15.1.0 + open-cli: + specifier: ^6.0.1 + version: 6.0.1 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + ts-jest: + specifier: ^27.0.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + typedoc: + specifier: ^0.24.0 + version: 0.24.6(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 providers/mailjet: - specifiers: - '@istanbuljs/nyc-config-typescript': ^1.0.1 - '@novu/stateless': ^0.20.0-alpha.1 - '@types/jest': 29.5.2 - '@types/node-mailjet': ^3.3.7 - codecov: ^3.5.0 - cspell: ^4.1.0 - gh-pages: ^3.1.0 - jest: ^27.1.0 - node-mailjet: ^6.0.4 - npm-run-all: ^4.1.5 - nyc: ^15.1.0 - open-cli: ^6.0.1 - prettier: ~2.8.0 - rimraf: ^3.0.2 - ts-jest: ^27.0.5 - ts-node: ~10.9.1 - typedoc: ^0.24.0 - typescript: 4.9.5 dependencies: - '@novu/stateless': link:../../packages/stateless - node-mailjet: 6.0.4 + '@novu/stateless': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/stateless + node-mailjet: + specifier: ^6.0.4 + version: 6.0.4 devDependencies: - '@istanbuljs/nyc-config-typescript': 1.0.2_nyc@15.1.0 - '@types/jest': 29.5.2 - '@types/node-mailjet': 3.3.9 - codecov: 3.8.3 - cspell: 4.2.8 - gh-pages: 3.2.3 - jest: 27.5.1_ts-node@10.9.1 - npm-run-all: 4.1.5 - nyc: 15.1.0 - open-cli: 6.0.1 - prettier: 2.8.7 - rimraf: 3.0.2 - ts-jest: 27.1.5_jt6hjr4g6reedzkbayzypxjbqa - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - typedoc: 0.24.6_typescript@4.9.5 - typescript: 4.9.5 + '@istanbuljs/nyc-config-typescript': + specifier: ^1.0.1 + version: 1.0.2(nyc@15.1.0) + '@types/jest': + specifier: 29.5.2 + version: 29.5.2 + '@types/node-mailjet': + specifier: ^3.3.7 + version: 3.3.9 + codecov: + specifier: ^3.5.0 + version: 3.8.3 + cspell: + specifier: ^4.1.0 + version: 4.2.8 + gh-pages: + specifier: ^3.1.0 + version: 3.2.3 + jest: + specifier: ^27.1.0 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + nyc: + specifier: ^15.1.0 + version: 15.1.0 + open-cli: + specifier: ^6.0.1 + version: 6.0.1 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + ts-jest: + specifier: ^27.0.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + typedoc: + specifier: ^0.24.0 + version: 0.24.6(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 providers/mailtrap: - specifiers: - '@istanbuljs/nyc-config-typescript': ~1.0.1 - '@novu/stateless': ^0.20.0-alpha.1 - '@types/jest': ~27.5.2 - cspell: ~6.19.2 - jest: ~27.5.1 - mailtrap: ^3.1.1 - npm-run-all: ^4.1.5 - nyc: ~15.1.0 - prettier: ~2.8.0 - rimraf: ~3.0.2 - ts-jest: ~27.1.5 - ts-node: ~10.9.1 - typescript: 4.9.5 dependencies: - '@novu/stateless': link:../../packages/stateless - mailtrap: 3.2.0 + '@novu/stateless': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/stateless + mailtrap: + specifier: ^3.1.1 + version: 3.2.0 devDependencies: - '@istanbuljs/nyc-config-typescript': 1.0.2_nyc@15.1.0 - '@types/jest': 27.5.2 - cspell: 6.19.2 - jest: 27.5.1_ts-node@10.9.1 - npm-run-all: 4.1.5 - nyc: 15.1.0 - prettier: 2.8.7 - rimraf: 3.0.2 - ts-jest: 27.1.5_tdguimvmawsauzyxxfukpkg77i - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - typescript: 4.9.5 + '@istanbuljs/nyc-config-typescript': + specifier: ~1.0.1 + version: 1.0.2(nyc@15.1.0) + '@types/jest': + specifier: ~27.5.2 + version: 27.5.2 + cspell: + specifier: ~6.19.2 + version: 6.19.2 + jest: + specifier: ~27.5.1 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + nyc: + specifier: ~15.1.0 + version: 15.1.0 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + rimraf: + specifier: ~3.0.2 + version: 3.0.2 + ts-jest: + specifier: ~27.1.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@27.5.2)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 providers/mandrill: - specifiers: - '@istanbuljs/nyc-config-typescript': 1.0.2 - '@mailchimp/mailchimp_transactional': ^1.0.46 - '@novu/stateless': ^0.20.0-alpha.1 - '@types/jest': 29.5.2 - codecov: ^3.5.0 - cspell: ^4.1.0 - eslint: ^8.16.0 - eslint-plugin-eslint-comments: ^3.2.0 - gh-pages: ^3.1.0 - jest: 27.5.1 - npm-run-all: ^4.1.5 - nyc: ^15.1.0 - open-cli: ^6.0.1 - prettier: ~2.8.0 - rimraf: ^3.0.2 - ts-jest: ^27.0.5 - ts-node: ~10.9.1 - typedoc: ^0.24.0 - typescript: 4.9.5 dependencies: - '@mailchimp/mailchimp_transactional': 1.0.50 - '@novu/stateless': link:../../packages/stateless + '@mailchimp/mailchimp_transactional': + specifier: ^1.0.46 + version: 1.0.50 + '@novu/stateless': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/stateless devDependencies: - '@istanbuljs/nyc-config-typescript': 1.0.2_nyc@15.1.0 - '@types/jest': 29.5.2 - codecov: 3.8.3 - cspell: 4.2.8 - eslint: 8.38.0 - eslint-plugin-eslint-comments: 3.2.0_eslint@8.38.0 - gh-pages: 3.2.3 - jest: 27.5.1_ts-node@10.9.1 - npm-run-all: 4.1.5 - nyc: 15.1.0 - open-cli: 6.0.1 - prettier: 2.8.7 - rimraf: 3.0.2 - ts-jest: 27.1.5_jt6hjr4g6reedzkbayzypxjbqa - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - typedoc: 0.24.6_typescript@4.9.5 - typescript: 4.9.5 + '@istanbuljs/nyc-config-typescript': + specifier: 1.0.2 + version: 1.0.2(nyc@15.1.0) + '@types/jest': + specifier: 29.5.2 + version: 29.5.2 + codecov: + specifier: ^3.5.0 + version: 3.8.3 + cspell: + specifier: ^4.1.0 + version: 4.2.8 + eslint: + specifier: ^8.16.0 + version: 8.38.0 + eslint-plugin-eslint-comments: + specifier: ^3.2.0 + version: 3.2.0(eslint@8.38.0) + gh-pages: + specifier: ^3.1.0 + version: 3.2.3 + jest: + specifier: 27.5.1 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + nyc: + specifier: ^15.1.0 + version: 15.1.0 + open-cli: + specifier: ^6.0.1 + version: 6.0.1 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + ts-jest: + specifier: ^27.0.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + typedoc: + specifier: ^0.24.0 + version: 0.24.6(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 providers/maqsam: - specifiers: - '@istanbuljs/nyc-config-typescript': ~1.0.1 - '@novu/stateless': ^0.20.0-alpha.1 - '@types/jest': ~29.5.0 - axios: ^1.3.4 - cspell: ~6.19.2 - date-fns: 2.29.3 - jest: ~27.5.1 - moment: ^2.29.4 - npm-run-all: ^4.1.5 - nyc: ~15.1.0 - prettier: ~2.8.0 - rimraf: ~3.0.2 - ts-jest: ~27.1.5 - ts-node: ~10.9.1 - typescript: 4.9.5 dependencies: - '@novu/stateless': link:../../packages/stateless - axios: 1.3.5 - date-fns: 2.29.3 - moment: 2.29.4 + '@novu/stateless': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/stateless + axios: + specifier: ^1.3.4 + version: 1.3.5 + date-fns: + specifier: 2.29.3 + version: 2.29.3 + moment: + specifier: ^2.29.4 + version: 2.29.4 devDependencies: - '@istanbuljs/nyc-config-typescript': 1.0.2_nyc@15.1.0 - '@types/jest': 29.5.1 - cspell: 6.19.2 - jest: 27.5.1_ts-node@10.9.1 - npm-run-all: 4.1.5 - nyc: 15.1.0 - prettier: 2.8.7 - rimraf: 3.0.2 - ts-jest: 27.1.5_46h2nya7z2u3ruciguirufjle4 - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - typescript: 4.9.5 + '@istanbuljs/nyc-config-typescript': + specifier: ~1.0.1 + version: 1.0.2(nyc@15.1.0) + '@types/jest': + specifier: ~29.5.0 + version: 29.5.1 + cspell: + specifier: ~6.19.2 + version: 6.19.2 + jest: + specifier: ~27.5.1 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + nyc: + specifier: ~15.1.0 + version: 15.1.0 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + rimraf: + specifier: ~3.0.2 + version: 3.0.2 + ts-jest: + specifier: ~27.1.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 providers/mattermost: - specifiers: - '@istanbuljs/nyc-config-typescript': ~1.0.1 - '@novu/stateless': ^0.20.0-alpha.1 - '@types/jest': ~29.5.0 - axios: ^1.3.3 - cspell: ~6.19.2 - jest: ~27.5.1 - npm-run-all: ^4.1.5 - nyc: ~15.1.0 - prettier: ~2.8.0 - rimraf: ~3.0.2 - ts-jest: ~27.1.5 - ts-node: ~10.9.1 - typescript: 4.9.5 dependencies: - '@novu/stateless': link:../../packages/stateless - axios: 1.3.5 + '@novu/stateless': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/stateless + axios: + specifier: ^1.3.3 + version: 1.3.5 devDependencies: - '@istanbuljs/nyc-config-typescript': 1.0.2_nyc@15.1.0 - '@types/jest': 29.5.1 - cspell: 6.19.2 - jest: 27.5.1_ts-node@10.9.1 - npm-run-all: 4.1.5 - nyc: 15.1.0 - prettier: 2.8.7 - rimraf: 3.0.2 - ts-jest: 27.1.5_46h2nya7z2u3ruciguirufjle4 - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - typescript: 4.9.5 + '@istanbuljs/nyc-config-typescript': + specifier: ~1.0.1 + version: 1.0.2(nyc@15.1.0) + '@types/jest': + specifier: ~29.5.0 + version: 29.5.1 + cspell: + specifier: ~6.19.2 + version: 6.19.2 + jest: + specifier: ~27.5.1 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + nyc: + specifier: ~15.1.0 + version: 15.1.0 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + rimraf: + specifier: ~3.0.2 + version: 3.0.2 + ts-jest: + specifier: ~27.1.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 providers/ms-teams: - specifiers: - '@istanbuljs/nyc-config-typescript': ^1.0.1 - '@novu/stateless': ^0.7.2 - '@types/jest': ^29.5.0 - axios: ^1.3.3 - codecov: ^3.5.0 - cspell: ^4.1.0 - gh-pages: ^3.1.0 - jest: ^27.1.0 - npm-run-all: ^4.1.5 - nyc: ^15.1.0 - open-cli: ^6.0.1 - prettier: ~2.8.0 - rimraf: ^3.0.2 - ts-jest: ^27.0.5 - ts-node: ~10.9.1 - typedoc: ^0.24.0 - typescript: 4.9.5 - uuid: ^9.0.0 dependencies: - '@novu/stateless': 0.7.2 - axios: 1.3.5 + '@novu/stateless': + specifier: ^0.7.2 + version: 0.7.2 + axios: + specifier: ^1.3.3 + version: 1.3.5 devDependencies: - '@istanbuljs/nyc-config-typescript': 1.0.2_nyc@15.1.0 - '@types/jest': 29.5.1 - codecov: 3.8.3 - cspell: 4.2.8 - gh-pages: 3.2.3 - jest: 27.5.1_ts-node@10.9.1 - npm-run-all: 4.1.5 - nyc: 15.1.0 - open-cli: 6.0.1 - prettier: 2.8.7 - rimraf: 3.0.2 - ts-jest: 27.1.5_46h2nya7z2u3ruciguirufjle4 - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - typedoc: 0.24.6_typescript@4.9.5 - typescript: 4.9.5 - uuid: 9.0.0 + '@istanbuljs/nyc-config-typescript': + specifier: ^1.0.1 + version: 1.0.2(nyc@15.1.0) + '@types/jest': + specifier: ^29.5.0 + version: 29.5.1 + codecov: + specifier: ^3.5.0 + version: 3.8.3 + cspell: + specifier: ^4.1.0 + version: 4.2.8 + gh-pages: + specifier: ^3.1.0 + version: 3.2.3 + jest: + specifier: ^27.1.0 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + nyc: + specifier: ^15.1.0 + version: 15.1.0 + open-cli: + specifier: ^6.0.1 + version: 6.0.1 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + ts-jest: + specifier: ^27.0.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + typedoc: + specifier: ^0.24.0 + version: 0.24.6(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 + uuid: + specifier: ^9.0.0 + version: 9.0.0 providers/netcore: - specifiers: - '@istanbuljs/nyc-config-typescript': 1.0.2 - '@novu/stateless': ^0.20.0-alpha.1 - '@types/jest': 29.5.2 - codecov: ^3.5.0 - cspell: ^4.1.0 - gh-pages: ^3.1.0 - jest: 27.5.1 - npm-run-all: ^4.1.5 - nyc: ^15.1.0 - open-cli: ^6.0.1 - pepipost: ^5.0.0 - prettier: ~2.8.0 - rimraf: ^3.0.2 - ts-jest: ^27.0.7 - ts-node: ~10.9.1 - typedoc: ^0.24.0 - typescript: 4.9.5 dependencies: - '@novu/stateless': link:../../packages/stateless - pepipost: 5.0.0 + '@novu/stateless': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/stateless + pepipost: + specifier: ^5.0.0 + version: 5.0.0 devDependencies: - '@istanbuljs/nyc-config-typescript': 1.0.2_nyc@15.1.0 - '@types/jest': 29.5.2 - codecov: 3.8.3 - cspell: 4.2.8 - gh-pages: 3.2.3 - jest: 27.5.1_ts-node@10.9.1 - npm-run-all: 4.1.5 - nyc: 15.1.0 - open-cli: 6.0.1 - prettier: 2.8.7 - rimraf: 3.0.2 - ts-jest: 27.1.5_jt6hjr4g6reedzkbayzypxjbqa - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - typedoc: 0.24.6_typescript@4.9.5 - typescript: 4.9.5 + '@istanbuljs/nyc-config-typescript': + specifier: 1.0.2 + version: 1.0.2(nyc@15.1.0) + '@types/jest': + specifier: 29.5.2 + version: 29.5.2 + codecov: + specifier: ^3.5.0 + version: 3.8.3 + cspell: + specifier: ^4.1.0 + version: 4.2.8 + gh-pages: + specifier: ^3.1.0 + version: 3.2.3 + jest: + specifier: 27.5.1 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + nyc: + specifier: ^15.1.0 + version: 15.1.0 + open-cli: + specifier: ^6.0.1 + version: 6.0.1 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + ts-jest: + specifier: ^27.0.7 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + typedoc: + specifier: ^0.24.0 + version: 0.24.6(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 providers/nexmo: - specifiers: - '@istanbuljs/nyc-config-typescript': ^1.0.1 - '@novu/stateless': ^0.20.0-alpha.1 - '@types/jest': 29.5.2 - '@vonage/server-sdk': ^2.10.10 - codecov: ^3.5.0 - cspell: ^4.1.0 - gh-pages: ^3.1.0 - jest: ^27.1.0 - npm-run-all: ^4.1.5 - nyc: ^15.1.0 - open-cli: ^6.0.1 - prettier: ~2.8.0 - rimraf: ^3.0.2 - ts-jest: ^27.0.5 - ts-node: ~10.9.1 - typedoc: ^0.24.0 - typescript: 4.9.5 dependencies: - '@novu/stateless': link:../../packages/stateless - '@vonage/server-sdk': 2.11.3 + '@novu/stateless': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/stateless + '@vonage/server-sdk': + specifier: ^2.10.10 + version: 2.11.3 devDependencies: - '@istanbuljs/nyc-config-typescript': 1.0.2_nyc@15.1.0 - '@types/jest': 29.5.2 - codecov: 3.8.3 - cspell: 4.2.8 - gh-pages: 3.2.3 - jest: 27.5.1_ts-node@10.9.1 - npm-run-all: 4.1.5 - nyc: 15.1.0 - open-cli: 6.0.1 - prettier: 2.8.7 - rimraf: 3.0.2 - ts-jest: 27.1.5_jt6hjr4g6reedzkbayzypxjbqa - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - typedoc: 0.24.6_typescript@4.9.5 - typescript: 4.9.5 + '@istanbuljs/nyc-config-typescript': + specifier: ^1.0.1 + version: 1.0.2(nyc@15.1.0) + '@types/jest': + specifier: 29.5.2 + version: 29.5.2 + codecov: + specifier: ^3.5.0 + version: 3.8.3 + cspell: + specifier: ^4.1.0 + version: 4.2.8 + gh-pages: + specifier: ^3.1.0 + version: 3.2.3 + jest: + specifier: ^27.1.0 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + nyc: + specifier: ^15.1.0 + version: 15.1.0 + open-cli: + specifier: ^6.0.1 + version: 6.0.1 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + ts-jest: + specifier: ^27.0.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + typedoc: + specifier: ^0.24.0 + version: 0.24.6(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 providers/nodemailer: - specifiers: - '@istanbuljs/nyc-config-typescript': 1.0.2 - '@novu/stateless': ^0.20.0-alpha.1 - '@types/jest': 29.5.2 - '@types/nodemailer': ^6.4.4 - codecov: ^3.5.0 - cspell: ^4.1.0 - gh-pages: ^3.1.0 - jest: 27.5.1 - nodemailer: ^6.6.5 - npm-run-all: ^4.1.5 - nyc: ^15.1.0 - open-cli: ^6.0.1 - prettier: ~2.8.0 - rimraf: ^3.0.2 - ts-jest: ^27.0.7 - ts-node: ~10.9.1 - typedoc: ^0.24.0 - typescript: 4.9.5 dependencies: - '@novu/stateless': link:../../packages/stateless - nodemailer: 6.9.1 + '@novu/stateless': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/stateless + nodemailer: + specifier: ^6.6.5 + version: 6.9.1 devDependencies: - '@istanbuljs/nyc-config-typescript': 1.0.2_nyc@15.1.0 - '@types/jest': 29.5.2 - '@types/nodemailer': 6.4.7 - codecov: 3.8.3 - cspell: 4.2.8 - gh-pages: 3.2.3 - jest: 27.5.1_ts-node@10.9.1 - npm-run-all: 4.1.5 - nyc: 15.1.0 - open-cli: 6.0.1 - prettier: 2.8.7 - rimraf: 3.0.2 - ts-jest: 27.1.5_jt6hjr4g6reedzkbayzypxjbqa - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - typedoc: 0.24.6_typescript@4.9.5 - typescript: 4.9.5 + '@istanbuljs/nyc-config-typescript': + specifier: 1.0.2 + version: 1.0.2(nyc@15.1.0) + '@types/jest': + specifier: 29.5.2 + version: 29.5.2 + '@types/nodemailer': + specifier: ^6.4.4 + version: 6.4.7 + codecov: + specifier: ^3.5.0 + version: 3.8.3 + cspell: + specifier: ^4.1.0 + version: 4.2.8 + gh-pages: + specifier: ^3.1.0 + version: 3.2.3 + jest: + specifier: 27.5.1 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + nyc: + specifier: ^15.1.0 + version: 15.1.0 + open-cli: + specifier: ^6.0.1 + version: 6.0.1 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + ts-jest: + specifier: ^27.0.7 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + typedoc: + specifier: ^0.24.0 + version: 0.24.6(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 providers/one-signal: - specifiers: - '@istanbuljs/nyc-config-typescript': ~1.0.1 - '@novu/stateless': ^0.20.0-alpha.1 - '@types/jest': ~29.5.0 - cspell: ~6.19.2 - jest: ~27.5.1 - npm-run-all: ^4.1.5 - nyc: ~15.1.0 - onesignal-node: ^3.4.0 - prettier: ~2.8.0 - rimraf: ~3.0.2 - ts-jest: ~27.1.5 - ts-node: ~10.9.1 - typescript: 4.9.5 dependencies: - '@novu/stateless': link:../../packages/stateless - onesignal-node: 3.4.0 + '@novu/stateless': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/stateless + onesignal-node: + specifier: ^3.4.0 + version: 3.4.0 devDependencies: - '@istanbuljs/nyc-config-typescript': 1.0.2_nyc@15.1.0 - '@types/jest': 29.5.1 - cspell: 6.19.2 - jest: 27.5.1_ts-node@10.9.1 - npm-run-all: 4.1.5 - nyc: 15.1.0 - prettier: 2.8.7 - rimraf: 3.0.2 - ts-jest: 27.1.5_46h2nya7z2u3ruciguirufjle4 - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - typescript: 4.9.5 + '@istanbuljs/nyc-config-typescript': + specifier: ~1.0.1 + version: 1.0.2(nyc@15.1.0) + '@types/jest': + specifier: ~29.5.0 + version: 29.5.1 + cspell: + specifier: ~6.19.2 + version: 6.19.2 + jest: + specifier: ~27.5.1 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + nyc: + specifier: ~15.1.0 + version: 15.1.0 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + rimraf: + specifier: ~3.0.2 + version: 3.0.2 + ts-jest: + specifier: ~27.1.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 providers/outlook365: - specifiers: - '@istanbuljs/nyc-config-typescript': ^1.0.1 - '@novu/stateless': ^0.20.0-alpha.1 - '@types/jest': ^29.5.0 - '@types/nodemailer': ^6.4.11 - codecov: ^3.5.0 - cspell: ^4.1.0 - gh-pages: ^3.1.0 - jest: ^27.1.0 - nodemailer: ^6.6.5 - npm-run-all: ^4.1.5 - nyc: ^15.1.0 - open-cli: ^6.0.1 - prettier: ~2.8.0 - rimraf: ^3.0.2 - ts-jest: ^27.0.5 - ts-node: ~10.9.1 - typedoc: ^0.24.0 - typescript: 4.9.5 dependencies: - '@novu/stateless': link:../../packages/stateless - nodemailer: 6.9.1 + '@novu/stateless': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/stateless + nodemailer: + specifier: ^6.6.5 + version: 6.9.1 devDependencies: - '@istanbuljs/nyc-config-typescript': 1.0.2_nyc@15.1.0 - '@types/jest': 29.5.1 - '@types/nodemailer': 6.4.11 - codecov: 3.8.3 - cspell: 4.2.8 - gh-pages: 3.2.3 - jest: 27.5.1_ts-node@10.9.1 - npm-run-all: 4.1.5 - nyc: 15.1.0 - open-cli: 6.0.1 - prettier: 2.8.7 - rimraf: 3.0.2 - ts-jest: 27.1.5_46h2nya7z2u3ruciguirufjle4 - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - typedoc: 0.24.6_typescript@4.9.5 - typescript: 4.9.5 + '@istanbuljs/nyc-config-typescript': + specifier: ^1.0.1 + version: 1.0.2(nyc@15.1.0) + '@types/jest': + specifier: ^29.5.0 + version: 29.5.1 + '@types/nodemailer': + specifier: ^6.4.11 + version: 6.4.11 + codecov: + specifier: ^3.5.0 + version: 3.8.3 + cspell: + specifier: ^4.1.0 + version: 4.2.8 + gh-pages: + specifier: ^3.1.0 + version: 3.2.3 + jest: + specifier: ^27.1.0 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + nyc: + specifier: ^15.1.0 + version: 15.1.0 + open-cli: + specifier: ^6.0.1 + version: 6.0.1 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + ts-jest: + specifier: ^27.0.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + typedoc: + specifier: ^0.24.0 + version: 0.24.6(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 providers/plivo: - specifiers: - '@istanbuljs/nyc-config-typescript': 1.0.2 - '@novu/stateless': ^0.20.0-alpha.1 - '@types/jest': 29.5.2 - codecov: ^3.5.0 - cspell: ^4.1.0 - gh-pages: ^3.1.0 - jest: 27.5.1 - npm-run-all: ^4.1.5 - nyc: ^15.1.0 - open-cli: ^6.0.1 - plivo: ^4.22.4 - prettier: ~2.8.0 - rimraf: ^3.0.2 - ts-jest: ^27.0.5 - ts-node: ~10.9.1 - typedoc: ^0.24.0 - typescript: 4.9.5 dependencies: - '@novu/stateless': link:../../packages/stateless - plivo: 4.44.0 + '@novu/stateless': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/stateless + plivo: + specifier: ^4.22.4 + version: 4.44.0 devDependencies: - '@istanbuljs/nyc-config-typescript': 1.0.2_nyc@15.1.0 - '@types/jest': 29.5.2 - codecov: 3.8.3 - cspell: 4.2.8 - gh-pages: 3.2.3 - jest: 27.5.1_ts-node@10.9.1 - npm-run-all: 4.1.5 - nyc: 15.1.0 - open-cli: 6.0.1 - prettier: 2.8.7 - rimraf: 3.0.2 - ts-jest: 27.1.5_jt6hjr4g6reedzkbayzypxjbqa - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - typedoc: 0.24.6_typescript@4.9.5 - typescript: 4.9.5 + '@istanbuljs/nyc-config-typescript': + specifier: 1.0.2 + version: 1.0.2(nyc@15.1.0) + '@types/jest': + specifier: 29.5.2 + version: 29.5.2 + codecov: + specifier: ^3.5.0 + version: 3.8.3 + cspell: + specifier: ^4.1.0 + version: 4.2.8 + gh-pages: + specifier: ^3.1.0 + version: 3.2.3 + jest: + specifier: 27.5.1 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + nyc: + specifier: ^15.1.0 + version: 15.1.0 + open-cli: + specifier: ^6.0.1 + version: 6.0.1 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + ts-jest: + specifier: ^27.0.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + typedoc: + specifier: ^0.24.0 + version: 0.24.6(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 providers/plunk: - specifiers: - '@istanbuljs/nyc-config-typescript': ~1.0.1 - '@novu/stateless': ^0.20.0-alpha.1 - '@plunk/node': 2.0.0 - '@types/jest': ~27.5.2 - cspell: ~6.19.2 - jest: ~27.5.1 - npm-run-all: ^4.1.5 - nyc: ~15.1.0 - prettier: ~2.8.0 - rimraf: ~3.0.2 - ts-jest: ~27.1.5 - ts-node: ~10.9.1 - typescript: 4.9.5 dependencies: - '@novu/stateless': link:../../packages/stateless - '@plunk/node': 2.0.0 + '@novu/stateless': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/stateless + '@plunk/node': + specifier: 2.0.0 + version: 2.0.0 devDependencies: - '@istanbuljs/nyc-config-typescript': 1.0.2_nyc@15.1.0 - '@types/jest': 27.5.2 - cspell: 6.19.2 - jest: 27.5.1_ts-node@10.9.1 - npm-run-all: 4.1.5 - nyc: 15.1.0 - prettier: 2.8.7 - rimraf: 3.0.2 - ts-jest: 27.1.5_tdguimvmawsauzyxxfukpkg77i - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - typescript: 4.9.5 + '@istanbuljs/nyc-config-typescript': + specifier: ~1.0.1 + version: 1.0.2(nyc@15.1.0) + '@types/jest': + specifier: ~27.5.2 + version: 27.5.2 + cspell: + specifier: ~6.19.2 + version: 6.19.2 + jest: + specifier: ~27.5.1 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + nyc: + specifier: ~15.1.0 + version: 15.1.0 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + rimraf: + specifier: ~3.0.2 + version: 3.0.2 + ts-jest: + specifier: ~27.1.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@27.5.2)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 providers/postmark: - specifiers: - '@istanbuljs/nyc-config-typescript': 1.0.2 - '@novu/stateless': ^0.20.0-alpha.1 - '@types/jest': 29.5.2 - axios: ^1.3.6 - codecov: ^3.5.0 - cspell: ^4.1.0 - gh-pages: ^3.1.0 - jest: 27.5.1 - npm-run-all: ^4.1.5 - nyc: ^15.1.0 - open-cli: ^6.0.1 - postmark: ^2.7.8 - prettier: ~2.8.0 - rimraf: ^3.0.2 - ts-jest: ^27.0.5 - ts-node: ~10.9.1 - typedoc: ^0.24.0 - typescript: 4.9.5 dependencies: - '@novu/stateless': link:../../packages/stateless - axios: 1.4.0 - postmark: 2.9.5 + '@novu/stateless': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/stateless + axios: + specifier: ^1.3.6 + version: 1.4.0 + postmark: + specifier: ^2.7.8 + version: 2.9.5 devDependencies: - '@istanbuljs/nyc-config-typescript': 1.0.2_nyc@15.1.0 - '@types/jest': 29.5.2 - codecov: 3.8.3 - cspell: 4.2.8 - gh-pages: 3.2.3 - jest: 27.5.1_ts-node@10.9.1 - npm-run-all: 4.1.5 - nyc: 15.1.0 - open-cli: 6.0.1 - prettier: 2.8.7 - rimraf: 3.0.2 - ts-jest: 27.1.5_jt6hjr4g6reedzkbayzypxjbqa - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - typedoc: 0.24.6_typescript@4.9.5 - typescript: 4.9.5 + '@istanbuljs/nyc-config-typescript': + specifier: 1.0.2 + version: 1.0.2(nyc@15.1.0) + '@types/jest': + specifier: 29.5.2 + version: 29.5.2 + codecov: + specifier: ^3.5.0 + version: 3.8.3 + cspell: + specifier: ^4.1.0 + version: 4.2.8 + gh-pages: + specifier: ^3.1.0 + version: 3.2.3 + jest: + specifier: 27.5.1 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + nyc: + specifier: ^15.1.0 + version: 15.1.0 + open-cli: + specifier: ^6.0.1 + version: 6.0.1 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + ts-jest: + specifier: ^27.0.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + typedoc: + specifier: ^0.24.0 + version: 0.24.6(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 providers/push-webhook: - specifiers: - '@istanbuljs/nyc-config-typescript': ~1.0.1 - '@novu/stateless': ^0.20.0-alpha.1 - '@types/jest': ~29.5.0 - axios: ^1.3.5 - cspell: ~6.19.2 - jest: ~27.5.1 - npm-run-all: ^4.1.5 - nyc: ~15.1.0 - prettier: ~2.8.0 - rimraf: ~3.0.2 - ts-jest: ~27.1.5 - ts-node: ~10.9.1 - typescript: 4.9.5 dependencies: - '@novu/stateless': link:../../packages/stateless - axios: 1.3.5 + '@novu/stateless': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/stateless + axios: + specifier: ^1.3.5 + version: 1.3.5 devDependencies: - '@istanbuljs/nyc-config-typescript': 1.0.2_nyc@15.1.0 - '@types/jest': 29.5.1 - cspell: 6.19.2 - jest: 27.5.1_ts-node@10.9.1 - npm-run-all: 4.1.5 - nyc: 15.1.0 - prettier: 2.8.7 - rimraf: 3.0.2 - ts-jest: 27.1.5_46h2nya7z2u3ruciguirufjle4 - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - typescript: 4.9.5 + '@istanbuljs/nyc-config-typescript': + specifier: ~1.0.1 + version: 1.0.2(nyc@15.1.0) + '@types/jest': + specifier: ~29.5.0 + version: 29.5.1 + cspell: + specifier: ~6.19.2 + version: 6.19.2 + jest: + specifier: ~27.5.1 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + nyc: + specifier: ~15.1.0 + version: 15.1.0 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + rimraf: + specifier: ~3.0.2 + version: 3.0.2 + ts-jest: + specifier: ~27.1.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 providers/resend: - specifiers: - '@istanbuljs/nyc-config-typescript': ^1.0.1 - '@novu/stateless': ^0.20.0-alpha.1 - '@types/jest': ^29.5.0 - codecov: ^3.5.0 - cspell: ^4.1.0 - gh-pages: ^3.1.0 - jest: ^27.1.0 - npm-run-all: ^4.1.5 - nyc: ^15.1.0 - open-cli: ^6.0.1 - prettier: ~2.8.0 - resend: ^0.11.0 - rimraf: ^3.0.2 - ts-jest: ^27.0.5 - ts-node: ~10.9.1 - typedoc: ^0.24.0 - typescript: 4.9.5 dependencies: - '@novu/stateless': link:../../packages/stateless - resend: 0.11.1 + '@novu/stateless': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/stateless + resend: + specifier: ^0.11.0 + version: 0.11.1 devDependencies: - '@istanbuljs/nyc-config-typescript': 1.0.2_nyc@15.1.0 - '@types/jest': 29.5.1 - codecov: 3.8.3 - cspell: 4.2.8 - gh-pages: 3.2.3 - jest: 27.5.1_ts-node@10.9.1 - npm-run-all: 4.1.5 - nyc: 15.1.0 - open-cli: 6.0.1 - prettier: 2.8.7 - rimraf: 3.0.2 - ts-jest: 27.1.5_46h2nya7z2u3ruciguirufjle4 - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - typedoc: 0.24.6_typescript@4.9.5 - typescript: 4.9.5 + '@istanbuljs/nyc-config-typescript': + specifier: ^1.0.1 + version: 1.0.2(nyc@15.1.0) + '@types/jest': + specifier: ^29.5.0 + version: 29.5.1 + codecov: + specifier: ^3.5.0 + version: 3.8.3 + cspell: + specifier: ^4.1.0 + version: 4.2.8 + gh-pages: + specifier: ^3.1.0 + version: 3.2.3 + jest: + specifier: ^27.1.0 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + nyc: + specifier: ^15.1.0 + version: 15.1.0 + open-cli: + specifier: ^6.0.1 + version: 6.0.1 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + ts-jest: + specifier: ^27.0.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + typedoc: + specifier: ^0.24.0 + version: 0.24.6(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 providers/sendchamp: - specifiers: - '@istanbuljs/nyc-config-typescript': ~1.0.1 - '@novu/stateless': ^0.20.0-alpha.1 - '@types/jest': ~27.5.2 - axios: ^1.4.0 - cspell: ~6.19.2 - jest: ~27.5.1 - npm-run-all: ^4.1.5 - nyc: ~15.1.0 - prettier: ~2.8.0 - rimraf: ~3.0.2 - ts-jest: ~27.1.5 - ts-node: ~10.9.1 - typescript: 4.9.5 dependencies: - '@novu/stateless': link:../../packages/stateless - axios: 1.4.0 + '@novu/stateless': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/stateless + axios: + specifier: ^1.4.0 + version: 1.4.0 devDependencies: - '@istanbuljs/nyc-config-typescript': 1.0.2_nyc@15.1.0 - '@types/jest': 27.5.2 - cspell: 6.19.2 - jest: 27.5.1_ts-node@10.9.1 - npm-run-all: 4.1.5 - nyc: 15.1.0 - prettier: 2.8.7 - rimraf: 3.0.2 - ts-jest: 27.1.5_tdguimvmawsauzyxxfukpkg77i - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - typescript: 4.9.5 + '@istanbuljs/nyc-config-typescript': + specifier: ~1.0.1 + version: 1.0.2(nyc@15.1.0) + '@types/jest': + specifier: ~27.5.2 + version: 27.5.2 + cspell: + specifier: ~6.19.2 + version: 6.19.2 + jest: + specifier: ~27.5.1 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + nyc: + specifier: ~15.1.0 + version: 15.1.0 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + rimraf: + specifier: ~3.0.2 + version: 3.0.2 + ts-jest: + specifier: ~27.1.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@27.5.2)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 providers/sendgrid: - specifiers: - '@istanbuljs/nyc-config-typescript': 1.0.2 - '@novu/stateless': ^0.20.0-alpha.1 - '@sendgrid/mail': ^7.4.6 - '@types/jest': 29.5.2 - codecov: ^3.5.0 - cspell: ^4.1.0 - gh-pages: ^3.1.0 - jest: 27.5.1 - npm-run-all: ^4.1.5 - nyc: ^15.1.0 - open-cli: ^6.0.1 - prettier: ~2.8.0 - rimraf: ^3.0.2 - ts-jest: ^27.0.5 - ts-node: ~10.9.1 - typedoc: ^0.24.0 - typescript: 4.9.5 dependencies: - '@novu/stateless': link:../../packages/stateless - '@sendgrid/mail': 7.7.0 + '@novu/stateless': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/stateless + '@sendgrid/mail': + specifier: ^7.4.6 + version: 7.7.0 devDependencies: - '@istanbuljs/nyc-config-typescript': 1.0.2_nyc@15.1.0 - '@types/jest': 29.5.2 - codecov: 3.8.3 - cspell: 4.2.8 - gh-pages: 3.2.3 - jest: 27.5.1_ts-node@10.9.1 - npm-run-all: 4.1.5 - nyc: 15.1.0 - open-cli: 6.0.1 - prettier: 2.8.7 - rimraf: 3.0.2 - ts-jest: 27.1.5_jt6hjr4g6reedzkbayzypxjbqa - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - typedoc: 0.24.6_typescript@4.9.5 - typescript: 4.9.5 + '@istanbuljs/nyc-config-typescript': + specifier: 1.0.2 + version: 1.0.2(nyc@15.1.0) + '@types/jest': + specifier: 29.5.2 + version: 29.5.2 + codecov: + specifier: ^3.5.0 + version: 3.8.3 + cspell: + specifier: ^4.1.0 + version: 4.2.8 + gh-pages: + specifier: ^3.1.0 + version: 3.2.3 + jest: + specifier: 27.5.1 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + nyc: + specifier: ^15.1.0 + version: 15.1.0 + open-cli: + specifier: ^6.0.1 + version: 6.0.1 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + ts-jest: + specifier: ^27.0.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + typedoc: + specifier: ^0.24.0 + version: 0.24.6(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 providers/sendinblue: - specifiers: - '@istanbuljs/nyc-config-typescript': ^1.0.1 - '@novu/stateless': ^0.20.0-alpha.1 - '@sendinblue/client': ^3.0.1 - '@types/jest': 29.5.2 - codecov: ^3.5.0 - cspell: ^4.1.0 - gh-pages: ^3.1.0 - jest: ^27.1.0 - npm-run-all: ^4.1.5 - nyc: ^15.1.0 - open-cli: ^6.0.1 - prettier: ~2.8.0 - rimraf: ^3.0.2 - ts-jest: ^27.0.5 - ts-node: ~10.9.1 - typedoc: ^0.24.0 - typescript: 4.9.5 dependencies: - '@novu/stateless': link:../../packages/stateless - '@sendinblue/client': 3.3.1 + '@novu/stateless': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/stateless + '@sendinblue/client': + specifier: ^3.0.1 + version: 3.3.1 devDependencies: - '@istanbuljs/nyc-config-typescript': 1.0.2_nyc@15.1.0 - '@types/jest': 29.5.2 - codecov: 3.8.3 - cspell: 4.2.8 - gh-pages: 3.2.3 - jest: 27.5.1_ts-node@10.9.1 - npm-run-all: 4.1.5 - nyc: 15.1.0 - open-cli: 6.0.1 - prettier: 2.8.7 - rimraf: 3.0.2 - ts-jest: 27.1.5_jt6hjr4g6reedzkbayzypxjbqa - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - typedoc: 0.24.6_typescript@4.9.5 - typescript: 4.9.5 + '@istanbuljs/nyc-config-typescript': + specifier: ^1.0.1 + version: 1.0.2(nyc@15.1.0) + '@types/jest': + specifier: 29.5.2 + version: 29.5.2 + codecov: + specifier: ^3.5.0 + version: 3.8.3 + cspell: + specifier: ^4.1.0 + version: 4.2.8 + gh-pages: + specifier: ^3.1.0 + version: 3.2.3 + jest: + specifier: ^27.1.0 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + nyc: + specifier: ^15.1.0 + version: 15.1.0 + open-cli: + specifier: ^6.0.1 + version: 6.0.1 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + ts-jest: + specifier: ^27.0.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + typedoc: + specifier: ^0.24.0 + version: 0.24.6(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 providers/ses: - specifiers: - '@aws-sdk/client-ses': 3.382.0 - '@istanbuljs/nyc-config-typescript': ^1.0.1 - '@novu/stateless': ^0.20.0-alpha.1 - '@types/jest': 29.5.2 - codecov: ^3.5.0 - cspell: ^4.1.0 - gh-pages: ^3.1.0 - jest: ^27.1.0 - nodemailer: ^6.6.5 - npm-run-all: ^4.1.5 - nyc: ^15.1.0 - open-cli: ^6.0.1 - prettier: ~2.8.0 - rimraf: ^3.0.2 - ts-jest: ^27.0.5 - ts-node: ~10.9.1 - typedoc: ^0.24.0 - typescript: ^4.9.5 - dependencies: - '@aws-sdk/client-ses': 3.382.0 - '@novu/stateless': link:../../packages/stateless - nodemailer: 6.9.1 + dependencies: + '@aws-sdk/client-ses': + specifier: 3.382.0 + version: 3.382.0 + '@novu/stateless': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/stateless + nodemailer: + specifier: ^6.6.5 + version: 6.9.1 devDependencies: - '@istanbuljs/nyc-config-typescript': 1.0.2_nyc@15.1.0 - '@types/jest': 29.5.2 - codecov: 3.8.3 - cspell: 4.2.8 - gh-pages: 3.2.3 - jest: 27.5.1_ts-node@10.9.1 - npm-run-all: 4.1.5 - nyc: 15.1.0 - open-cli: 6.0.1 - prettier: 2.8.7 - rimraf: 3.0.2 - ts-jest: 27.1.5_jt6hjr4g6reedzkbayzypxjbqa - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - typedoc: 0.24.6_typescript@4.9.5 - typescript: 4.9.5 + '@istanbuljs/nyc-config-typescript': + specifier: ^1.0.1 + version: 1.0.2(nyc@15.1.0) + '@types/jest': + specifier: 29.5.2 + version: 29.5.2 + codecov: + specifier: ^3.5.0 + version: 3.8.3 + cspell: + specifier: ^4.1.0 + version: 4.2.8 + gh-pages: + specifier: ^3.1.0 + version: 3.2.3 + jest: + specifier: ^27.1.0 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + nyc: + specifier: ^15.1.0 + version: 15.1.0 + open-cli: + specifier: ^6.0.1 + version: 6.0.1 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + ts-jest: + specifier: ^27.0.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + typedoc: + specifier: ^0.24.0 + version: 0.24.6(typescript@4.9.5) + typescript: + specifier: ^4.9.5 + version: 4.9.5 providers/slack: - specifiers: - '@istanbuljs/nyc-config-typescript': ^1.0.1 - '@novu/stateless': ^0.20.0-alpha.1 - '@types/jest': ^29.5.0 - axios: ^1.3.3 - codecov: ^3.5.0 - cspell: ^4.1.0 - gh-pages: ^3.1.0 - jest: ^27.1.0 - npm-run-all: ^4.1.5 - nyc: ^15.1.0 - open-cli: ^6.0.1 - prettier: ~2.8.0 - rimraf: ^3.0.2 - ts-jest: ^27.0.5 - ts-node: ~10.9.1 - typedoc: ^0.24.0 - typescript: 4.9.5 dependencies: - '@novu/stateless': link:../../packages/stateless - axios: 1.3.5 + '@novu/stateless': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/stateless + axios: + specifier: ^1.3.3 + version: 1.3.5 devDependencies: - '@istanbuljs/nyc-config-typescript': 1.0.2_nyc@15.1.0 - '@types/jest': 29.5.1 - codecov: 3.8.3 - cspell: 4.2.8 - gh-pages: 3.2.3 - jest: 27.5.1_ts-node@10.9.1 - npm-run-all: 4.1.5 - nyc: 15.1.0 - open-cli: 6.0.1 - prettier: 2.8.7 - rimraf: 3.0.2 - ts-jest: 27.1.5_46h2nya7z2u3ruciguirufjle4 - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - typedoc: 0.24.6_typescript@4.9.5 - typescript: 4.9.5 + '@istanbuljs/nyc-config-typescript': + specifier: ^1.0.1 + version: 1.0.2(nyc@15.1.0) + '@types/jest': + specifier: ^29.5.0 + version: 29.5.1 + codecov: + specifier: ^3.5.0 + version: 3.8.3 + cspell: + specifier: ^4.1.0 + version: 4.2.8 + gh-pages: + specifier: ^3.1.0 + version: 3.2.3 + jest: + specifier: ^27.1.0 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + nyc: + specifier: ^15.1.0 + version: 15.1.0 + open-cli: + specifier: ^6.0.1 + version: 6.0.1 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + ts-jest: + specifier: ^27.0.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + typedoc: + specifier: ^0.24.0 + version: 0.24.6(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 providers/sms-central: - specifiers: - '@istanbuljs/nyc-config-typescript': ~1.0.1 - '@novu/stateless': ^0.12.0 - '@types/jest': ~29.5.0 - axios: ^1.3.3 - cspell: ~6.19.2 - jest: ~27.5.1 - npm-run-all: ^4.1.5 - nyc: ~15.1.0 - prettier: ~2.8.0 - rimraf: ~3.0.2 - ts-jest: ~27.1.5 - ts-node: ~10.9.1 - typescript: 4.9.5 dependencies: - '@novu/stateless': 0.12.0 - axios: 1.3.5 + '@novu/stateless': + specifier: ^0.12.0 + version: 0.12.0 + axios: + specifier: ^1.3.3 + version: 1.3.5 devDependencies: - '@istanbuljs/nyc-config-typescript': 1.0.2_nyc@15.1.0 - '@types/jest': 29.5.1 - cspell: 6.19.2 - jest: 27.5.1_ts-node@10.9.1 - npm-run-all: 4.1.5 - nyc: 15.1.0 - prettier: 2.8.7 - rimraf: 3.0.2 - ts-jest: 27.1.5_46h2nya7z2u3ruciguirufjle4 - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - typescript: 4.9.5 + '@istanbuljs/nyc-config-typescript': + specifier: ~1.0.1 + version: 1.0.2(nyc@15.1.0) + '@types/jest': + specifier: ~29.5.0 + version: 29.5.1 + cspell: + specifier: ~6.19.2 + version: 6.19.2 + jest: + specifier: ~27.5.1 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + nyc: + specifier: ~15.1.0 + version: 15.1.0 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + rimraf: + specifier: ~3.0.2 + version: 3.0.2 + ts-jest: + specifier: ~27.1.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 providers/sms77: - specifiers: - '@babel/preset-env': ^7.13.15 - '@istanbuljs/nyc-config-typescript': ^1.0.1 - '@novu/stateless': ^0.20.0-alpha.1 - '@types/jest': 29.5.2 - codecov: ^3.5.0 - cspell: ^4.1.0 - gh-pages: ^3.1.0 - jest: ^27.1.0 - node-fetch: ^2.6.7 - npm-run-all: ^4.1.5 - nyc: ^15.1.0 - open-cli: ^6.0.1 - prettier: ~2.8.0 - rimraf: ^3.0.2 - sms77-client: ^2.14.0 - ts-jest: ^27.0.5 - ts-node: ~10.9.1 - typedoc: ^0.24.0 - typescript: 4.9.5 dependencies: - '@novu/stateless': link:../../packages/stateless - node-fetch: 2.6.9 - sms77-client: 2.25.0_node-fetch@2.6.9 + '@novu/stateless': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/stateless + node-fetch: + specifier: ^2.6.7 + version: 2.6.9 + sms77-client: + specifier: ^2.14.0 + version: 2.25.0(node-fetch@2.6.9) devDependencies: - '@babel/preset-env': 7.21.4_@babel+core@7.22.11 - '@istanbuljs/nyc-config-typescript': 1.0.2_nyc@15.1.0 - '@types/jest': 29.5.2 - codecov: 3.8.3 - cspell: 4.2.8 - gh-pages: 3.2.3 - jest: 27.5.1_ts-node@10.9.1 - npm-run-all: 4.1.5 - nyc: 15.1.0 - open-cli: 6.0.1 - prettier: 2.8.7 - rimraf: 3.0.2 - ts-jest: 27.1.5_jt6hjr4g6reedzkbayzypxjbqa - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - typedoc: 0.24.6_typescript@4.9.5 - typescript: 4.9.5 + '@babel/preset-env': + specifier: ^7.13.15 + version: 7.21.4(@babel/core@7.22.11) + '@istanbuljs/nyc-config-typescript': + specifier: ^1.0.1 + version: 1.0.2(nyc@15.1.0) + '@types/jest': + specifier: 29.5.2 + version: 29.5.2 + codecov: + specifier: ^3.5.0 + version: 3.8.3 + cspell: + specifier: ^4.1.0 + version: 4.2.8 + gh-pages: + specifier: ^3.1.0 + version: 3.2.3 + jest: + specifier: ^27.1.0 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + nyc: + specifier: ^15.1.0 + version: 15.1.0 + open-cli: + specifier: ^6.0.1 + version: 6.0.1 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + ts-jest: + specifier: ^27.0.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + typedoc: + specifier: ^0.24.0 + version: 0.24.6(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 providers/sns: - specifiers: - '@aws-sdk/client-sns': ^3.382.0 - '@istanbuljs/nyc-config-typescript': ^1.0.1 - '@novu/stateless': ^0.20.0-alpha.1 - '@types/jest': 29.5.2 - codecov: ^3.5.0 - cspell: ^4.1.0 - gh-pages: ^3.1.0 - jest: ^27.1.0 - npm-run-all: ^4.1.5 - nyc: ^15.1.0 - open-cli: ^6.0.1 - prettier: ~2.8.0 - rimraf: ^3.0.2 - ts-jest: ^27.0.5 - ts-node: ~10.9.1 - typedoc: ^0.24.0 - typescript: 4.9.5 dependencies: - '@aws-sdk/client-sns': 3.388.0 - '@novu/stateless': link:../../packages/stateless + '@aws-sdk/client-sns': + specifier: ^3.382.0 + version: 3.388.0 + '@novu/stateless': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/stateless devDependencies: - '@istanbuljs/nyc-config-typescript': 1.0.2_nyc@15.1.0 - '@types/jest': 29.5.2 - codecov: 3.8.3 - cspell: 4.2.8 - gh-pages: 3.2.3 - jest: 27.5.1_ts-node@10.9.1 - npm-run-all: 4.1.5 - nyc: 15.1.0 - open-cli: 6.0.1 - prettier: 2.8.7 - rimraf: 3.0.2 - ts-jest: 27.1.5_jt6hjr4g6reedzkbayzypxjbqa - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - typedoc: 0.24.6_typescript@4.9.5 - typescript: 4.9.5 + '@istanbuljs/nyc-config-typescript': + specifier: ^1.0.1 + version: 1.0.2(nyc@15.1.0) + '@types/jest': + specifier: 29.5.2 + version: 29.5.2 + codecov: + specifier: ^3.5.0 + version: 3.8.3 + cspell: + specifier: ^4.1.0 + version: 4.2.8 + gh-pages: + specifier: ^3.1.0 + version: 3.2.3 + jest: + specifier: ^27.1.0 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + nyc: + specifier: ^15.1.0 + version: 15.1.0 + open-cli: + specifier: ^6.0.1 + version: 6.0.1 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + ts-jest: + specifier: ^27.0.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + typedoc: + specifier: ^0.24.0 + version: 0.24.6(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 providers/sparkpost: - specifiers: - '@istanbuljs/nyc-config-typescript': ^1.0.1 - '@novu/stateless': ^0.20.0-alpha.1 - '@types/jest': ^29.5.0 - '@types/sparkpost': ^2.1.5 - codecov: ^3.5.0 - cspell: ^4.1.0 - gh-pages: ^3.1.0 - jest: ^27.1.0 - npm-run-all: ^4.1.5 - nyc: ^15.1.0 - open-cli: ^6.0.1 - prettier: ~2.8.0 - rimraf: ^3.0.2 - sparkpost: ^2.1.4 - ts-jest: ^27.0.5 - ts-node: ~10.9.1 - typedoc: ^0.24.0 - typescript: 4.9.5 dependencies: - '@novu/stateless': link:../../packages/stateless - sparkpost: 2.1.4 + '@novu/stateless': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/stateless + sparkpost: + specifier: ^2.1.4 + version: 2.1.4 devDependencies: - '@istanbuljs/nyc-config-typescript': 1.0.2_nyc@15.1.0 - '@types/jest': 29.5.1 - '@types/sparkpost': 2.1.5 - codecov: 3.8.3 - cspell: 4.2.8 - gh-pages: 3.2.3 - jest: 27.5.1_ts-node@10.9.1 - npm-run-all: 4.1.5 - nyc: 15.1.0 - open-cli: 6.0.1 - prettier: 2.8.7 - rimraf: 3.0.2 - ts-jest: 27.1.5_46h2nya7z2u3ruciguirufjle4 - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - typedoc: 0.24.6_typescript@4.9.5 - typescript: 4.9.5 + '@istanbuljs/nyc-config-typescript': + specifier: ^1.0.1 + version: 1.0.2(nyc@15.1.0) + '@types/jest': + specifier: ^29.5.0 + version: 29.5.1 + '@types/sparkpost': + specifier: ^2.1.5 + version: 2.1.5 + codecov: + specifier: ^3.5.0 + version: 3.8.3 + cspell: + specifier: ^4.1.0 + version: 4.2.8 + gh-pages: + specifier: ^3.1.0 + version: 3.2.3 + jest: + specifier: ^27.1.0 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + nyc: + specifier: ^15.1.0 + version: 15.1.0 + open-cli: + specifier: ^6.0.1 + version: 6.0.1 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + ts-jest: + specifier: ^27.0.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + typedoc: + specifier: ^0.24.0 + version: 0.24.6(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 providers/telnyx: - specifiers: - '@istanbuljs/nyc-config-typescript': ^1.0.1 - '@novu/stateless': ^0.20.0-alpha.1 - '@types/jest': ^29.5.0 - codecov: ^3.5.0 - cspell: ^4.1.0 - gh-pages: ^3.1.0 - jest: ^27.1.0 - npm-run-all: ^4.1.5 - nyc: ^15.1.0 - open-cli: ^6.0.1 - prettier: ~2.8.0 - rimraf: ^3.0.2 - telnyx: ^1.23.0 - ts-jest: ^27.0.5 - ts-node: ~10.9.1 - typedoc: ^0.24.0 - typescript: 4.9.5 dependencies: - '@novu/stateless': link:../../packages/stateless - telnyx: 1.23.0 + '@novu/stateless': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/stateless + telnyx: + specifier: ^1.23.0 + version: 1.23.0 devDependencies: - '@istanbuljs/nyc-config-typescript': 1.0.2_nyc@15.1.0 - '@types/jest': 29.5.1 - codecov: 3.8.3 - cspell: 4.2.8 - gh-pages: 3.2.3 - jest: 27.5.1_ts-node@10.9.1 - npm-run-all: 4.1.5 - nyc: 15.1.0 - open-cli: 6.0.1 - prettier: 2.8.7 - rimraf: 3.0.2 - ts-jest: 27.1.5_46h2nya7z2u3ruciguirufjle4 - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - typedoc: 0.24.6_typescript@4.9.5 - typescript: 4.9.5 + '@istanbuljs/nyc-config-typescript': + specifier: ^1.0.1 + version: 1.0.2(nyc@15.1.0) + '@types/jest': + specifier: ^29.5.0 + version: 29.5.1 + codecov: + specifier: ^3.5.0 + version: 3.8.3 + cspell: + specifier: ^4.1.0 + version: 4.2.8 + gh-pages: + specifier: ^3.1.0 + version: 3.2.3 + jest: + specifier: ^27.1.0 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + nyc: + specifier: ^15.1.0 + version: 15.1.0 + open-cli: + specifier: ^6.0.1 + version: 6.0.1 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + ts-jest: + specifier: ^27.0.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + typedoc: + specifier: ^0.24.0 + version: 0.24.6(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 providers/termii: - specifiers: - '@babel/preset-env': ^7.13.15 - '@istanbuljs/nyc-config-typescript': ^1.0.1 - '@novu/stateless': ^0.20.0-alpha.1 - '@types/jest': ^29.5.0 - codecov: ^3.5.0 - cspell: ^4.1.0 - gh-pages: ^3.1.0 - jest: ^27.1.0 - node-fetch: ^3.2.10 - npm-run-all: ^4.1.5 - nyc: ^15.1.0 - open-cli: ^6.0.1 - prettier: ~2.8.0 - rimraf: ^3.0.2 - ts-jest: ^27.0.5 - ts-node: ~10.9.1 - typedoc: ^0.24.0 - typescript: 4.9.5 dependencies: - '@novu/stateless': link:../../packages/stateless - node-fetch: 3.3.1 + '@novu/stateless': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/stateless + node-fetch: + specifier: ^3.2.10 + version: 3.3.1 devDependencies: - '@babel/preset-env': 7.21.4_@babel+core@7.22.11 - '@istanbuljs/nyc-config-typescript': 1.0.2_nyc@15.1.0 - '@types/jest': 29.5.1 - codecov: 3.8.3 - cspell: 4.2.8 - gh-pages: 3.2.3 - jest: 27.5.1_ts-node@10.9.1 - npm-run-all: 4.1.5 - nyc: 15.1.0 - open-cli: 6.0.1 - prettier: 2.8.7 - rimraf: 3.0.2 - ts-jest: 27.1.5_46h2nya7z2u3ruciguirufjle4 - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - typedoc: 0.24.6_typescript@4.9.5 - typescript: 4.9.5 + '@babel/preset-env': + specifier: ^7.13.15 + version: 7.21.4(@babel/core@7.22.11) + '@istanbuljs/nyc-config-typescript': + specifier: ^1.0.1 + version: 1.0.2(nyc@15.1.0) + '@types/jest': + specifier: ^29.5.0 + version: 29.5.1 + codecov: + specifier: ^3.5.0 + version: 3.8.3 + cspell: + specifier: ^4.1.0 + version: 4.2.8 + gh-pages: + specifier: ^3.1.0 + version: 3.2.3 + jest: + specifier: ^27.1.0 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + nyc: + specifier: ^15.1.0 + version: 15.1.0 + open-cli: + specifier: ^6.0.1 + version: 6.0.1 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + ts-jest: + specifier: ^27.0.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + typedoc: + specifier: ^0.24.0 + version: 0.24.6(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 providers/twilio: - specifiers: - '@istanbuljs/nyc-config-typescript': 1.0.2 - '@novu/stateless': ^0.20.0-alpha.1 - '@types/jest': 29.5.2 - codecov: ^3.5.0 - cspell: ^4.1.0 - gh-pages: ^3.1.0 - jest: 27.5.1 - npm-run-all: ^4.1.5 - nyc: ^15.1.0 - open-cli: ^6.0.1 - prettier: ~2.8.0 - rimraf: ^3.0.2 - ts-jest: ^27.0.5 - ts-node: ~10.9.1 - twilio: ^4.14.1 - typedoc: ^0.24.0 - typescript: 4.9.5 dependencies: - '@novu/stateless': link:../../packages/stateless - twilio: 4.15.0 + '@novu/stateless': + specifier: ^0.20.0-alpha.1 + version: link:../../packages/stateless + twilio: + specifier: ^4.14.1 + version: 4.15.0 devDependencies: - '@istanbuljs/nyc-config-typescript': 1.0.2_nyc@15.1.0 - '@types/jest': 29.5.2 - codecov: 3.8.3 - cspell: 4.2.8 - gh-pages: 3.2.3 - jest: 27.5.1_ts-node@10.9.1 - npm-run-all: 4.1.5 - nyc: 15.1.0 - open-cli: 6.0.1 - prettier: 2.8.7 - rimraf: 3.0.2 - ts-jest: 27.1.5_jt6hjr4g6reedzkbayzypxjbqa - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - typedoc: 0.24.6_typescript@4.9.5 - typescript: 4.9.5 + '@istanbuljs/nyc-config-typescript': + specifier: 1.0.2 + version: 1.0.2(nyc@15.1.0) + '@types/jest': + specifier: 29.5.2 + version: 29.5.2 + codecov: + specifier: ^3.5.0 + version: 3.8.3 + cspell: + specifier: ^4.1.0 + version: 4.2.8 + gh-pages: + specifier: ^3.1.0 + version: 3.2.3 + jest: + specifier: 27.5.1 + version: 27.5.1(ts-node@10.9.1) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + nyc: + specifier: ^15.1.0 + version: 15.1.0 + open-cli: + specifier: ^6.0.1 + version: 6.0.1 + prettier: + specifier: ~2.8.0 + version: 2.8.7 + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + ts-jest: + specifier: ^27.0.5 + version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) + ts-node: + specifier: ~10.9.1 + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + typedoc: + specifier: ^0.24.0 + version: 0.24.6(typescript@4.9.5) + typescript: + specifier: 4.9.5 + version: 4.9.5 packages: - /@aashutoshrathi/word-wrap/1.2.6: + /@aashutoshrathi/word-wrap@1.2.6: resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} engines: {node: '>=0.10.0'} - /@ampproject/remapping/2.2.0: + /@ampproject/remapping@2.2.0: resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==} engines: {node: '>=6.0.0'} dependencies: @@ -3675,34 +5271,24 @@ packages: '@jridgewell/trace-mapping': 0.3.19 dev: true - /@ampproject/remapping/2.2.1: + /@ampproject/remapping@2.2.1: resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==} engines: {node: '>=6.0.0'} dependencies: '@jridgewell/gen-mapping': 0.3.3 '@jridgewell/trace-mapping': 0.3.19 - /@angular-devkit/architect/0.1502.5: - resolution: {integrity: sha512-6KVrXQ/X7W88WSJvYe69ed/2QzQNlObKpj3BWzmcKnA+IvJB37/mvw8VaGFP9y+pDa/b1D1yCDtAJLeP5QY3xg==} - engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} - dependencies: - '@angular-devkit/core': 15.2.5 - rxjs: 6.6.7 - transitivePeerDependencies: - - chokidar - dev: true - - /@angular-devkit/architect/0.1502.5_chokidar@3.5.3: + /@angular-devkit/architect@0.1502.5(chokidar@3.5.3): resolution: {integrity: sha512-6KVrXQ/X7W88WSJvYe69ed/2QzQNlObKpj3BWzmcKnA+IvJB37/mvw8VaGFP9y+pDa/b1D1yCDtAJLeP5QY3xg==} engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} dependencies: - '@angular-devkit/core': 15.2.5_chokidar@3.5.3 + '@angular-devkit/core': 15.2.5(chokidar@3.5.3) rxjs: 6.6.7 transitivePeerDependencies: - chokidar dev: true - /@angular-devkit/build-angular/15.2.5_buram342ib6gvank4wlhqufpxm: + /@angular-devkit/build-angular@15.2.5(@angular/compiler-cli@15.2.6)(@swc/core@1.3.49)(karma@6.4.1)(ng-packagr@15.2.2)(typescript@4.9.5): resolution: {integrity: sha512-D2LxjBtUlgJnPxybOIN0XsENEGkVkqCGBBii5oK84HvgBHXO/EyP1WXpOdb2lOYSUZyjhOOs0q42LCobJoaxUw==} engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} peerDependencies: @@ -3732,32 +5318,32 @@ packages: optional: true dependencies: '@ampproject/remapping': 2.2.0 - '@angular-devkit/architect': 0.1502.5_chokidar@3.5.3 - '@angular-devkit/build-webpack': 0.1502.5_s3sugpttl6jjqsvaz4l5e6h25m - '@angular-devkit/core': 15.2.5_chokidar@3.5.3 - '@angular/compiler-cli': 15.2.6_54xk3mtsepvzoktlwdjj2rm7na + '@angular-devkit/architect': 0.1502.5(chokidar@3.5.3) + '@angular-devkit/build-webpack': 0.1502.5(chokidar@3.5.3)(webpack-dev-server@4.11.1)(webpack@5.76.1) + '@angular-devkit/core': 15.2.5(chokidar@3.5.3) + '@angular/compiler-cli': 15.2.6(@angular/compiler@15.2.6)(typescript@4.9.5) '@babel/core': 7.20.12 '@babel/generator': 7.20.14 '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-split-export-declaration': 7.18.6 - '@babel/plugin-proposal-async-generator-functions': 7.20.7_@babel+core@7.20.12 - '@babel/plugin-transform-async-to-generator': 7.20.7_@babel+core@7.20.12 - '@babel/plugin-transform-runtime': 7.19.6_@babel+core@7.20.12 - '@babel/preset-env': 7.20.2_@babel+core@7.20.12 + '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.20.12) + '@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.20.12) + '@babel/plugin-transform-runtime': 7.19.6(@babel/core@7.20.12) + '@babel/preset-env': 7.20.2(@babel/core@7.20.12) '@babel/runtime': 7.20.13 '@babel/template': 7.20.7 '@discoveryjs/json-ext': 0.5.7 - '@ngtools/webpack': 15.2.5_zqos56hbuiu24z4fwvegrcbdm4 + '@ngtools/webpack': 15.2.5(@angular/compiler-cli@15.2.6)(typescript@4.9.5)(webpack@5.76.1) ansi-colors: 4.1.3 - autoprefixer: 10.4.13_postcss@8.4.21 - babel-loader: 9.1.2_vbwv3zr3kwaf4v2iytwakh6feu + autoprefixer: 10.4.13(postcss@8.4.21) + babel-loader: 9.1.2(@babel/core@7.20.12)(webpack@5.76.1) babel-plugin-istanbul: 6.1.1 browserslist: 4.21.5 cacache: 17.0.4 chokidar: 3.5.3 - copy-webpack-plugin: 11.0.0_webpack@5.76.1 + copy-webpack-plugin: 11.0.0(webpack@5.76.1) critters: 0.0.16 - css-loader: 6.7.3_webpack@5.76.1 + css-loader: 6.7.3(webpack@5.76.1) esbuild-wasm: 0.17.8 glob: 8.1.0 https-proxy-agent: 5.0.1 @@ -3766,35 +5352,35 @@ packages: karma: 6.4.1 karma-source-map-support: 1.4.0 less: 4.1.3 - less-loader: 11.1.0_less@4.1.3+webpack@5.76.1 - license-webpack-plugin: 4.0.2_webpack@5.76.1 + less-loader: 11.1.0(less@4.1.3)(webpack@5.76.1) + license-webpack-plugin: 4.0.2(webpack@5.76.1) loader-utils: 3.2.1 magic-string: 0.29.0 - mini-css-extract-plugin: 2.7.2_webpack@5.76.1 - ng-packagr: 15.2.2_ahbmumcorrwcj53hbqfxcomynm + mini-css-extract-plugin: 2.7.2(webpack@5.76.1) + ng-packagr: 15.2.2(@angular/compiler-cli@15.2.6)(tslib@2.5.0)(typescript@4.9.5) open: 8.4.1 ora: 5.4.1 parse5-html-rewriting-stream: 7.0.0 piscina: 3.2.0 postcss: 8.4.21 - postcss-loader: 7.0.2_mquw4qchulb5tpkmg3p2j6qala + postcss-loader: 7.0.2(postcss@8.4.21)(webpack@5.76.1) resolve-url-loader: 5.0.0 rxjs: 6.6.7 sass: 1.58.1 - sass-loader: 13.2.0_sass@1.58.1+webpack@5.76.1 + sass-loader: 13.2.0(sass@1.58.1)(webpack@5.76.1) semver: 7.3.8 - source-map-loader: 4.0.1_webpack@5.76.1 + source-map-loader: 4.0.1(webpack@5.76.1) source-map-support: 0.5.21 terser: 5.16.3 text-table: 0.2.0 tree-kill: 1.2.2 tslib: 2.5.0 typescript: 4.9.5 - webpack: 5.76.1 - webpack-dev-middleware: 6.0.1_webpack@5.76.1 - webpack-dev-server: 4.11.1_webpack@5.76.1 + webpack: 5.76.1(@swc/core@1.3.49)(esbuild@0.17.8) + webpack-dev-middleware: 6.0.1(webpack@5.76.1) + webpack-dev-server: 4.11.1(webpack@5.76.1) webpack-merge: 5.8.0 - webpack-subresource-integrity: 5.1.0_webpack@5.76.1 + webpack-subresource-integrity: 5.1.0(webpack@5.76.1) optionalDependencies: esbuild: 0.17.8 transitivePeerDependencies: @@ -3812,38 +5398,22 @@ packages: - webpack-cli dev: true - /@angular-devkit/build-webpack/0.1502.5_s3sugpttl6jjqsvaz4l5e6h25m: + /@angular-devkit/build-webpack@0.1502.5(chokidar@3.5.3)(webpack-dev-server@4.11.1)(webpack@5.76.1): resolution: {integrity: sha512-gPkAa4AvQ7BxU+jmVJqrAO18kw/6iks+VUQ+2BVPyHCdqhroANHYdGbZ/pFlZdPmZVzSpusjd6VIbLhbHr/Ohw==} engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} peerDependencies: webpack: ^5.30.0 webpack-dev-server: ^4.0.0 dependencies: - '@angular-devkit/architect': 0.1502.5_chokidar@3.5.3 + '@angular-devkit/architect': 0.1502.5(chokidar@3.5.3) rxjs: 6.6.7 - webpack: 5.76.1 - webpack-dev-server: 4.11.1_webpack@5.76.1 + webpack: 5.76.1(@swc/core@1.3.49)(esbuild@0.17.8) + webpack-dev-server: 4.11.1(webpack@5.76.1) transitivePeerDependencies: - chokidar dev: true - /@angular-devkit/core/15.2.5: - resolution: {integrity: sha512-ZfjEkAe2yYeekc3xjZ/U4pK9nb+w6BFwAEjou6mE8PWZH7iYskm0YCCXkmu+B+zViEcCLhAkJAxu9MwX4efd8g==} - engines: {node: ^14.20.0 || ^16.13.0 || >=18.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.12.0 - ajv-formats: 2.1.1_ajv@8.12.0 - jsonc-parser: 3.2.0 - rxjs: 6.6.7 - source-map: 0.7.4 - dev: true - - /@angular-devkit/core/15.2.5_chokidar@3.5.3: + /@angular-devkit/core@15.2.5(chokidar@3.5.3): resolution: {integrity: sha512-ZfjEkAe2yYeekc3xjZ/U4pK9nb+w6BFwAEjou6mE8PWZH7iYskm0YCCXkmu+B+zViEcCLhAkJAxu9MwX4efd8g==} engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} peerDependencies: @@ -3853,30 +5423,14 @@ packages: optional: true dependencies: ajv: 8.12.0 - ajv-formats: 2.1.1_ajv@8.12.0 + ajv-formats: 2.1.1(ajv@8.12.0) chokidar: 3.5.3 jsonc-parser: 3.2.0 rxjs: 6.6.7 source-map: 0.7.4 dev: true - /@angular-devkit/core/16.1.8: - resolution: {integrity: sha512-dSRD/+bGanArIXkj+kaU1kDFleZeQMzmBiOXX+pK0Ah9/0Yn1VmY3RZh1zcX9vgIQXV+t7UPrTpOjaERMUtVGw==} - engines: {node: ^16.14.0 || >=18.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.12.0 - ajv-formats: 2.1.1_ajv@8.12.0 - jsonc-parser: 3.2.0 - rxjs: 7.8.1 - source-map: 0.7.4 - dev: true - - /@angular-devkit/core/16.1.8_chokidar@3.5.3: + /@angular-devkit/core@16.1.8(chokidar@3.5.3): resolution: {integrity: sha512-dSRD/+bGanArIXkj+kaU1kDFleZeQMzmBiOXX+pK0Ah9/0Yn1VmY3RZh1zcX9vgIQXV+t7UPrTpOjaERMUtVGw==} engines: {node: ^16.14.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} peerDependencies: @@ -3886,14 +5440,14 @@ packages: optional: true dependencies: ajv: 8.12.0 - ajv-formats: 2.1.1_ajv@8.12.0 + ajv-formats: 2.1.1(ajv@8.12.0) chokidar: 3.5.3 jsonc-parser: 3.2.0 rxjs: 7.8.1 source-map: 0.7.4 dev: true - /@angular-devkit/core/16.2.0_chokidar@3.5.3: + /@angular-devkit/core@16.2.0(chokidar@3.5.3): resolution: {integrity: sha512-l1k6Rqm3YM16BEn3CWyQKrk9xfu+2ux7Bw3oS+h1TO4/RoxO2PgHj8LLRh/WNrYVarhaqO7QZ5ePBkXNMkzJ1g==} engines: {node: ^16.14.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} peerDependencies: @@ -3903,20 +5457,20 @@ packages: optional: true dependencies: ajv: 8.12.0 - ajv-formats: 2.1.1_ajv@8.12.0 + ajv-formats: 2.1.1(ajv@8.12.0) chokidar: 3.5.3 jsonc-parser: 3.2.0 rxjs: 7.8.1 source-map: 0.7.4 dev: true - /@angular-devkit/schematics-cli/16.2.0_chokidar@3.5.3: + /@angular-devkit/schematics-cli@16.2.0(chokidar@3.5.3): resolution: {integrity: sha512-f3HjrDvSrRMvESogLsqsZXsEg//trIBySCHRXCglPrWLVdBbIRctGOhXqZoclRxXimIKUx14zLsOWzDwZG8+HQ==} engines: {node: ^16.14.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} hasBin: true dependencies: - '@angular-devkit/core': 16.2.0_chokidar@3.5.3 - '@angular-devkit/schematics': 16.2.0_chokidar@3.5.3 + '@angular-devkit/core': 16.2.0(chokidar@3.5.3) + '@angular-devkit/schematics': 16.2.0(chokidar@3.5.3) ansi-colors: 4.1.3 inquirer: 8.2.4 symbol-observable: 4.0.0 @@ -3925,11 +5479,11 @@ packages: - chokidar dev: true - /@angular-devkit/schematics/15.2.5: + /@angular-devkit/schematics@15.2.5: resolution: {integrity: sha512-zm7chQRQtPXQzzSAvK/mbZ+RJ3eP7hlU53yyJ/i6kjWAh3Y5uiSHNYGmqhhAHFuzw4Jhb4OC2S9iycxrqmI8TA==} engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} dependencies: - '@angular-devkit/core': 15.2.5 + '@angular-devkit/core': 15.2.5(chokidar@3.5.3) jsonc-parser: 3.2.0 magic-string: 0.29.0 ora: 5.4.1 @@ -3938,24 +5492,11 @@ packages: - chokidar dev: true - /@angular-devkit/schematics/16.1.8: - resolution: {integrity: sha512-6LyzMdFJs337RTxxkI2U1Ndw0CW5mMX/aXWl8d7cW2odiSrAg8IdlMqpc+AM8+CPfsB0FtS1aWkEZqJLT0jHOg==} - engines: {node: ^16.14.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} - dependencies: - '@angular-devkit/core': 16.1.8 - jsonc-parser: 3.2.0 - magic-string: 0.30.0 - ora: 5.4.1 - rxjs: 7.8.1 - transitivePeerDependencies: - - chokidar - dev: true - - /@angular-devkit/schematics/16.1.8_chokidar@3.5.3: + /@angular-devkit/schematics@16.1.8(chokidar@3.5.3): resolution: {integrity: sha512-6LyzMdFJs337RTxxkI2U1Ndw0CW5mMX/aXWl8d7cW2odiSrAg8IdlMqpc+AM8+CPfsB0FtS1aWkEZqJLT0jHOg==} engines: {node: ^16.14.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} dependencies: - '@angular-devkit/core': 16.1.8_chokidar@3.5.3 + '@angular-devkit/core': 16.1.8(chokidar@3.5.3) jsonc-parser: 3.2.0 magic-string: 0.30.0 ora: 5.4.1 @@ -3964,11 +5505,11 @@ packages: - chokidar dev: true - /@angular-devkit/schematics/16.2.0_chokidar@3.5.3: + /@angular-devkit/schematics@16.2.0(chokidar@3.5.3): resolution: {integrity: sha512-QMDJXPE0+YQJ9Ap3MMzb0v7rx6ZbBEokmHgpdIjN3eILYmbAdsSGE8HTV8NjS9nKmcyE9OGzFCMb7PFrDTlTAw==} engines: {node: ^16.14.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} dependencies: - '@angular-devkit/core': 16.2.0_chokidar@3.5.3 + '@angular-devkit/core': 16.2.0(chokidar@3.5.3) jsonc-parser: 3.2.0 magic-string: 0.30.1 ora: 5.4.1 @@ -3977,13 +5518,13 @@ packages: - chokidar dev: true - /@angular/cli/15.2.5: + /@angular/cli@15.2.5: resolution: {integrity: sha512-TmkkeJkdfDkC6b2SNQcLlr1rsl2anc5rrrY3gawOVXYXBExMxAi2SNJsHZzUXfiitW52aZkAyajF1VFazs8PRw==} engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} hasBin: true dependencies: - '@angular-devkit/architect': 0.1502.5 - '@angular-devkit/core': 15.2.5 + '@angular-devkit/architect': 0.1502.5(chokidar@3.5.3) + '@angular-devkit/core': 15.2.5(chokidar@3.5.3) '@angular-devkit/schematics': 15.2.5 '@schematics/angular': 15.2.5 '@yarnpkg/lockfile': 1.1.0 @@ -4006,19 +5547,19 @@ packages: - supports-color dev: true - /@angular/common/15.2.6_gqtyyqdltpkxhlbpgg44ryhm2q: + /@angular/common@15.2.6(@angular/core@15.2.6)(rxjs@7.8.1): resolution: {integrity: sha512-kPGJoSkFPXsIeHzcjlal8JC8/jYK9qAr+wv+HDX8O1J2FEzQjwoX4SYvpnvVk5WTqUkxMkRCTMu2YFAAmU1+qg==} engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0} peerDependencies: '@angular/core': 15.2.6 rxjs: ^6.5.3 || ^7.4.0 dependencies: - '@angular/core': 15.2.6_rxjs@7.8.1+zone.js@0.12.0 + '@angular/core': 15.2.6(rxjs@7.8.1)(zone.js@0.12.0) rxjs: 7.8.1 tslib: 2.5.0 dev: false - /@angular/compiler-cli/15.2.6_54xk3mtsepvzoktlwdjj2rm7na: + /@angular/compiler-cli@15.2.6(@angular/compiler@15.2.6)(typescript@4.9.5): resolution: {integrity: sha512-GHwL4l+NkaUGGdypF+nMFWCmTqvGusTzIriIwpnp38wc8lpmVME2jVodB6sHAkrxFmaHXU/gOCDFK4AnOi6Gmw==} engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0} hasBin: true @@ -4026,7 +5567,7 @@ packages: '@angular/compiler': 15.2.6 typescript: '>=4.8.2 <5.0' dependencies: - '@angular/compiler': 15.2.6_@angular+core@15.2.6 + '@angular/compiler': 15.2.6(@angular/core@15.2.6) '@babel/core': 7.19.3 '@jridgewell/sourcemap-codec': 1.4.15 chokidar: 3.5.3 @@ -4042,7 +5583,7 @@ packages: - supports-color dev: true - /@angular/compiler/15.2.6_@angular+core@15.2.6: + /@angular/compiler@15.2.6(@angular/core@15.2.6): resolution: {integrity: sha512-6oBAIY5KcC1UNsrnWGLcopZ9RD7c0HzpTCQY46N6HytHtUjBvzLbGWZu5MfahPtIjKz9FMVYBX9hugcbVpWnTA==} engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0} peerDependencies: @@ -4051,10 +5592,10 @@ packages: '@angular/core': optional: true dependencies: - '@angular/core': 15.2.6_rxjs@7.8.1+zone.js@0.12.0 + '@angular/core': 15.2.6(rxjs@7.8.1)(zone.js@0.12.0) tslib: 2.5.0 - /@angular/core/15.2.6_rxjs@7.8.1+zone.js@0.12.0: + /@angular/core@15.2.6(rxjs@7.8.1)(zone.js@0.12.0): resolution: {integrity: sha512-eN46OfSOLQGN6AciUvyHOJ8xQxmiEakkxJeoG1jwcSRXCjwSYYnQ/6drnhUpq5p43XXBAIduKfJXNztEPvLAkA==} engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0} peerDependencies: @@ -4065,7 +5606,7 @@ packages: tslib: 2.5.0 zone.js: 0.12.0 - /@angular/platform-browser-dynamic/15.2.6_n2pq7ehjjlbnmzq6nreqvmxwky: + /@angular/platform-browser-dynamic@15.2.6(@angular/common@15.2.6)(@angular/compiler@15.2.6)(@angular/core@15.2.6)(@angular/platform-browser@15.2.6): resolution: {integrity: sha512-ZSyiigpxBWIM5f8t/a28Y3BCzHn1FtI2KsJysE7di5UUflOzwbxbfycVlpiZp0girbDYRyF18vvefvitNh17Gw==} engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0} peerDependencies: @@ -4074,14 +5615,14 @@ packages: '@angular/core': 15.2.6 '@angular/platform-browser': 15.2.6 dependencies: - '@angular/common': 15.2.6_gqtyyqdltpkxhlbpgg44ryhm2q - '@angular/compiler': 15.2.6_@angular+core@15.2.6 - '@angular/core': 15.2.6_rxjs@7.8.1+zone.js@0.12.0 - '@angular/platform-browser': 15.2.6_xspguhg7zqj5ayvnxqasw2epk4 + '@angular/common': 15.2.6(@angular/core@15.2.6)(rxjs@7.8.1) + '@angular/compiler': 15.2.6(@angular/core@15.2.6) + '@angular/core': 15.2.6(rxjs@7.8.1)(zone.js@0.12.0) + '@angular/platform-browser': 15.2.6(@angular/common@15.2.6)(@angular/core@15.2.6) tslib: 2.5.0 dev: false - /@angular/platform-browser/15.2.6_xspguhg7zqj5ayvnxqasw2epk4: + /@angular/platform-browser@15.2.6(@angular/common@15.2.6)(@angular/core@15.2.6): resolution: {integrity: sha512-8afckDEWfYf+cyxs2SboZBJkiCwFgYE8IH24RUW1t3zLC+wfrTr7UEfrCoD4YJRVJdqnPoRWN5gjz98n3n4zsA==} engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0} peerDependencies: @@ -4092,22 +5633,22 @@ packages: '@angular/animations': optional: true dependencies: - '@angular/common': 15.2.6_gqtyyqdltpkxhlbpgg44ryhm2q - '@angular/core': 15.2.6_rxjs@7.8.1+zone.js@0.12.0 + '@angular/common': 15.2.6(@angular/core@15.2.6)(rxjs@7.8.1) + '@angular/core': 15.2.6(rxjs@7.8.1)(zone.js@0.12.0) tslib: 2.5.0 dev: false - /@ant-design/colors/6.0.0: + /@ant-design/colors@6.0.0: resolution: {integrity: sha512-qAZRvPzfdWHtfameEGP2Qvuf838NhergR35o+EuVyB5XvSA98xod5r4utvi4TJ3ywmevm290g9nsCG5MryrdWQ==} dependencies: '@ctrl/tinycolor': 3.6.0 dev: false - /@ant-design/icons-svg/4.2.1: + /@ant-design/icons-svg@4.2.1: resolution: {integrity: sha512-EB0iwlKDGpG93hW8f85CTJTs4SvMX7tt5ceupvhALp1IF44SeUFOMhKUOYqpsoYWQKAOuTRDMqn75rEaKDp0Xw==} dev: false - /@ant-design/icons/4.8.0_sfoxds7t5ydpegc3knd667wn6m: + /@ant-design/icons@4.8.0(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-T89P2jG2vM7OJ0IfGx2+9FC5sQjtTzRSz+mCHTXkFn/ELZc2YpfStmYHmqzq2Jx55J0F7+O6i5/ZKFSVNWCKNg==} engines: {node: '>=8'} peerDependencies: @@ -4118,12 +5659,12 @@ packages: '@ant-design/icons-svg': 4.2.1 '@babel/runtime': 7.21.0 classnames: 2.3.2 - rc-util: 5.29.3_sfoxds7t5ydpegc3knd667wn6m + rc-util: 5.29.3(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /@ant-design/react-slick/0.29.2_react@17.0.2: + /@ant-design/react-slick@0.29.2(react@17.0.2): resolution: {integrity: sha512-kgjtKmkGHa19FW21lHnAfyyH9AAoh35pBdcJ53rHmQ3O+cfFHGHnUbj/HFrRNJ5vIts09FKJVAD8RpaC+RaWfA==} peerDependencies: react: '>=16.9.0' @@ -4136,7 +5677,7 @@ packages: resize-observer-polyfill: 1.5.1 dev: false - /@apideck/better-ajv-errors/0.3.6_ajv@8.12.0: + /@apideck/better-ajv-errors@0.3.6(ajv@8.12.0): resolution: {integrity: sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==} engines: {node: '>=10'} peerDependencies: @@ -4147,16 +5688,16 @@ packages: jsonpointer: 5.0.1 leven: 3.1.0 - /@assemblyscript/loader/0.10.1: + /@assemblyscript/loader@0.10.1: resolution: {integrity: sha512-H71nDOOL8Y7kWRLqf6Sums+01Q5msqBW2KhDUTemh1tvY04eSkSXrK0uj/4mmY0Xr16/3zyZmsrxN7CKuRbNRg==} dev: true - /@auto-it/bot-list/10.44.0: + /@auto-it/bot-list@10.44.0: resolution: {integrity: sha512-RRiLVl8OJBlBuho7JfzVuSEIr9nwHA6NXUooVZkaDELLXweHkMfZCUyVTacQDRfqMF6nHJvFvryo5JpL70nUyQ==} engines: {node: '>=10.x'} dev: true - /@auto-it/core/10.44.0_j6r65ghnzvzk7vhdh4hyogrm4a: + /@auto-it/core@10.44.0(@swc/core@1.3.49)(@types/node@16.11.7)(typescript@4.9.5): resolution: {integrity: sha512-yr+dnOBg5kF/wcnQLAZaNIqTVmmZXJViatEI0R1f9Y/lNCVulSPvUimjwVEvTtAgWghJSiKgPNBOTLic5U/1ow==} peerDependencies: typescript: '*' @@ -4165,11 +5706,11 @@ packages: optional: true dependencies: '@auto-it/bot-list': 10.44.0 - '@endemolshinegroup/cosmiconfig-typescript-loader': 3.0.2_7xcwfsfqkm3z47jew3ci4ezh7m + '@endemolshinegroup/cosmiconfig-typescript-loader': 3.0.2(cosmiconfig@7.0.0)(typescript@4.9.5) '@octokit/core': 3.6.0 '@octokit/plugin-enterprise-compatibility': 1.3.0 '@octokit/plugin-retry': 3.0.9 - '@octokit/plugin-throttling': 3.7.0_@octokit+core@3.6.0 + '@octokit/plugin-throttling': 3.7.0(@octokit/core@3.6.0) '@octokit/rest': 18.12.0 await-to-js: 3.0.0 chalk: 4.1.2 @@ -4186,7 +5727,7 @@ packages: https-proxy-agent: 5.0.1 import-cwd: 3.0.0 import-from: 3.0.0 - io-ts: 2.2.20_fp-ts@2.13.1 + io-ts: 2.2.20(fp-ts@2.13.1) lodash.chunk: 4.2.0 log-symbols: 4.1.0 node-fetch: 2.6.7 @@ -4199,7 +5740,7 @@ packages: tapable: 2.2.1 terminal-link: 2.1.1 tinycolor2: 1.6.0 - ts-node: 10.9.1_j6r65ghnzvzk7vhdh4hyogrm4a + ts-node: 10.9.1(@swc/core@1.3.49)(@types/node@16.11.7)(typescript@4.9.5) tslib: 2.1.0 type-fest: 0.21.3 typescript: 4.9.5 @@ -4213,17 +5754,17 @@ packages: - supports-color dev: true - /@auto-it/npm/10.44.0_j6r65ghnzvzk7vhdh4hyogrm4a: + /@auto-it/npm@10.44.0(@swc/core@1.3.49)(@types/node@16.11.7)(typescript@4.9.5): resolution: {integrity: sha512-QQ/ZbLCWd7nrREmG4vgBzBeKb4uKHx2TkGwFB3MrLgyCry0JM91OdG0/p485vdbyPC1gX31eYMhfAswiglboDA==} dependencies: - '@auto-it/core': 10.44.0_j6r65ghnzvzk7vhdh4hyogrm4a + '@auto-it/core': 10.44.0(@swc/core@1.3.49)(@types/node@16.11.7)(typescript@4.9.5) '@auto-it/package-json-utils': 10.44.0 await-to-js: 3.0.0 endent: 2.1.0 env-ci: 5.5.0 fp-ts: 2.13.1 get-monorepo-packages: 1.2.0 - io-ts: 2.2.20_fp-ts@2.13.1 + io-ts: 2.2.20(fp-ts@2.13.1) registry-url: 5.1.0 semver: 7.4.0 tslib: 2.1.0 @@ -4239,7 +5780,7 @@ packages: - typescript dev: true - /@auto-it/package-json-utils/10.44.0: + /@auto-it/package-json-utils@10.44.0: resolution: {integrity: sha512-M6khrxIl0jmeCHs2/rH93ZExybdN8+5CEBZaGrkmNhqLB1zCyST04Gi1yL2clT+w3ifCshgG1A/xGYKD/AhMzQ==} engines: {node: '>=10.x'} dependencies: @@ -4247,14 +5788,14 @@ packages: parse-github-url: 1.0.2 dev: true - /@auto-it/released/10.44.0_j6r65ghnzvzk7vhdh4hyogrm4a: + /@auto-it/released@10.44.0(@swc/core@1.3.49)(@types/node@16.11.7)(typescript@4.9.5): resolution: {integrity: sha512-+ntDOoSDijLqMYmfW7M7raS2Bh9A1mdADfET89rWgUWuIFVK9CQDTxKPnsJLL/MAyfGsrBJc7mnH+4HAenMl+Q==} dependencies: '@auto-it/bot-list': 10.44.0 - '@auto-it/core': 10.44.0_j6r65ghnzvzk7vhdh4hyogrm4a + '@auto-it/core': 10.44.0(@swc/core@1.3.49)(@types/node@16.11.7)(typescript@4.9.5) deepmerge: 4.3.1 fp-ts: 2.13.1 - io-ts: 2.2.20_fp-ts@2.13.1 + io-ts: 2.2.20(fp-ts@2.13.1) tslib: 2.1.0 transitivePeerDependencies: - '@swc/core' @@ -4265,12 +5806,12 @@ packages: - typescript dev: true - /@auto-it/version-file/10.44.0_j6r65ghnzvzk7vhdh4hyogrm4a: + /@auto-it/version-file@10.44.0(@swc/core@1.3.49)(@types/node@16.11.7)(typescript@4.9.5): resolution: {integrity: sha512-C71UrnjHCD7FXGrEX0ECAvY3Uiokln+7cpGM2X18AmdZlwWEAmWAOwCd7XRPb/TlWYHgUd7OjvJZNlsv2cc2Fw==} dependencies: - '@auto-it/core': 10.44.0_j6r65ghnzvzk7vhdh4hyogrm4a + '@auto-it/core': 10.44.0(@swc/core@1.3.49)(@types/node@16.11.7)(typescript@4.9.5) fp-ts: 2.13.1 - io-ts: 2.2.20_fp-ts@2.13.1 + io-ts: 2.2.20(fp-ts@2.13.1) semver: 7.5.4 tslib: 1.10.0 transitivePeerDependencies: @@ -4282,14 +5823,14 @@ packages: - typescript dev: true - /@aw-web-design/x-default-browser/1.4.126: + /@aw-web-design/x-default-browser@1.4.126: resolution: {integrity: sha512-Xk1sIhyNC/esHGGVjL/niHLowM0csl/kFO5uawBy4IrWwy0o1G8LGt3jP6nmWGz+USxeeqbihAmp/oVZju6wug==} hasBin: true dependencies: default-browser-id: 3.0.0 dev: true - /@aws-crypto/crc32/3.0.0: + /@aws-crypto/crc32@3.0.0: resolution: {integrity: sha512-IzSgsrxUcsrejQbPVilIKy16kAT52EwB6zSaI+M3xxIhKh5+aldEyvI+z6erM7TCLB2BJsFrtHjp6/4/sr+3dA==} dependencies: '@aws-crypto/util': 3.0.0 @@ -4297,7 +5838,7 @@ packages: tslib: 1.14.1 dev: false - /@aws-crypto/crc32c/3.0.0: + /@aws-crypto/crc32c@3.0.0: resolution: {integrity: sha512-ENNPPManmnVJ4BTXlOjAgD7URidbAznURqD0KvfREyc4o20DPYdEldU1f5cQ7Jbj0CJJSPaMIk/9ZshdB3210w==} dependencies: '@aws-crypto/util': 3.0.0 @@ -4305,13 +5846,13 @@ packages: tslib: 1.14.1 dev: false - /@aws-crypto/ie11-detection/3.0.0: + /@aws-crypto/ie11-detection@3.0.0: resolution: {integrity: sha512-341lBBkiY1DfDNKai/wXM3aujNBkXR7tq1URPQDL9wi3AUbI80NR74uF1TXHMm7po1AcnFk8iu2S2IeU/+/A+Q==} dependencies: tslib: 1.14.1 dev: false - /@aws-crypto/sha1-browser/3.0.0: + /@aws-crypto/sha1-browser@3.0.0: resolution: {integrity: sha512-NJth5c997GLHs6nOYTzFKTbYdMNA6/1XlKVgnZoaZcQ7z7UJlOgj2JdbHE8tiYLS3fzXNCguct77SPGat2raSw==} dependencies: '@aws-crypto/ie11-detection': 3.0.0 @@ -4323,7 +5864,7 @@ packages: tslib: 1.14.1 dev: false - /@aws-crypto/sha256-browser/3.0.0: + /@aws-crypto/sha256-browser@3.0.0: resolution: {integrity: sha512-8VLmW2B+gjFbU5uMeqtQM6Nj0/F1bro80xQXCW6CQBWgosFWXTx77aeOF5CAIAmbOK64SdMBJdNr6J41yP5mvQ==} dependencies: '@aws-crypto/ie11-detection': 3.0.0 @@ -4336,7 +5877,7 @@ packages: tslib: 1.14.1 dev: false - /@aws-crypto/sha256-js/3.0.0: + /@aws-crypto/sha256-js@3.0.0: resolution: {integrity: sha512-PnNN7os0+yd1XvXAy23CFOmTbMaDxgxXtTKHybrJ39Y8kGzBATgBFibWJKH6BhytLI/Zyszs87xCOBNyBig6vQ==} dependencies: '@aws-crypto/util': 3.0.0 @@ -4344,13 +5885,13 @@ packages: tslib: 1.14.1 dev: false - /@aws-crypto/supports-web-crypto/3.0.0: + /@aws-crypto/supports-web-crypto@3.0.0: resolution: {integrity: sha512-06hBdMwUAb2WFTuGG73LSC0wfPu93xWwo5vL2et9eymgmu3Id5vFAHBbajVWiGhPO37qcsdCap/FqXvJGJWPIg==} dependencies: tslib: 1.14.1 dev: false - /@aws-crypto/util/3.0.0: + /@aws-crypto/util@3.0.0: resolution: {integrity: sha512-2OJlpeJpCR48CC8r+uKVChzs9Iungj9wkZrl8Z041DWEWvyIHILYKCPNzJghKsivj+S3mLo6BVc7mBNzdxA46w==} dependencies: '@aws-sdk/types': 3.387.0 @@ -4358,7 +5899,7 @@ packages: tslib: 1.14.1 dev: false - /@aws-sdk/client-s3/3.388.0: + /@aws-sdk/client-s3@3.388.0: resolution: {integrity: sha512-9UN8gtr/4e4YnHb3Kb4VsxGTDe6olkL90ivK09jKwG2SX8m5OY2fIHSjtyqUHDuFb67JOk3WVEMbZEfxfx46+w==} engines: {node: '>=14.0.0'} dependencies: @@ -4421,7 +5962,7 @@ packages: - aws-crt dev: false - /@aws-sdk/client-ses/3.382.0: + /@aws-sdk/client-ses@3.382.0: resolution: {integrity: sha512-rP31TG75zlg7PXjUw005OXCp7lPVXw1amsNnLYx98f2lDiuBmBWx7t4Gqok0TPSmVY01jwZpOzvziujIMCLDlA==} engines: {node: '>=14.0.0'} dependencies: @@ -4467,7 +6008,7 @@ packages: - aws-crt dev: false - /@aws-sdk/client-sns/3.388.0: + /@aws-sdk/client-sns@3.388.0: resolution: {integrity: sha512-qFyfFM5OAAIDYl4fxfuNg5db3inkXE8TMykIlhQvKSvEzRNpsq3jVaqxgglNQuWG/qlyn6dO9A+kXMVy51/wTA==} engines: {node: '>=14.0.0'} dependencies: @@ -4512,7 +6053,7 @@ packages: - aws-crt dev: false - /@aws-sdk/client-sso-oidc/3.382.0: + /@aws-sdk/client-sso-oidc@3.382.0: resolution: {integrity: sha512-hTfvB1ftbrqaz7qiEkmRobzUQwG34oZlByobn8Frdr5ZQbJk969bX6evQAPyKlJEr26+kL9TnaX+rbLR/+gwHQ==} engines: {node: '>=14.0.0'} dependencies: @@ -4553,7 +6094,7 @@ packages: - aws-crt dev: false - /@aws-sdk/client-sso/3.382.0: + /@aws-sdk/client-sso@3.382.0: resolution: {integrity: sha512-ge11t4hJllOF8pBNF0p1X52lLqUsLGAoey24fvk3fyvvczeLpegGYh2kdLG0iwFTDgRxaUqK+kboH5Wy9ux/pw==} engines: {node: '>=14.0.0'} dependencies: @@ -4594,7 +6135,7 @@ packages: - aws-crt dev: false - /@aws-sdk/client-sso/3.387.0: + /@aws-sdk/client-sso@3.387.0: resolution: {integrity: sha512-E7uKSvbA0XMKSN5KLInf52hmMpe9/OKo6N9OPffGXdn3fNEQlvyQq3meUkqG7Is0ldgsQMz5EUBNtNybXzr3tQ==} engines: {node: '>=14.0.0'} dependencies: @@ -4635,7 +6176,7 @@ packages: - aws-crt dev: false - /@aws-sdk/client-sts/3.382.0: + /@aws-sdk/client-sts@3.382.0: resolution: {integrity: sha512-G5wgahrOqmrljjyLVGASIZUXIIdalbCo0z4PuFHdb2R2CVfwO8renfgrmk4brT9tIxIfen5bRA7ftXMe7yrgRA==} engines: {node: '>=14.0.0'} dependencies: @@ -4680,7 +6221,7 @@ packages: - aws-crt dev: false - /@aws-sdk/client-sts/3.388.0: + /@aws-sdk/client-sts@3.388.0: resolution: {integrity: sha512-y9FAcAYHT8O6T/jqhgsIQUb4gLiSTKD3xtzudDvjmFi8gl0oRIY1npbeckSiK6k07VQugm2s64I0nDnDxtWsBg==} engines: {node: '>=14.0.0'} dependencies: @@ -4725,7 +6266,7 @@ packages: - aws-crt dev: false - /@aws-sdk/credential-provider-env/3.378.0: + /@aws-sdk/credential-provider-env@3.378.0: resolution: {integrity: sha512-B2OVdO9kBClDwGgWTBLAQwFV8qYTYGyVujg++1FZFSFMt8ORFdZ5fNpErvJtiSjYiOOQMzyBeSNhKyYNXCiJjQ==} engines: {node: '>=14.0.0'} dependencies: @@ -4735,7 +6276,7 @@ packages: tslib: 2.6.2 dev: false - /@aws-sdk/credential-provider-env/3.387.0: + /@aws-sdk/credential-provider-env@3.387.0: resolution: {integrity: sha512-PVqNk7XPIYe5CMYNvELkcALtkl/pIM8/uPtqEtTg+mgnZBeL4fAmgXZiZMahQo1DxP5t/JaK384f6JG+A0qDjA==} engines: {node: '>=14.0.0'} dependencies: @@ -4745,7 +6286,7 @@ packages: tslib: 2.6.2 dev: false - /@aws-sdk/credential-provider-ini/3.382.0: + /@aws-sdk/credential-provider-ini@3.382.0: resolution: {integrity: sha512-31pi44WWri2WQmagqptUv7x3Nq8pQ6H06OCQx5goEm77SosSdwQwyBPrS9Pg0yI9aljFAxF+rZ75degsCorbQg==} engines: {node: '>=14.0.0'} dependencies: @@ -4763,7 +6304,7 @@ packages: - aws-crt dev: false - /@aws-sdk/credential-provider-ini/3.388.0: + /@aws-sdk/credential-provider-ini@3.388.0: resolution: {integrity: sha512-3dg3A8AiZ5vXkSAYyyI3V/AW3Eo6KQJyE/glA+Nr2M0oAjT4z3vHhS3pf2B+hfKGZBTuKKgxusrrhrQABd/Diw==} engines: {node: '>=14.0.0'} dependencies: @@ -4781,7 +6322,7 @@ packages: - aws-crt dev: false - /@aws-sdk/credential-provider-node/3.382.0: + /@aws-sdk/credential-provider-node@3.382.0: resolution: {integrity: sha512-q6AWCCb0E0cH/Y5Dtln0QssbCBXDbV4PoTV3EdRuGoJcHyNfHJ8X0mqcc7k44wG4Piazu+ufZThvn43W7W9a4g==} engines: {node: '>=14.0.0'} dependencies: @@ -4800,7 +6341,7 @@ packages: - aws-crt dev: false - /@aws-sdk/credential-provider-node/3.388.0: + /@aws-sdk/credential-provider-node@3.388.0: resolution: {integrity: sha512-BqWAkIG08gj/wevpesaZhAjALjfUNVjseHQRk+DNUoHIfyibW7Ahf3q/GIPs11dA2o8ECwR9/fo68Sq+sK799A==} engines: {node: '>=14.0.0'} dependencies: @@ -4819,7 +6360,7 @@ packages: - aws-crt dev: false - /@aws-sdk/credential-provider-process/3.378.0: + /@aws-sdk/credential-provider-process@3.378.0: resolution: {integrity: sha512-KFTIy7u+wXj3eDua4rgS0tODzMnXtXhAm1RxzCW9FL5JLBBrd82ymCj1Dp72217Sw5Do6NjCnDTTNkCHZMA77w==} engines: {node: '>=14.0.0'} dependencies: @@ -4830,7 +6371,7 @@ packages: tslib: 2.6.2 dev: false - /@aws-sdk/credential-provider-process/3.387.0: + /@aws-sdk/credential-provider-process@3.387.0: resolution: {integrity: sha512-tQScLHmDlqkQN+mqw4s3cxepEUeHYDhFl5eH+J8puvPqWjXMYpCEdY79SAtWs6SZd4CWiZ0VLeYU6xQBZengbQ==} engines: {node: '>=14.0.0'} dependencies: @@ -4841,7 +6382,7 @@ packages: tslib: 2.6.2 dev: false - /@aws-sdk/credential-provider-sso/3.382.0: + /@aws-sdk/credential-provider-sso@3.382.0: resolution: {integrity: sha512-tKCQKqxnAHeRD7pQNmDmLWwC7pt5koo6yiQTVQ382U+8xx7BNsApE1zdC4LrtrVN1FYqVbw5kXjYFtSCtaUxGA==} engines: {node: '>=14.0.0'} dependencies: @@ -4856,7 +6397,7 @@ packages: - aws-crt dev: false - /@aws-sdk/credential-provider-sso/3.388.0: + /@aws-sdk/credential-provider-sso@3.388.0: resolution: {integrity: sha512-RH02+rntaO0UhnSBr42n+7q8HOztc+Dets/hh6cWovf3Yi9s9ghLgYLN9FXpSosfot3XkmT/HOCa+CphAmGN9A==} engines: {node: '>=14.0.0'} dependencies: @@ -4871,7 +6412,7 @@ packages: - aws-crt dev: false - /@aws-sdk/credential-provider-web-identity/3.378.0: + /@aws-sdk/credential-provider-web-identity@3.378.0: resolution: {integrity: sha512-GWjydOszhc4xDF8xuPtBvboglXQr0gwCW1oHAvmLcOT38+Hd6qnKywnMSeoXYRPgoKfF9TkWQgW1jxplzCG0UA==} engines: {node: '>=14.0.0'} dependencies: @@ -4881,7 +6422,7 @@ packages: tslib: 2.6.2 dev: false - /@aws-sdk/credential-provider-web-identity/3.387.0: + /@aws-sdk/credential-provider-web-identity@3.387.0: resolution: {integrity: sha512-6ueMPl+J3KWv6ZaAWF4Z138QCuBVFZRVAgwbtP3BNqWrrs4Q6TPksOQJ79lRDMpv0EUoyVl04B6lldNlhN8RdA==} engines: {node: '>=14.0.0'} dependencies: @@ -4891,7 +6432,7 @@ packages: tslib: 2.6.2 dev: false - /@aws-sdk/middleware-bucket-endpoint/3.387.0: + /@aws-sdk/middleware-bucket-endpoint@3.387.0: resolution: {integrity: sha512-o7Dsq0YTUHFcKXD6+30/fXv/Wzdxqz9WonhCu3ZFPwTDLZgOM4QDDKW8EcC1SplKP1IUyaEli8Affodag9T1cQ==} engines: {node: '>=14.0.0'} dependencies: @@ -4903,7 +6444,7 @@ packages: tslib: 2.6.2 dev: false - /@aws-sdk/middleware-expect-continue/3.387.0: + /@aws-sdk/middleware-expect-continue@3.387.0: resolution: {integrity: sha512-w415a4tjQc6a7isq0AEDWFBC0HWUCHXEDjDl94UACxfMmS9bVabuf04t9CQ+nBBVs6HdiNdfdc/pBR2pRwx2Yg==} engines: {node: '>=14.0.0'} dependencies: @@ -4913,7 +6454,7 @@ packages: tslib: 2.6.2 dev: false - /@aws-sdk/middleware-flexible-checksums/3.387.0: + /@aws-sdk/middleware-flexible-checksums@3.387.0: resolution: {integrity: sha512-QlH97rrKlcMyLG+2ps7+DtBHfPyRIpi7sD3y0iko2u3PGXk+PoLPK8wWyGql9sFopOYTl6/Jh2Rb1b6z6NbjEA==} engines: {node: '>=14.0.0'} dependencies: @@ -4927,7 +6468,7 @@ packages: tslib: 2.6.2 dev: false - /@aws-sdk/middleware-host-header/3.379.1: + /@aws-sdk/middleware-host-header@3.379.1: resolution: {integrity: sha512-LI4KpAFWNWVr2aH2vRVblr0Y8tvDz23lj8LOmbDmCrzd5M21nxuocI/8nEAQj55LiTIf9Zs+dHCdsyegnFXdrA==} engines: {node: '>=14.0.0'} dependencies: @@ -4937,7 +6478,7 @@ packages: tslib: 2.6.2 dev: false - /@aws-sdk/middleware-host-header/3.387.0: + /@aws-sdk/middleware-host-header@3.387.0: resolution: {integrity: sha512-EWm9PXSr8dSp7hnRth1U7OfelXQp9dLf1yS1kUL+UhppYDJpjhdP7ql3NI4xJKw8e76sP2FuJYEuzWnJHuWoyQ==} engines: {node: '>=14.0.0'} dependencies: @@ -4947,7 +6488,7 @@ packages: tslib: 2.6.2 dev: false - /@aws-sdk/middleware-location-constraint/3.387.0: + /@aws-sdk/middleware-location-constraint@3.387.0: resolution: {integrity: sha512-Ipdry2V58CpDcWD0ZTz6yFtpTASEBxbuWdqUUYW7pOkZ/5GPGH8NhBky7M38iGqAO6FNysvWEVCUpIqNGkI1lw==} engines: {node: '>=14.0.0'} dependencies: @@ -4956,7 +6497,7 @@ packages: tslib: 2.6.2 dev: false - /@aws-sdk/middleware-logger/3.378.0: + /@aws-sdk/middleware-logger@3.378.0: resolution: {integrity: sha512-l1DyaDLm3KeBMNMuANI3scWh8Xvu248x+vw6Z7ExWOhGXFmQ1MW7YvASg/SdxWkhlF9HmkkTif1LdMB22x6QDA==} engines: {node: '>=14.0.0'} dependencies: @@ -4965,7 +6506,7 @@ packages: tslib: 2.6.2 dev: false - /@aws-sdk/middleware-logger/3.387.0: + /@aws-sdk/middleware-logger@3.387.0: resolution: {integrity: sha512-FjAvJr1XyaInT81RxUwgifnbXoFJrRBFc64XeFJgFanGIQCWLYxRrK2HV9eBpao/AycbmuoHgLd/f0sa4hZFoQ==} engines: {node: '>=14.0.0'} dependencies: @@ -4974,7 +6515,7 @@ packages: tslib: 2.6.2 dev: false - /@aws-sdk/middleware-recursion-detection/3.378.0: + /@aws-sdk/middleware-recursion-detection@3.378.0: resolution: {integrity: sha512-mUMfHAz0oGNIWiTZHTVJb+I515Hqs2zx1j36Le4MMiiaMkPW1SRUF1FIwGuc1wh6E8jB5q+XfEMriDjRi4TZRA==} engines: {node: '>=14.0.0'} dependencies: @@ -4984,7 +6525,7 @@ packages: tslib: 2.6.2 dev: false - /@aws-sdk/middleware-recursion-detection/3.387.0: + /@aws-sdk/middleware-recursion-detection@3.387.0: resolution: {integrity: sha512-ZF45T785ru8OwvYZw6awD9Z76OwSMM1eZzj2eY+FDz1cHfkpLjxEiti2iIH1FxbyK7n9ZqDUx29lVlCv238YyQ==} engines: {node: '>=14.0.0'} dependencies: @@ -4994,7 +6535,7 @@ packages: tslib: 2.6.2 dev: false - /@aws-sdk/middleware-sdk-s3/3.387.0: + /@aws-sdk/middleware-sdk-s3@3.387.0: resolution: {integrity: sha512-OIUBDzGhglI6KjXVwPLh7hRbrfCpSTwWRkbXbLrPgZZuzWMoJJ3q59RVkpLnAV9Mdkg6+YA6JTw4k4hcmJblVw==} engines: {node: '>=14.0.0'} dependencies: @@ -5005,7 +6546,7 @@ packages: tslib: 2.6.2 dev: false - /@aws-sdk/middleware-sdk-sts/3.379.1: + /@aws-sdk/middleware-sdk-sts@3.379.1: resolution: {integrity: sha512-SK3gSyT0XbLiY12+AjLFYL9YngxOXHnZF3Z33Cdd4a+AUYrVBV7JBEEGD1Nlwrcmko+3XgaKlmgUaR5s91MYvg==} engines: {node: '>=14.0.0'} dependencies: @@ -5015,7 +6556,7 @@ packages: tslib: 2.6.2 dev: false - /@aws-sdk/middleware-sdk-sts/3.387.0: + /@aws-sdk/middleware-sdk-sts@3.387.0: resolution: {integrity: sha512-7ZzRKOJ4V/JDQmKz9z+FjZqw59mrMATEMLR6ff0H0JHMX0Uk5IX8TQB058ss+ar14qeJ4UcteYzCqHNI0O1BHw==} engines: {node: '>=14.0.0'} dependencies: @@ -5025,7 +6566,7 @@ packages: tslib: 2.6.2 dev: false - /@aws-sdk/middleware-signing/3.379.1: + /@aws-sdk/middleware-signing@3.379.1: resolution: {integrity: sha512-kBk2ZUvR84EM4fICjr8K+Ykpf8SI1UzzPp2/UVYZ0X+4H/ZCjfSqohGRwHykMqeplne9qHSL7/rGJs1H3l3gPg==} engines: {node: '>=14.0.0'} dependencies: @@ -5038,7 +6579,7 @@ packages: tslib: 2.6.2 dev: false - /@aws-sdk/middleware-signing/3.387.0: + /@aws-sdk/middleware-signing@3.387.0: resolution: {integrity: sha512-oJXlE0MES8gxNLo137PPNNiOICQGOaETTvq3kBSJgb/gtEAxQajMIlaNT7s1wsjOAruFHt4975nCXuY4lpx7GQ==} engines: {node: '>=14.0.0'} dependencies: @@ -5051,7 +6592,7 @@ packages: tslib: 2.6.2 dev: false - /@aws-sdk/middleware-ssec/3.387.0: + /@aws-sdk/middleware-ssec@3.387.0: resolution: {integrity: sha512-Jtie1gqqcs7ZuYDlz/kuI3CKCXoCL5Ov/Gj5X8/XmwrQJEpuB6z0KY5H1qY0xo+jtAhC8nDPv0GnuLoOfn85hw==} engines: {node: '>=14.0.0'} dependencies: @@ -5060,7 +6601,7 @@ packages: tslib: 2.6.2 dev: false - /@aws-sdk/middleware-user-agent/3.382.0: + /@aws-sdk/middleware-user-agent@3.382.0: resolution: {integrity: sha512-LFRW1jmXOrOAd3911ktn6oaYmuurNnulbdRMOUdwz99GGdLVFipQhOi9idKswb8IOhPa4jEVQt25Kcv7ctvu0A==} engines: {node: '>=14.0.0'} dependencies: @@ -5071,7 +6612,7 @@ packages: tslib: 2.6.2 dev: false - /@aws-sdk/middleware-user-agent/3.387.0: + /@aws-sdk/middleware-user-agent@3.387.0: resolution: {integrity: sha512-hTfFTwDtp86xS98BKa+RFuLfcvGftxwzrbZeisZV8hdb4ZhvNXjSxnvM3vetW0GUEnY9xHPSGyp2ERRTinPKFQ==} engines: {node: '>=14.0.0'} dependencies: @@ -5082,7 +6623,7 @@ packages: tslib: 2.6.2 dev: false - /@aws-sdk/s3-request-presigner/3.388.0: + /@aws-sdk/s3-request-presigner@3.388.0: resolution: {integrity: sha512-vMdIS5ce5zTEaZUsbpoMf8uQNjF2J2vRizsr5pomV71zLUdLYubSr5TA7fKBSimwjS3XMCyKX2rJkGGVK5JGmQ==} engines: {node: '>=14.0.0'} dependencies: @@ -5098,7 +6639,7 @@ packages: - '@aws-sdk/signature-v4-crt' dev: false - /@aws-sdk/signature-v4-multi-region/3.387.0: + /@aws-sdk/signature-v4-multi-region@3.387.0: resolution: {integrity: sha512-SGuUbEFi8BXYVv4M7Hc0488I7uZbTVBW19j/B7bnyfbKFrndBXM366s/mChx4iELtESQ61AAstyafx5nGj5tIg==} engines: {node: '>=14.0.0'} peerDependencies: @@ -5114,7 +6655,7 @@ packages: tslib: 2.6.2 dev: false - /@aws-sdk/token-providers/3.382.0: + /@aws-sdk/token-providers@3.382.0: resolution: {integrity: sha512-axn4IyPpHdkXi8G06KCB3tPz79DipZFFH9N9YVDpLMnDYTdfX36HGdYzINaQc+z+XPbEpa1ZpoIzWScHRjFjdg==} engines: {node: '>=14.0.0'} dependencies: @@ -5128,7 +6669,7 @@ packages: - aws-crt dev: false - /@aws-sdk/token-providers/3.388.0: + /@aws-sdk/token-providers@3.388.0: resolution: {integrity: sha512-2lo1gFJl624kfjo/YdU6zW+k6dEwhoqjNkDNbOZEFgS1KDofHe9GX8W4/ReKb0Ggho5/EcjzZ53/1CjkzUq4tA==} engines: {node: '>=14.0.0'} dependencies: @@ -5171,7 +6712,7 @@ packages: - aws-crt dev: false - /@aws-sdk/types/3.378.0: + /@aws-sdk/types@3.378.0: resolution: {integrity: sha512-qP0CvR/ItgktmN8YXpGQglzzR/6s0nrsQ4zIfx3HMwpsBTwuouYahcCtF1Vr82P4NFcoDA412EJahJ2pIqEd+w==} engines: {node: '>=14.0.0'} dependencies: @@ -5179,7 +6720,7 @@ packages: tslib: 2.6.2 dev: false - /@aws-sdk/types/3.387.0: + /@aws-sdk/types@3.387.0: resolution: {integrity: sha512-YTjFabNwjTF+6yl88f0/tWff018qmmgMmjlw45s6sdVKueWxdxV68U7gepNLF2nhaQPZa6FDOBoA51NaviVs0Q==} engines: {node: '>=14.0.0'} dependencies: @@ -5187,14 +6728,14 @@ packages: tslib: 2.6.2 dev: false - /@aws-sdk/util-arn-parser/3.310.0: + /@aws-sdk/util-arn-parser@3.310.0: resolution: {integrity: sha512-jL8509owp/xB9+Or0pvn3Fe+b94qfklc2yPowZZIFAkFcCSIdkIglz18cPDWnYAcy9JGewpMS1COXKIUhZkJsA==} engines: {node: '>=14.0.0'} dependencies: tslib: 2.6.2 dev: false - /@aws-sdk/util-endpoints/3.382.0: + /@aws-sdk/util-endpoints@3.382.0: resolution: {integrity: sha512-flajPyjmjNG67fXk7l4GoTB/7J11VBqtFZXuuAZKhKU07Ia3IQupsFqNf5lV8D44ZgjnKH0fTGnv3dUALjW7Wg==} engines: {node: '>=14.0.0'} dependencies: @@ -5202,7 +6743,7 @@ packages: tslib: 2.6.2 dev: false - /@aws-sdk/util-endpoints/3.387.0: + /@aws-sdk/util-endpoints@3.387.0: resolution: {integrity: sha512-g7kvuCXehGXHHBw9PkSQdwVyDFmNUZLmfrRmqMyrMDG9QLQrxr4pyWcSaYgTE16yUzhQQOR+QSey+BL6W9/N6g==} engines: {node: '>=14.0.0'} dependencies: @@ -5210,7 +6751,7 @@ packages: tslib: 2.6.2 dev: false - /@aws-sdk/util-format-url/3.387.0: + /@aws-sdk/util-format-url@3.387.0: resolution: {integrity: sha512-kiy7+93M1JeEn3pLJhY/q4G3f9tGsSbsgHKg2mDTCIxJaUmnHIYINN9vhEYQcDCMcWvOF0rzkuB9L8uAzR4O3g==} engines: {node: '>=14.0.0'} dependencies: @@ -5220,14 +6761,14 @@ packages: tslib: 2.6.2 dev: false - /@aws-sdk/util-locate-window/3.310.0: + /@aws-sdk/util-locate-window@3.310.0: resolution: {integrity: sha512-qo2t/vBTnoXpjKxlsC2e1gBrRm80M3bId27r0BRB2VniSSe7bL1mmzM+/HFtujm0iAxtPM+aLEflLJlJeDPg0w==} engines: {node: '>=14.0.0'} dependencies: tslib: 2.6.2 dev: false - /@aws-sdk/util-user-agent-browser/3.378.0: + /@aws-sdk/util-user-agent-browser@3.378.0: resolution: {integrity: sha512-FSCpagzftK1W+m7Ar6lpX7/Gr9y5P56nhFYz8U4EYQ4PkufS6czWX9YW+/FA5OYV0vlQ/SvPqMnzoHIPUNhZrQ==} dependencies: '@aws-sdk/types': 3.378.0 @@ -5236,7 +6777,7 @@ packages: tslib: 2.6.2 dev: false - /@aws-sdk/util-user-agent-browser/3.387.0: + /@aws-sdk/util-user-agent-browser@3.387.0: resolution: {integrity: sha512-lpgSVvDqx+JjHZCTYs/yQSS7J71dPlJeAlvxc7bmx5m+vfwKe07HAnIs+929DngS0QbAp/VaXbTiMFsInLkO4Q==} dependencies: '@aws-sdk/types': 3.387.0 @@ -5245,7 +6786,7 @@ packages: tslib: 2.6.2 dev: false - /@aws-sdk/util-user-agent-node/3.378.0: + /@aws-sdk/util-user-agent-node@3.378.0: resolution: {integrity: sha512-IdwVJV0E96MkJeFte4dlWqvB+oiqCiZ5lOlheY3W9NynTuuX0GGYNC8Y9yIsV8Oava1+ujpJq0ww6qXdYxmO4A==} engines: {node: '>=14.0.0'} peerDependencies: @@ -5260,7 +6801,7 @@ packages: tslib: 2.6.2 dev: false - /@aws-sdk/util-user-agent-node/3.387.0: + /@aws-sdk/util-user-agent-node@3.387.0: resolution: {integrity: sha512-r9OVkcWpRYatjLhJacuHFgvO2T5s/Nu5DDbScMrkUD8b4aGIIqsrdZji0vZy9FCjsUFQMM92t9nt4SejrGjChA==} engines: {node: '>=14.0.0'} peerDependencies: @@ -5275,27 +6816,27 @@ packages: tslib: 2.6.2 dev: false - /@aws-sdk/util-utf8-browser/3.259.0: + /@aws-sdk/util-utf8-browser@3.259.0: resolution: {integrity: sha512-UvFa/vR+e19XookZF8RzFZBrw2EUkQWxiBW0yYQAhvk3C+QVGl0H3ouca8LDBlBfQKXwmW3huo/59H8rwb1wJw==} dependencies: tslib: 2.6.2 dev: false - /@aws-sdk/xml-builder/3.310.0: + /@aws-sdk/xml-builder@3.310.0: resolution: {integrity: sha512-TqELu4mOuSIKQCqj63fGVs86Yh+vBx5nHRpWKNUNhB2nPTpfbziTs5c1X358be3peVWA4wPxW7Nt53KIg1tnNw==} engines: {node: '>=14.0.0'} dependencies: tslib: 2.6.2 dev: false - /@azure/abort-controller/1.1.0: + /@azure/abort-controller@1.1.0: resolution: {integrity: sha512-TrRLIoSQVzfAJX9H1JeFjzAoDGcoK1IYX1UImfceTZpsyYfWr09Ss1aHW1y5TrrR3iq6RZLBwJ3E24uwPhwahw==} engines: {node: '>=12.0.0'} dependencies: tslib: 2.6.2 dev: false - /@azure/core-auth/1.4.0: + /@azure/core-auth@1.4.0: resolution: {integrity: sha512-HFrcTgmuSuukRf/EdPmqBrc5l6Q5Uu+2TbuhaKbgaCpP2TfAeiNaQPAadxO+CYBRHGUzIDteMAjFspFLDLnKVQ==} engines: {node: '>=12.0.0'} dependencies: @@ -5303,7 +6844,7 @@ packages: tslib: 2.6.2 dev: false - /@azure/core-http/3.0.0: + /@azure/core-http@3.0.0: resolution: {integrity: sha512-BxI2SlGFPPz6J1XyZNIVUf0QZLBKFX+ViFjKOkzqD18J1zOINIQ8JSBKKr+i+v8+MB6LacL6Nn/sP/TE13+s2Q==} engines: {node: '>=14.0.0'} dependencies: @@ -5325,7 +6866,7 @@ packages: - encoding dev: false - /@azure/core-lro/2.5.2: + /@azure/core-lro@2.5.2: resolution: {integrity: sha512-tucUutPhBwCPu6v16KEFYML81npEL6gnT+iwewXvK5ZD55sr0/Vw2jfQETMiKVeARRrXHB2QQ3SpxxGi1zAUWg==} engines: {node: '>=14.0.0'} dependencies: @@ -5335,14 +6876,14 @@ packages: tslib: 2.6.2 dev: false - /@azure/core-paging/1.5.0: + /@azure/core-paging@1.5.0: resolution: {integrity: sha512-zqWdVIt+2Z+3wqxEOGzR5hXFZ8MGKK52x4vFLw8n58pR6ZfKRx3EXYTxTaYxYHc/PexPUTyimcTWFJbji9Z6Iw==} engines: {node: '>=14.0.0'} dependencies: tslib: 2.6.2 dev: false - /@azure/core-tracing/1.0.0-preview.13: + /@azure/core-tracing@1.0.0-preview.13: resolution: {integrity: sha512-KxDlhXyMlh2Jhj2ykX6vNEU0Vou4nHr025KoSEiz7cS3BNiHNaZcdECk/DmLkEB0as5T7b/TpRcehJ5yV6NeXQ==} engines: {node: '>=12.0.0'} dependencies: @@ -5350,7 +6891,7 @@ packages: tslib: 2.6.2 dev: false - /@azure/core-util/1.3.0: + /@azure/core-util@1.3.0: resolution: {integrity: sha512-ANP0Er7R2KHHHjwmKzPF9wbd0gXvOX7yRRHeYL1eNd/OaNrMLyfZH/FQasHRVAf6rMXX+EAUpvYwLMFDHDI5Gw==} engines: {node: '>=14.0.0'} dependencies: @@ -5358,14 +6899,14 @@ packages: tslib: 2.6.2 dev: false - /@azure/logger/1.0.4: + /@azure/logger@1.0.4: resolution: {integrity: sha512-ustrPY8MryhloQj7OWGe+HrYx+aoiOxzbXTtgblbV3xwCqpzUK36phH3XNHQKj3EPonyFUuDTfR3qFhTEAuZEg==} engines: {node: '>=14.0.0'} dependencies: tslib: 2.6.2 dev: false - /@azure/storage-blob/12.13.0: + /@azure/storage-blob@12.13.0: resolution: {integrity: sha512-t3Q2lvBMJucgTjQcP5+hvEJMAsJSk0qmAnjDLie2td017IiduZbbC9BOcFfmwzR6y6cJdZOuewLCNFmEx9IrXA==} engines: {node: '>=14.0.0'} dependencies: @@ -5381,30 +6922,30 @@ packages: - encoding dev: false - /@babel/code-frame/7.12.11: + /@babel/code-frame@7.12.11: resolution: {integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==} dependencies: '@babel/highlight': 7.22.13 dev: true - /@babel/code-frame/7.21.4: + /@babel/code-frame@7.21.4: resolution: {integrity: sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==} engines: {node: '>=6.9.0'} dependencies: '@babel/highlight': 7.22.13 - /@babel/code-frame/7.22.13: + /@babel/code-frame@7.22.13: resolution: {integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==} engines: {node: '>=6.9.0'} dependencies: '@babel/highlight': 7.22.13 chalk: 2.4.2 - /@babel/compat-data/7.22.20: + /@babel/compat-data@7.22.20: resolution: {integrity: sha512-BQYjKbpXjoXwFW5jGqiizJQQT/aC7pFm9Ok1OWssonuguICi264lbgMzRp2ZMmRSlfkX6DsWDDcsrctK8Rwfiw==} engines: {node: '>=6.9.0'} - /@babel/core/7.19.3: + /@babel/core@7.19.3: resolution: {integrity: sha512-WneDJxdsjEvyKtXKsaBGbDeiyOjR5vYq4HcShxnIbG0qixpoHjI3MqeZM9NDvsojNCEBItQE4juOo/bU6e72gQ==} engines: {node: '>=6.9.0'} dependencies: @@ -5412,14 +6953,14 @@ packages: '@babel/code-frame': 7.22.13 '@babel/generator': 7.22.10 '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-module-transforms': 7.22.20_@babel+core@7.19.3 + '@babel/helper-module-transforms': 7.22.20(@babel/core@7.19.3) '@babel/helpers': 7.22.11 '@babel/parser': 7.22.16 '@babel/template': 7.22.15 '@babel/traverse': 7.22.11 '@babel/types': 7.22.19 convert-source-map: 1.9.0 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 @@ -5427,7 +6968,7 @@ packages: - supports-color dev: true - /@babel/core/7.20.12: + /@babel/core@7.20.12: resolution: {integrity: sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg==} engines: {node: '>=6.9.0'} dependencies: @@ -5435,14 +6976,14 @@ packages: '@babel/code-frame': 7.22.13 '@babel/generator': 7.22.10 '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-module-transforms': 7.22.20_@babel+core@7.20.12 + '@babel/helper-module-transforms': 7.22.20(@babel/core@7.20.12) '@babel/helpers': 7.22.11 '@babel/parser': 7.22.16 '@babel/template': 7.22.15 '@babel/traverse': 7.22.11 '@babel/types': 7.22.19 convert-source-map: 1.9.0 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 @@ -5450,7 +6991,7 @@ packages: - supports-color dev: true - /@babel/core/7.21.4: + /@babel/core@7.21.4: resolution: {integrity: sha512-qt/YV149Jman/6AfmlxJ04LMIu8bMoyl3RB91yTFrxQmgbrSvQMy7cI8Q62FHx1t8wJ8B5fu0UDoLwHAhUo1QA==} engines: {node: '>=6.9.0'} dependencies: @@ -5458,21 +6999,21 @@ packages: '@babel/code-frame': 7.22.13 '@babel/generator': 7.22.10 '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-module-transforms': 7.22.20_@babel+core@7.21.4 + '@babel/helper-module-transforms': 7.22.20(@babel/core@7.21.4) '@babel/helpers': 7.22.11 '@babel/parser': 7.22.16 '@babel/template': 7.22.15 '@babel/traverse': 7.22.11 '@babel/types': 7.22.19 convert-source-map: 1.9.0 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 transitivePeerDependencies: - supports-color - /@babel/core/7.22.11: + /@babel/core@7.22.11: resolution: {integrity: sha512-lh7RJrtPdhibbxndr6/xx0w8+CVlY5FJZiaSz908Fpy+G0xkBFTvwLcKJFF4PJxVfGhVWNebikpWGnOoC71juQ==} engines: {node: '>=6.9.0'} dependencies: @@ -5480,21 +7021,21 @@ packages: '@babel/code-frame': 7.22.13 '@babel/generator': 7.22.10 '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-module-transforms': 7.22.20_@babel+core@7.22.11 + '@babel/helper-module-transforms': 7.22.20(@babel/core@7.22.11) '@babel/helpers': 7.22.11 '@babel/parser': 7.22.16 '@babel/template': 7.22.15 '@babel/traverse': 7.22.11 '@babel/types': 7.22.19 convert-source-map: 1.9.0 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 transitivePeerDependencies: - supports-color - /@babel/eslint-parser/7.21.3_uigyy4cvxrfgnh6h4oubbidkhu: + /@babel/eslint-parser@7.21.3(@babel/core@7.22.11)(eslint@8.48.0): resolution: {integrity: sha512-kfhmPimwo6k4P8zxNs8+T7yR44q1LdpsZdE1NkCsVlfiuTPRfnGgjaF8Qgug9q9Pou17u6wneYF0lDCZJATMFg==} engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0} peerDependencies: @@ -5507,7 +7048,7 @@ packages: eslint-visitor-keys: 2.1.0 semver: 6.3.1 - /@babel/generator/7.20.14: + /@babel/generator@7.20.14: resolution: {integrity: sha512-AEmuXHdcD3A52HHXxaTmYlb8q/xMEhoRP67B3T4Oq7lbmSoqroMZzjnGj3+i1io3pdnF8iBYVu4Ilj+c4hBxYg==} engines: {node: '>=6.9.0'} dependencies: @@ -5516,7 +7057,7 @@ packages: jsesc: 2.5.2 dev: true - /@babel/generator/7.22.10: + /@babel/generator@7.22.10: resolution: {integrity: sha512-79KIf7YiWjjdZ81JnLujDRApWtl7BxTqWD88+FFdQEIOG8LJ0etDOM7CXuIgGJa55sGOwZVwuEsaLEm0PJ5/+A==} engines: {node: '>=6.9.0'} dependencies: @@ -5525,20 +7066,20 @@ packages: '@jridgewell/trace-mapping': 0.3.19 jsesc: 2.5.2 - /@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.22.19 dev: true - /@babel/helper-annotate-as-pure/7.22.5: + /@babel/helper-annotate-as-pure@7.22.5: resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.22.19 - /@babel/helper-builder-binary-assignment-operator-visitor/7.18.9: + /@babel/helper-builder-binary-assignment-operator-visitor@7.18.9: resolution: {integrity: sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==} engines: {node: '>=6.9.0'} dependencies: @@ -5546,13 +7087,13 @@ packages: '@babel/types': 7.22.19 dev: true - /@babel/helper-builder-binary-assignment-operator-visitor/7.22.15: + /@babel/helper-builder-binary-assignment-operator-visitor@7.22.15: resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.22.19 - /@babel/helper-compilation-targets/7.22.15: + /@babel/helper-compilation-targets@7.22.15: resolution: {integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==} engines: {node: '>=6.9.0'} dependencies: @@ -5562,7 +7103,7 @@ packages: lru-cache: 5.1.1 semver: 6.3.1 - /@babel/helper-create-class-features-plugin/7.21.4_@babel+core@7.20.12: + /@babel/helper-create-class-features-plugin@7.21.4(@babel/core@7.20.12): resolution: {integrity: sha512-46QrX2CQlaFRF4TkwfTt6nJD7IHq8539cCL7SDpqWSDeJKY1xylKKY5F/33mJhLZ3mFvKv2gGrVS6NkyF6qs+Q==} engines: {node: '>=6.9.0'} peerDependencies: @@ -5574,12 +7115,12 @@ packages: '@babel/helper-function-name': 7.22.5 '@babel/helper-member-expression-to-functions': 7.22.15 '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers': 7.22.20_@babel+core@7.20.12 + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.20.12) '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 dev: true - /@babel/helper-create-class-features-plugin/7.21.4_@babel+core@7.22.11: + /@babel/helper-create-class-features-plugin@7.21.4(@babel/core@7.22.11): resolution: {integrity: sha512-46QrX2CQlaFRF4TkwfTt6nJD7IHq8539cCL7SDpqWSDeJKY1xylKKY5F/33mJhLZ3mFvKv2gGrVS6NkyF6qs+Q==} engines: {node: '>=6.9.0'} peerDependencies: @@ -5591,11 +7132,11 @@ packages: '@babel/helper-function-name': 7.22.5 '@babel/helper-member-expression-to-functions': 7.22.15 '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers': 7.22.20_@babel+core@7.22.11 + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.22.11) '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 - /@babel/helper-create-class-features-plugin/7.22.15_@babel+core@7.20.12: + /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.20.12): resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -5607,13 +7148,13 @@ packages: '@babel/helper-function-name': 7.22.5 '@babel/helper-member-expression-to-functions': 7.22.15 '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers': 7.22.20_@babel+core@7.20.12 + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.20.12) '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 semver: 6.3.1 dev: true - /@babel/helper-create-class-features-plugin/7.22.15_@babel+core@7.21.4: + /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.21.4): resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -5625,13 +7166,13 @@ packages: '@babel/helper-function-name': 7.22.5 '@babel/helper-member-expression-to-functions': 7.22.15 '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers': 7.22.20_@babel+core@7.21.4 + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.21.4) '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 semver: 6.3.1 dev: true - /@babel/helper-create-class-features-plugin/7.22.15_@babel+core@7.22.11: + /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.22.11): resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -5643,12 +7184,12 @@ packages: '@babel/helper-function-name': 7.22.5 '@babel/helper-member-expression-to-functions': 7.22.15 '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers': 7.22.20_@babel+core@7.22.11 + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.22.11) '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 semver: 6.3.1 - /@babel/helper-create-regexp-features-plugin/7.21.4_@babel+core@7.20.12: + /@babel/helper-create-regexp-features-plugin@7.21.4(@babel/core@7.20.12): resolution: {integrity: sha512-M00OuhU+0GyZ5iBBN9czjugzWrEq2vDpf/zCYHxxf93ul/Q5rv+a5h+/+0WnI1AebHNVtl5bFV0qsJoH23DbfA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -5659,7 +7200,7 @@ packages: regexpu-core: 5.3.2 dev: true - /@babel/helper-create-regexp-features-plugin/7.21.4_@babel+core@7.22.11: + /@babel/helper-create-regexp-features-plugin@7.21.4(@babel/core@7.22.11): resolution: {integrity: sha512-M00OuhU+0GyZ5iBBN9czjugzWrEq2vDpf/zCYHxxf93ul/Q5rv+a5h+/+0WnI1AebHNVtl5bFV0qsJoH23DbfA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -5670,7 +7211,7 @@ packages: regexpu-core: 5.3.2 dev: true - /@babel/helper-create-regexp-features-plugin/7.22.15_@babel+core@7.20.12: + /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.20.12): resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==} engines: {node: '>=6.9.0'} peerDependencies: @@ -5682,7 +7223,7 @@ packages: semver: 6.3.1 dev: true - /@babel/helper-create-regexp-features-plugin/7.22.15_@babel+core@7.22.11: + /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.22.11): resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==} engines: {node: '>=6.9.0'} peerDependencies: @@ -5693,7 +7234,7 @@ packages: regexpu-core: 5.3.2 semver: 6.3.1 - /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.20.12: + /@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.20.12): resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==} peerDependencies: '@babel/core': ^7.4.0-0 @@ -5701,7 +7242,7 @@ packages: '@babel/core': 7.20.12 '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) lodash.debounce: 4.0.8 resolve: 1.22.2 semver: 6.3.1 @@ -5709,7 +7250,7 @@ packages: - supports-color dev: true - /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.22.11: + /@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.22.11): resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==} peerDependencies: '@babel/core': ^7.4.0-0 @@ -5717,14 +7258,14 @@ packages: '@babel/core': 7.22.11 '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) lodash.debounce: 4.0.8 resolve: 1.22.2 semver: 6.3.1 transitivePeerDependencies: - supports-color - /@babel/helper-define-polyfill-provider/0.4.2_@babel+core@7.22.11: + /@babel/helper-define-polyfill-provider@0.4.2(@babel/core@7.22.11): resolution: {integrity: sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 @@ -5732,55 +7273,55 @@ packages: '@babel/core': 7.22.11 '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) lodash.debounce: 4.0.8 resolve: 1.22.2 transitivePeerDependencies: - supports-color - /@babel/helper-environment-visitor/7.22.20: + /@babel/helper-environment-visitor@7.22.20: resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==} engines: {node: '>=6.9.0'} - /@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.22.19 dev: true - /@babel/helper-function-name/7.22.5: + /@babel/helper-function-name@7.22.5: resolution: {integrity: sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==} engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.22.15 '@babel/types': 7.22.19 - /@babel/helper-hoist-variables/7.22.5: + /@babel/helper-hoist-variables@7.22.5: resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.22.19 - /@babel/helper-member-expression-to-functions/7.22.15: + /@babel/helper-member-expression-to-functions@7.22.15: resolution: {integrity: sha512-qLNsZbgrNh0fDQBCPocSL8guki1hcPvltGDv/NxvUoABwFq7GkKSu1nRXeJkVZc+wJvne2E0RKQz+2SQrz6eAA==} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.22.19 - /@babel/helper-module-imports/7.21.4: + /@babel/helper-module-imports@7.21.4: resolution: {integrity: sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.22.19 - /@babel/helper-module-imports/7.22.15: + /@babel/helper-module-imports@7.22.15: resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.22.19 - /@babel/helper-module-transforms/7.22.20_@babel+core@7.19.3: + /@babel/helper-module-transforms@7.22.20(@babel/core@7.19.3): resolution: {integrity: sha512-dLT7JVWIUUxKOs1UnJUBR3S70YK+pKX6AbJgB2vMIvEkZkrfJDbYDJesnPshtKV4LhDOR3Oc5YULeDizRek+5A==} engines: {node: '>=6.9.0'} peerDependencies: @@ -5794,7 +7335,7 @@ packages: '@babel/helper-validator-identifier': 7.22.20 dev: true - /@babel/helper-module-transforms/7.22.20_@babel+core@7.20.12: + /@babel/helper-module-transforms@7.22.20(@babel/core@7.20.12): resolution: {integrity: sha512-dLT7JVWIUUxKOs1UnJUBR3S70YK+pKX6AbJgB2vMIvEkZkrfJDbYDJesnPshtKV4LhDOR3Oc5YULeDizRek+5A==} engines: {node: '>=6.9.0'} peerDependencies: @@ -5808,7 +7349,7 @@ packages: '@babel/helper-validator-identifier': 7.22.20 dev: true - /@babel/helper-module-transforms/7.22.20_@babel+core@7.21.4: + /@babel/helper-module-transforms@7.22.20(@babel/core@7.21.4): resolution: {integrity: sha512-dLT7JVWIUUxKOs1UnJUBR3S70YK+pKX6AbJgB2vMIvEkZkrfJDbYDJesnPshtKV4LhDOR3Oc5YULeDizRek+5A==} engines: {node: '>=6.9.0'} peerDependencies: @@ -5821,7 +7362,7 @@ packages: '@babel/helper-split-export-declaration': 7.22.6 '@babel/helper-validator-identifier': 7.22.20 - /@babel/helper-module-transforms/7.22.20_@babel+core@7.22.11: + /@babel/helper-module-transforms@7.22.20(@babel/core@7.22.11): resolution: {integrity: sha512-dLT7JVWIUUxKOs1UnJUBR3S70YK+pKX6AbJgB2vMIvEkZkrfJDbYDJesnPshtKV4LhDOR3Oc5YULeDizRek+5A==} engines: {node: '>=6.9.0'} peerDependencies: @@ -5834,28 +7375,28 @@ packages: '@babel/helper-split-export-declaration': 7.22.6 '@babel/helper-validator-identifier': 7.22.20 - /@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.22.19 dev: true - /@babel/helper-optimise-call-expression/7.22.5: + /@babel/helper-optimise-call-expression@7.22.5: resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.22.19 - /@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'} - /@babel/helper-plugin-utils/7.22.5: + /@babel/helper-plugin-utils@7.22.5: resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==} engines: {node: '>=6.9.0'} - /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.20.12: + /@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.20.12): resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -5868,7 +7409,7 @@ packages: '@babel/types': 7.22.19 dev: true - /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.22.11: + /@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.22.11): resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -5881,7 +7422,7 @@ packages: '@babel/types': 7.22.19 dev: true - /@babel/helper-remap-async-to-generator/7.22.20_@babel+core@7.20.12: + /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.20.12): resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -5893,7 +7434,7 @@ packages: '@babel/helper-wrap-function': 7.22.20 dev: true - /@babel/helper-remap-async-to-generator/7.22.20_@babel+core@7.22.11: + /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.22.11): resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -5904,7 +7445,7 @@ packages: '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-wrap-function': 7.22.20 - /@babel/helper-replace-supers/7.20.7: + /@babel/helper-replace-supers@7.20.7: resolution: {integrity: sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==} engines: {node: '>=6.9.0'} dependencies: @@ -5918,7 +7459,7 @@ packages: - supports-color dev: true - /@babel/helper-replace-supers/7.22.20_@babel+core@7.20.12: + /@babel/helper-replace-supers@7.22.20(@babel/core@7.20.12): resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -5930,7 +7471,7 @@ packages: '@babel/helper-optimise-call-expression': 7.22.5 dev: true - /@babel/helper-replace-supers/7.22.20_@babel+core@7.21.4: + /@babel/helper-replace-supers@7.22.20(@babel/core@7.21.4): resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -5942,7 +7483,7 @@ packages: '@babel/helper-optimise-call-expression': 7.22.5 dev: true - /@babel/helper-replace-supers/7.22.20_@babel+core@7.22.11: + /@babel/helper-replace-supers@7.22.20(@babel/core@7.22.11): resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -5953,49 +7494,49 @@ packages: '@babel/helper-member-expression-to-functions': 7.22.15 '@babel/helper-optimise-call-expression': 7.22.5 - /@babel/helper-simple-access/7.22.5: + /@babel/helper-simple-access@7.22.5: resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.22.19 - /@babel/helper-skip-transparent-expression-wrappers/7.22.5: + /@babel/helper-skip-transparent-expression-wrappers@7.22.5: resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.22.19 - /@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.22.19 dev: true - /@babel/helper-split-export-declaration/7.22.6: + /@babel/helper-split-export-declaration@7.22.6: resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.22.19 - /@babel/helper-string-parser/7.22.5: + /@babel/helper-string-parser@7.22.5: resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==} engines: {node: '>=6.9.0'} - /@babel/helper-validator-identifier/7.22.20: + /@babel/helper-validator-identifier@7.22.20: resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} engines: {node: '>=6.9.0'} - /@babel/helper-validator-option/7.21.0: + /@babel/helper-validator-option@7.21.0: resolution: {integrity: sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==} engines: {node: '>=6.9.0'} dev: true - /@babel/helper-validator-option/7.22.15: + /@babel/helper-validator-option@7.22.15: resolution: {integrity: sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==} engines: {node: '>=6.9.0'} - /@babel/helper-wrap-function/7.22.20: + /@babel/helper-wrap-function@7.22.20: resolution: {integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==} engines: {node: '>=6.9.0'} dependencies: @@ -6003,7 +7544,7 @@ packages: '@babel/template': 7.22.15 '@babel/types': 7.22.19 - /@babel/helpers/7.22.11: + /@babel/helpers@7.22.11: resolution: {integrity: sha512-vyOXC8PBWaGc5h7GMsNx68OH33cypkEDJCHvYVVgVbbxJDROYVtexSk0gK5iCF1xNjRIN2s8ai7hwkWDq5szWg==} engines: {node: '>=6.9.0'} dependencies: @@ -6013,7 +7554,7 @@ packages: transitivePeerDependencies: - supports-color - /@babel/highlight/7.22.13: + /@babel/highlight@7.22.13: resolution: {integrity: sha512-C/BaXcnnvBCmHTpz/VGZ8jgtE2aYlW4hxDhseJAWZb7gqGM/qtCK6iZUb0TyKFf7BOUsBH7Q7fkRsDRhg1XklQ==} engines: {node: '>=6.9.0'} dependencies: @@ -6021,14 +7562,14 @@ packages: chalk: 2.4.2 js-tokens: 4.0.0 - /@babel/parser/7.22.16: + /@babel/parser@7.22.16: resolution: {integrity: sha512-+gPfKv8UWeKKeJTUxe59+OobVcrYHETCsORl61EmSkmgymguYk/X5bp7GuUIXaFsc6y++v8ZxPsLSSuujqDphA==} engines: {node: '>=6.0.0'} hasBin: true dependencies: '@babel/types': 7.22.19 - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.22.11: + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.22.11): resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6038,7 +7579,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.22.15_@babel+core@7.20.12: + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.15(@babel/core@7.20.12): resolution: {integrity: sha512-FB9iYlz7rURmRJyXRKEnalYPPdn87H5no108cyuQQyMwlpJ2SJtpIUBI27kdTin956pz+LPypkPVPUTlxOmrsg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6048,7 +7589,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.22.15_@babel+core@7.22.11: + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.15(@babel/core@7.22.11): resolution: {integrity: sha512-FB9iYlz7rURmRJyXRKEnalYPPdn87H5no108cyuQQyMwlpJ2SJtpIUBI27kdTin956pz+LPypkPVPUTlxOmrsg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6057,7 +7598,7 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.20.7_@babel+core@7.22.11: + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7(@babel/core@7.22.11): resolution: {integrity: sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6066,10 +7607,10 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.22.11 + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.11) dev: true - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.22.15_@babel+core@7.20.12: + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.15(@babel/core@7.20.12): resolution: {integrity: sha512-Hyph9LseGvAeeXzikV88bczhsrLrIZqDPxO+sSmAunMPaGrBGhfMWzCPYTtiW9t+HzSE2wtV8e5cc5P6r1xMDQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6078,10 +7619,10 @@ packages: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-transform-optional-chaining': 7.22.15_@babel+core@7.20.12 + '@babel/plugin-transform-optional-chaining': 7.22.15(@babel/core@7.20.12) dev: true - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.22.15_@babel+core@7.22.11: + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.15(@babel/core@7.22.11): resolution: {integrity: sha512-Hyph9LseGvAeeXzikV88bczhsrLrIZqDPxO+sSmAunMPaGrBGhfMWzCPYTtiW9t+HzSE2wtV8e5cc5P6r1xMDQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6090,9 +7631,9 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-transform-optional-chaining': 7.22.15_@babel+core@7.22.11 + '@babel/plugin-transform-optional-chaining': 7.22.15(@babel/core@7.22.11) - /@babel/plugin-proposal-async-generator-functions/7.20.7_@babel+core@7.20.12: + /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.20.12): resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6101,11 +7642,11 @@ packages: '@babel/core': 7.20.12 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.12 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.12 + '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.20.12) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.20.12) dev: true - /@babel/plugin-proposal-async-generator-functions/7.20.7_@babel+core@7.22.11: + /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.22.11): resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6114,69 +7655,69 @@ packages: '@babel/core': 7.22.11 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.22.11 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.22.11 + '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.22.11) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.11) dev: true - /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.20.12: + /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.20.12): 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.20.12 - '@babel/helper-create-class-features-plugin': 7.22.15_@babel+core@7.20.12 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.20.12) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.22.11: + /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.22.11): 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.22.11 - '@babel/helper-create-class-features-plugin': 7.22.15_@babel+core@7.22.11 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.22.11) '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-proposal-class-static-block/7.21.0_@babel+core@7.20.12: + /@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.20.12): resolution: {integrity: sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 dependencies: '@babel/core': 7.20.12 - '@babel/helper-create-class-features-plugin': 7.21.4_@babel+core@7.20.12 + '@babel/helper-create-class-features-plugin': 7.21.4(@babel/core@7.20.12) '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.12 + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.20.12) dev: true - /@babel/plugin-proposal-class-static-block/7.21.0_@babel+core@7.22.11: + /@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.22.11): resolution: {integrity: sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 dependencies: '@babel/core': 7.22.11 - '@babel/helper-create-class-features-plugin': 7.21.4_@babel+core@7.22.11 + '@babel/helper-create-class-features-plugin': 7.21.4(@babel/core@7.22.11) '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.22.11 + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.11) dev: true - /@babel/plugin-proposal-decorators/7.21.0_@babel+core@7.22.11: + /@babel/plugin-proposal-decorators@7.21.0(@babel/core@7.22.11): resolution: {integrity: sha512-MfgX49uRrFUTL/HvWtmx3zmpyzMMr4MTj3d527MLlr/4RTT9G/ytFFP7qet2uM2Ve03b+BkpWUpK+lRXnQ+v9w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.11 - '@babel/helper-create-class-features-plugin': 7.22.15_@babel+core@7.22.11 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.22.11) '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.20_@babel+core@7.22.11 + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.22.11) '@babel/helper-split-export-declaration': 7.22.6 - '@babel/plugin-syntax-decorators': 7.21.0_@babel+core@7.22.11 + '@babel/plugin-syntax-decorators': 7.21.0(@babel/core@7.22.11) - /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.20.12: + /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.20.12): resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6184,10 +7725,10 @@ packages: dependencies: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.20.12) dev: true - /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.22.11: + /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.22.11): resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6195,10 +7736,10 @@ packages: dependencies: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.22.11 + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.11) dev: true - /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.20.12: + /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.20.12): resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6206,10 +7747,10 @@ packages: dependencies: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.20.12) dev: true - /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.22.11: + /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.22.11): resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6217,10 +7758,10 @@ packages: dependencies: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.22.11 + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.11) dev: true - /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.20.12: + /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.20.12): resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6228,10 +7769,10 @@ packages: dependencies: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.20.12) dev: true - /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.22.11: + /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.22.11): resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6239,10 +7780,10 @@ packages: dependencies: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.22.11 + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.11) dev: true - /@babel/plugin-proposal-logical-assignment-operators/7.20.7_@babel+core@7.20.12: + /@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.20.12): resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6250,10 +7791,10 @@ packages: dependencies: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.12 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.20.12) dev: true - /@babel/plugin-proposal-logical-assignment-operators/7.20.7_@babel+core@7.22.11: + /@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.22.11): resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6261,10 +7802,10 @@ packages: dependencies: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.22.11 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.11) dev: true - /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.20.12: + /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.20.12): resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6272,10 +7813,10 @@ packages: dependencies: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.20.12) dev: true - /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.22.11: + /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.22.11): resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6283,9 +7824,9 @@ packages: dependencies: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.22.11 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.11) - /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.20.12: + /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.20.12): resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6293,10 +7834,10 @@ packages: dependencies: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.12 + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.20.12) dev: true - /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.22.11: + /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.22.11): resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6304,9 +7845,9 @@ packages: dependencies: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.22.11 + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.11) - /@babel/plugin-proposal-object-rest-spread/7.20.7_@babel+core@7.20.12: + /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.20.12): resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6316,11 +7857,11 @@ packages: '@babel/core': 7.20.12 '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.12 - '@babel/plugin-transform-parameters': 7.21.3_@babel+core@7.20.12 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.20.12) + '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.20.12) dev: true - /@babel/plugin-proposal-object-rest-spread/7.20.7_@babel+core@7.22.11: + /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.22.11): resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6330,11 +7871,11 @@ packages: '@babel/core': 7.22.11 '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.22.11 - '@babel/plugin-transform-parameters': 7.21.3_@babel+core@7.22.11 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.11) + '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.22.11) dev: true - /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.20.12: + /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.20.12): resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6342,10 +7883,10 @@ packages: dependencies: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.20.12) dev: true - /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.22.11: + /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.22.11): resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6353,10 +7894,10 @@ packages: dependencies: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.22.11 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.11) dev: true - /@babel/plugin-proposal-optional-chaining/7.21.0_@babel+core@7.20.12: + /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.20.12): resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6365,10 +7906,10 @@ packages: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.20.12) dev: true - /@babel/plugin-proposal-optional-chaining/7.21.0_@babel+core@7.22.11: + /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.22.11): resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6377,38 +7918,30 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.22.11 + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.11) - /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.20.12: + /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.20.12): resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.20.12 - '@babel/helper-create-class-features-plugin': 7.21.4_@babel+core@7.20.12 + '@babel/helper-create-class-features-plugin': 7.21.4(@babel/core@7.20.12) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.22.11: + /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.22.11): resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.11 - '@babel/helper-create-class-features-plugin': 7.21.4_@babel+core@7.22.11 + '@babel/helper-create-class-features-plugin': 7.21.4(@babel/core@7.22.11) '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-proposal-private-property-in-object/7.21.0-placeholder-for-preset-env.2_@babel+core@7.22.11: - resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.11 - - /@babel/plugin-proposal-private-property-in-object/7.21.0_@babel+core@7.20.12: + /@babel/plugin-proposal-private-property-in-object@7.21.0(@babel/core@7.20.12): resolution: {integrity: sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6416,12 +7949,12 @@ packages: dependencies: '@babel/core': 7.20.12 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.21.4_@babel+core@7.20.12 + '@babel/helper-create-class-features-plugin': 7.21.4(@babel/core@7.20.12) '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.12 + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.20.12) dev: true - /@babel/plugin-proposal-private-property-in-object/7.21.0_@babel+core@7.22.11: + /@babel/plugin-proposal-private-property-in-object@7.21.0(@babel/core@7.22.11): resolution: {integrity: sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6429,33 +7962,41 @@ packages: dependencies: '@babel/core': 7.22.11 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.21.4_@babel+core@7.22.11 + '@babel/helper-create-class-features-plugin': 7.21.4(@babel/core@7.22.11) '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.22.11 + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.11) + + /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.22.11): + resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.11 - /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.20.12: + /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.20.12): resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} engines: {node: '>=4'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.20.12 - '@babel/helper-create-regexp-features-plugin': 7.21.4_@babel+core@7.20.12 + '@babel/helper-create-regexp-features-plugin': 7.21.4(@babel/core@7.20.12) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.22.11: + /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.22.11): resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} engines: {node: '>=4'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.11 - '@babel/helper-create-regexp-features-plugin': 7.21.4_@babel+core@7.22.11 + '@babel/helper-create-regexp-features-plugin': 7.21.4(@babel/core@7.22.11) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.20.12: + /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.20.12): resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6464,7 +8005,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.21.4: + /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.21.4): resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6472,7 +8013,7 @@ packages: '@babel/core': 7.21.4 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.22.11: + /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.11): resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6480,7 +8021,7 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.21.4: + /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.21.4): resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6488,7 +8029,7 @@ packages: '@babel/core': 7.21.4 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.22.11: + /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.22.11): resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6496,7 +8037,7 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.20.12: + /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.20.12): resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6505,7 +8046,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.21.4: + /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.21.4): resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6513,7 +8054,7 @@ packages: '@babel/core': 7.21.4 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.22.11: + /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.11): resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6521,7 +8062,7 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.20.12: + /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.20.12): resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6531,7 +8072,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.22.11: + /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.22.11): resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6540,7 +8081,7 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-decorators/7.21.0_@babel+core@7.22.11: + /@babel/plugin-syntax-decorators@7.21.0(@babel/core@7.22.11): resolution: {integrity: sha512-tIoPpGBR8UuM4++ccWN3gifhVvQu7ZizuR1fklhRJrd5ewgbkUS+0KVFeWWxELtn18NTLoW32XV7zyOgIAiz+w==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6549,7 +8090,7 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.20.12: + /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.20.12): resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6558,7 +8099,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.22.11: + /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.22.11): resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6566,7 +8107,7 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.20.12: + /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.20.12): resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6575,7 +8116,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.22.11: + /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.22.11): resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6583,7 +8124,7 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-flow/7.22.5_@babel+core@7.22.11: + /@babel/plugin-syntax-flow@7.22.5(@babel/core@7.22.11): resolution: {integrity: sha512-9RdCl0i+q0QExayk2nOS7853w08yLucnnPML6EN9S8fgMPVtdLDCdx/cOQ/i44Lb9UeQX9A35yaqBBOMMZxPxQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6592,7 +8133,7 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-import-assertions/7.20.0_@babel+core@7.22.11: + /@babel/plugin-syntax-import-assertions@7.20.0(@babel/core@7.22.11): resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6602,7 +8143,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-import-assertions/7.22.5_@babel+core@7.20.12: + /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.20.12): resolution: {integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6612,7 +8153,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-import-assertions/7.22.5_@babel+core@7.22.11: + /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.22.11): resolution: {integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6621,7 +8162,7 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-import-attributes/7.22.5_@babel+core@7.22.11: + /@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.22.11): resolution: {integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6630,7 +8171,7 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.21.4: + /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.21.4): resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6638,7 +8179,7 @@ packages: '@babel/core': 7.21.4 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.22.11: + /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.22.11): resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6646,7 +8187,7 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.20.12: + /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.20.12): resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6655,7 +8196,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.21.4: + /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.21.4): resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6663,7 +8204,7 @@ packages: '@babel/core': 7.21.4 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.22.11: + /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.11): resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6671,7 +8212,7 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-jsx/7.22.5_@babel+core@7.21.4: + /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.21.4): resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6681,7 +8222,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-jsx/7.22.5_@babel+core@7.22.11: + /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.22.11): resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6690,7 +8231,7 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.20.12: + /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.20.12): resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6699,7 +8240,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.21.4: + /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.21.4): resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6707,7 +8248,7 @@ packages: '@babel/core': 7.21.4 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.22.11: + /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.11): resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6715,7 +8256,7 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.20.12: + /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.20.12): resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6724,7 +8265,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.21.4: + /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.21.4): resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6732,7 +8273,7 @@ packages: '@babel/core': 7.21.4 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.22.11: + /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.11): resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6740,7 +8281,7 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.20.12: + /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.20.12): resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6749,7 +8290,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.21.4: + /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.21.4): resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6757,7 +8298,7 @@ packages: '@babel/core': 7.21.4 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.22.11: + /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.11): resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6765,7 +8306,7 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.20.12: + /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.20.12): resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6774,7 +8315,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.21.4: + /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.21.4): resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6782,7 +8323,7 @@ packages: '@babel/core': 7.21.4 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.22.11: + /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.11): resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6790,7 +8331,7 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.20.12: + /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.20.12): resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6799,7 +8340,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.21.4: + /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.21.4): resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6807,7 +8348,7 @@ packages: '@babel/core': 7.21.4 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.22.11: + /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.11): resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6815,7 +8356,7 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.20.12: + /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.20.12): resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6824,7 +8365,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.21.4: + /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.21.4): resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6832,7 +8373,7 @@ packages: '@babel/core': 7.21.4 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.22.11: + /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.11): resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6840,7 +8381,7 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.20.12: + /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.20.12): resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6850,7 +8391,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.22.11: + /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.22.11): resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6859,7 +8400,7 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.20.12: + /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.20.12): resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6869,7 +8410,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.21.4: + /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.21.4): resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6878,7 +8419,7 @@ packages: '@babel/core': 7.21.4 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.22.11: + /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.22.11): resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6887,7 +8428,7 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-typescript/7.21.4_@babel+core@7.21.4: + /@babel/plugin-syntax-typescript@7.21.4(@babel/core@7.21.4): resolution: {integrity: sha512-xz0D39NvhQn4t4RNsHmDnnsaQizIlUkdtYvLs8La1BlfjQ6JEwxkJGeqJMW2tAXx+q6H+WFuUTXNdYVpEya0YA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6897,7 +8438,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-typescript/7.21.4_@babel+core@7.22.11: + /@babel/plugin-syntax-typescript@7.21.4(@babel/core@7.22.11): resolution: {integrity: sha512-xz0D39NvhQn4t4RNsHmDnnsaQizIlUkdtYvLs8La1BlfjQ6JEwxkJGeqJMW2tAXx+q6H+WFuUTXNdYVpEya0YA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6906,17 +8447,17 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-unicode-sets-regex/7.18.6_@babel+core@7.22.11: + /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.22.11): resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.22.11 - '@babel/helper-create-regexp-features-plugin': 7.22.15_@babel+core@7.22.11 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.22.11) '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-arrow-functions/7.20.7_@babel+core@7.22.11: + /@babel/plugin-transform-arrow-functions@7.20.7(@babel/core@7.22.11): resolution: {integrity: sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6926,7 +8467,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-arrow-functions/7.22.5_@babel+core@7.20.12: + /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.20.12): resolution: {integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6936,7 +8477,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-arrow-functions/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.22.11): resolution: {integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6945,7 +8486,7 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-async-generator-functions/7.22.15_@babel+core@7.22.11: + /@babel/plugin-transform-async-generator-functions@7.22.15(@babel/core@7.22.11): resolution: {integrity: sha512-jBm1Es25Y+tVoTi5rfd5t1KLmL8ogLKpXszboWOTTtGFGz2RKnQe2yn7HbZ+kb/B8N0FVSGQo874NSlOU1T4+w==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6954,10 +8495,10 @@ packages: '@babel/core': 7.22.11 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.20_@babel+core@7.22.11 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.22.11 + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.22.11) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.11) - /@babel/plugin-transform-async-to-generator/7.20.7_@babel+core@7.20.12: + /@babel/plugin-transform-async-to-generator@7.20.7(@babel/core@7.20.12): resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6966,10 +8507,10 @@ packages: '@babel/core': 7.20.12 '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.12 + '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.20.12) dev: true - /@babel/plugin-transform-async-to-generator/7.20.7_@babel+core@7.22.11: + /@babel/plugin-transform-async-to-generator@7.20.7(@babel/core@7.22.11): resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6978,10 +8519,10 @@ packages: '@babel/core': 7.22.11 '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.22.11 + '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.22.11) dev: true - /@babel/plugin-transform-async-to-generator/7.22.5_@babel+core@7.20.12: + /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.20.12): resolution: {integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -6990,10 +8531,10 @@ packages: '@babel/core': 7.20.12 '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.20_@babel+core@7.20.12 + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.20.12) dev: true - /@babel/plugin-transform-async-to-generator/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.22.11): resolution: {integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7002,9 +8543,9 @@ packages: '@babel/core': 7.22.11 '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.20_@babel+core@7.22.11 + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.22.11) - /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.22.11: + /@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.22.11): resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7014,7 +8555,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-block-scoped-functions/7.22.5_@babel+core@7.20.12: + /@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.20.12): resolution: {integrity: sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7024,7 +8565,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-block-scoped-functions/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.22.11): resolution: {integrity: sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7033,7 +8574,7 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-block-scoping/7.21.0_@babel+core@7.22.11: + /@babel/plugin-transform-block-scoping@7.21.0(@babel/core@7.22.11): resolution: {integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7043,7 +8584,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-block-scoping/7.22.15_@babel+core@7.20.12: + /@babel/plugin-transform-block-scoping@7.22.15(@babel/core@7.20.12): resolution: {integrity: sha512-G1czpdJBZCtngoK1sJgloLiOHUnkb/bLZwqVZD8kXmq0ZnVfTTWUcs9OWtp0mBtYJ+4LQY1fllqBkOIPhXmFmw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7053,7 +8594,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-block-scoping/7.22.15_@babel+core@7.22.11: + /@babel/plugin-transform-block-scoping@7.22.15(@babel/core@7.22.11): resolution: {integrity: sha512-G1czpdJBZCtngoK1sJgloLiOHUnkb/bLZwqVZD8kXmq0ZnVfTTWUcs9OWtp0mBtYJ+4LQY1fllqBkOIPhXmFmw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7062,28 +8603,28 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-class-properties/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.22.11): resolution: {integrity: sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.11 - '@babel/helper-create-class-features-plugin': 7.22.15_@babel+core@7.22.11 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.22.11) '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-class-static-block/7.22.11_@babel+core@7.22.11: + /@babel/plugin-transform-class-static-block@7.22.11(@babel/core@7.22.11): resolution: {integrity: sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 dependencies: '@babel/core': 7.22.11 - '@babel/helper-create-class-features-plugin': 7.22.15_@babel+core@7.22.11 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.22.11) '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.22.11 + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.11) - /@babel/plugin-transform-classes/7.21.0_@babel+core@7.22.11: + /@babel/plugin-transform-classes@7.21.0(@babel/core@7.22.11): resolution: {integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7103,7 +8644,7 @@ packages: - supports-color dev: true - /@babel/plugin-transform-classes/7.22.15_@babel+core@7.20.12: + /@babel/plugin-transform-classes@7.22.15(@babel/core@7.20.12): resolution: {integrity: sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7116,12 +8657,12 @@ packages: '@babel/helper-function-name': 7.22.5 '@babel/helper-optimise-call-expression': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.20_@babel+core@7.20.12 + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.20.12) '@babel/helper-split-export-declaration': 7.22.6 globals: 11.12.0 dev: true - /@babel/plugin-transform-classes/7.22.15_@babel+core@7.22.11: + /@babel/plugin-transform-classes@7.22.15(@babel/core@7.22.11): resolution: {integrity: sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7134,11 +8675,11 @@ packages: '@babel/helper-function-name': 7.22.5 '@babel/helper-optimise-call-expression': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.20_@babel+core@7.22.11 + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.22.11) '@babel/helper-split-export-declaration': 7.22.6 globals: 11.12.0 - /@babel/plugin-transform-computed-properties/7.20.7_@babel+core@7.22.11: + /@babel/plugin-transform-computed-properties@7.20.7(@babel/core@7.22.11): resolution: {integrity: sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7149,7 +8690,7 @@ packages: '@babel/template': 7.22.15 dev: true - /@babel/plugin-transform-computed-properties/7.22.5_@babel+core@7.20.12: + /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.20.12): resolution: {integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7160,7 +8701,7 @@ packages: '@babel/template': 7.22.15 dev: true - /@babel/plugin-transform-computed-properties/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.22.11): resolution: {integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7170,7 +8711,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/template': 7.22.15 - /@babel/plugin-transform-destructuring/7.21.3_@babel+core@7.22.11: + /@babel/plugin-transform-destructuring@7.21.3(@babel/core@7.22.11): resolution: {integrity: sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7180,7 +8721,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-destructuring/7.22.15_@babel+core@7.20.12: + /@babel/plugin-transform-destructuring@7.22.15(@babel/core@7.20.12): resolution: {integrity: sha512-HzG8sFl1ZVGTme74Nw+X01XsUTqERVQ6/RLHo3XjGRzm7XD6QTtfS3NJotVgCGy8BzkDqRjRBD8dAyJn5TuvSQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7190,7 +8731,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-destructuring/7.22.15_@babel+core@7.22.11: + /@babel/plugin-transform-destructuring@7.22.15(@babel/core@7.22.11): resolution: {integrity: sha512-HzG8sFl1ZVGTme74Nw+X01XsUTqERVQ6/RLHo3XjGRzm7XD6QTtfS3NJotVgCGy8BzkDqRjRBD8dAyJn5TuvSQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7199,50 +8740,50 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.20.12: + /@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.20.12): resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.20.12 - '@babel/helper-create-regexp-features-plugin': 7.21.4_@babel+core@7.20.12 + '@babel/helper-create-regexp-features-plugin': 7.21.4(@babel/core@7.20.12) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.22.11: + /@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.22.11): resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.11 - '@babel/helper-create-regexp-features-plugin': 7.21.4_@babel+core@7.22.11 + '@babel/helper-create-regexp-features-plugin': 7.21.4(@babel/core@7.22.11) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-dotall-regex/7.22.5_@babel+core@7.20.12: + /@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.20.12): resolution: {integrity: sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.20.12 - '@babel/helper-create-regexp-features-plugin': 7.22.15_@babel+core@7.20.12 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.20.12) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-dotall-regex/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.22.11): resolution: {integrity: sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.11 - '@babel/helper-create-regexp-features-plugin': 7.22.15_@babel+core@7.22.11 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.22.11) '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.22.11: + /@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.22.11): resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7252,7 +8793,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-duplicate-keys/7.22.5_@babel+core@7.20.12: + /@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.20.12): resolution: {integrity: sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7262,7 +8803,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-duplicate-keys/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.22.11): resolution: {integrity: sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7271,7 +8812,7 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-dynamic-import/7.22.11_@babel+core@7.22.11: + /@babel/plugin-transform-dynamic-import@7.22.11(@babel/core@7.22.11): resolution: {integrity: sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7279,9 +8820,9 @@ packages: dependencies: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.22.11 + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.11) - /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.22.11: + /@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.22.11): resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7292,7 +8833,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-exponentiation-operator/7.22.5_@babel+core@7.20.12: + /@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.20.12): resolution: {integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7303,7 +8844,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-exponentiation-operator/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.22.11): resolution: {integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7313,7 +8854,7 @@ packages: '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-export-namespace-from/7.22.11_@babel+core@7.22.11: + /@babel/plugin-transform-export-namespace-from@7.22.11(@babel/core@7.22.11): resolution: {integrity: sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7321,9 +8862,9 @@ packages: dependencies: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.22.11 + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.11) - /@babel/plugin-transform-flow-strip-types/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-flow-strip-types@7.22.5(@babel/core@7.22.11): resolution: {integrity: sha512-tujNbZdxdG0/54g/oua8ISToaXTFBf8EnSb5PgQSciIXWOWKX3S4+JR7ZE9ol8FZwf9kxitzkGQ+QWeov/mCiA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7331,9 +8872,9 @@ packages: dependencies: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-flow': 7.22.5_@babel+core@7.22.11 + '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.22.11) - /@babel/plugin-transform-for-of/7.21.0_@babel+core@7.22.11: + /@babel/plugin-transform-for-of@7.21.0(@babel/core@7.22.11): resolution: {integrity: sha512-LlUYlydgDkKpIY7mcBWvyPPmMcOphEyYA27Ef4xpbh1IiDNLr0kZsos2nf92vz3IccvJI25QUwp86Eo5s6HmBQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7343,7 +8884,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-for-of/7.22.15_@babel+core@7.20.12: + /@babel/plugin-transform-for-of@7.22.15(@babel/core@7.20.12): resolution: {integrity: sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7353,7 +8894,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-for-of/7.22.15_@babel+core@7.22.11: + /@babel/plugin-transform-for-of@7.22.15(@babel/core@7.22.11): resolution: {integrity: sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7362,7 +8903,7 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.22.11: + /@babel/plugin-transform-function-name@7.18.9(@babel/core@7.22.11): resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7374,7 +8915,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-function-name/7.22.5_@babel+core@7.20.12: + /@babel/plugin-transform-function-name@7.22.5(@babel/core@7.20.12): resolution: {integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7386,7 +8927,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-function-name/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-function-name@7.22.5(@babel/core@7.22.11): resolution: {integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7397,7 +8938,7 @@ packages: '@babel/helper-function-name': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-json-strings/7.22.11_@babel+core@7.22.11: + /@babel/plugin-transform-json-strings@7.22.11(@babel/core@7.22.11): resolution: {integrity: sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7405,9 +8946,9 @@ packages: dependencies: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.22.11 + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.11) - /@babel/plugin-transform-literals/7.18.9_@babel+core@7.22.11: + /@babel/plugin-transform-literals@7.18.9(@babel/core@7.22.11): resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7417,7 +8958,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-literals/7.22.5_@babel+core@7.20.12: + /@babel/plugin-transform-literals@7.22.5(@babel/core@7.20.12): resolution: {integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7427,7 +8968,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-literals/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-literals@7.22.5(@babel/core@7.22.11): resolution: {integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7436,7 +8977,7 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-logical-assignment-operators/7.22.11_@babel+core@7.22.11: + /@babel/plugin-transform-logical-assignment-operators@7.22.11(@babel/core@7.22.11): resolution: {integrity: sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7444,9 +8985,9 @@ packages: dependencies: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.22.11 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.11) - /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.22.11: + /@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.22.11): resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7456,7 +8997,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-member-expression-literals/7.22.5_@babel+core@7.20.12: + /@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.20.12): resolution: {integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7466,7 +9007,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-member-expression-literals/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.22.11): resolution: {integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7475,74 +9016,74 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-modules-amd/7.20.11_@babel+core@7.22.11: + /@babel/plugin-transform-modules-amd@7.20.11(@babel/core@7.22.11): resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.11 - '@babel/helper-module-transforms': 7.22.20_@babel+core@7.22.11 + '@babel/helper-module-transforms': 7.22.20(@babel/core@7.22.11) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-modules-amd/7.22.5_@babel+core@7.20.12: + /@babel/plugin-transform-modules-amd@7.22.5(@babel/core@7.20.12): resolution: {integrity: sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.20.12 - '@babel/helper-module-transforms': 7.22.20_@babel+core@7.20.12 + '@babel/helper-module-transforms': 7.22.20(@babel/core@7.20.12) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-modules-amd/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-modules-amd@7.22.5(@babel/core@7.22.11): resolution: {integrity: sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.11 - '@babel/helper-module-transforms': 7.22.20_@babel+core@7.22.11 + '@babel/helper-module-transforms': 7.22.20(@babel/core@7.22.11) '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-modules-commonjs/7.21.2_@babel+core@7.22.11: + /@babel/plugin-transform-modules-commonjs@7.21.2(@babel/core@7.22.11): resolution: {integrity: sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.11 - '@babel/helper-module-transforms': 7.22.20_@babel+core@7.22.11 + '@babel/helper-module-transforms': 7.22.20(@babel/core@7.22.11) '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-simple-access': 7.22.5 dev: true - /@babel/plugin-transform-modules-commonjs/7.22.15_@babel+core@7.20.12: + /@babel/plugin-transform-modules-commonjs@7.22.15(@babel/core@7.20.12): resolution: {integrity: sha512-jWL4eh90w0HQOTKP2MoXXUpVxilxsB2Vl4ji69rSjS3EcZ/v4sBmn+A3NpepuJzBhOaEBbR7udonlHHn5DWidg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.20.12 - '@babel/helper-module-transforms': 7.22.20_@babel+core@7.20.12 + '@babel/helper-module-transforms': 7.22.20(@babel/core@7.20.12) '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-simple-access': 7.22.5 dev: true - /@babel/plugin-transform-modules-commonjs/7.22.15_@babel+core@7.22.11: + /@babel/plugin-transform-modules-commonjs@7.22.15(@babel/core@7.22.11): resolution: {integrity: sha512-jWL4eh90w0HQOTKP2MoXXUpVxilxsB2Vl4ji69rSjS3EcZ/v4sBmn+A3NpepuJzBhOaEBbR7udonlHHn5DWidg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.11 - '@babel/helper-module-transforms': 7.22.20_@babel+core@7.22.11 + '@babel/helper-module-transforms': 7.22.20(@babel/core@7.22.11) '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-simple-access': 7.22.5 - /@babel/plugin-transform-modules-systemjs/7.20.11_@babel+core@7.22.11: + /@babel/plugin-transform-modules-systemjs@7.20.11(@babel/core@7.22.11): resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7550,12 +9091,12 @@ packages: dependencies: '@babel/core': 7.22.11 '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-module-transforms': 7.22.20_@babel+core@7.22.11 + '@babel/helper-module-transforms': 7.22.20(@babel/core@7.22.11) '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-identifier': 7.22.20 dev: true - /@babel/plugin-transform-modules-systemjs/7.22.11_@babel+core@7.20.12: + /@babel/plugin-transform-modules-systemjs@7.22.11(@babel/core@7.20.12): resolution: {integrity: sha512-rIqHmHoMEOhI3VkVf5jQ15l539KrwhzqcBO6wdCNWPWc/JWt9ILNYNUssbRpeq0qWns8svuw8LnMNCvWBIJ8wA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7563,12 +9104,12 @@ packages: dependencies: '@babel/core': 7.20.12 '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-module-transforms': 7.22.20_@babel+core@7.20.12 + '@babel/helper-module-transforms': 7.22.20(@babel/core@7.20.12) '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-identifier': 7.22.20 dev: true - /@babel/plugin-transform-modules-systemjs/7.22.11_@babel+core@7.22.11: + /@babel/plugin-transform-modules-systemjs@7.22.11(@babel/core@7.22.11): resolution: {integrity: sha512-rIqHmHoMEOhI3VkVf5jQ15l539KrwhzqcBO6wdCNWPWc/JWt9ILNYNUssbRpeq0qWns8svuw8LnMNCvWBIJ8wA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7576,75 +9117,75 @@ packages: dependencies: '@babel/core': 7.22.11 '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-module-transforms': 7.22.20_@babel+core@7.22.11 + '@babel/helper-module-transforms': 7.22.20(@babel/core@7.22.11) '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-identifier': 7.22.20 - /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.22.11: + /@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.22.11): resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.11 - '@babel/helper-module-transforms': 7.22.20_@babel+core@7.22.11 + '@babel/helper-module-transforms': 7.22.20(@babel/core@7.22.11) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-modules-umd/7.22.5_@babel+core@7.20.12: + /@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.20.12): resolution: {integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.20.12 - '@babel/helper-module-transforms': 7.22.20_@babel+core@7.20.12 + '@babel/helper-module-transforms': 7.22.20(@babel/core@7.20.12) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-modules-umd/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.22.11): resolution: {integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.11 - '@babel/helper-module-transforms': 7.22.20_@babel+core@7.22.11 + '@babel/helper-module-transforms': 7.22.20(@babel/core@7.22.11) '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-named-capturing-groups-regex/7.20.5_@babel+core@7.22.11: + /@babel/plugin-transform-named-capturing-groups-regex@7.20.5(@babel/core@7.22.11): resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.22.11 - '@babel/helper-create-regexp-features-plugin': 7.21.4_@babel+core@7.22.11 + '@babel/helper-create-regexp-features-plugin': 7.21.4(@babel/core@7.22.11) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-named-capturing-groups-regex/7.22.5_@babel+core@7.20.12: + /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.20.12): resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.20.12 - '@babel/helper-create-regexp-features-plugin': 7.22.15_@babel+core@7.20.12 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.20.12) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-named-capturing-groups-regex/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.22.11): resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.22.11 - '@babel/helper-create-regexp-features-plugin': 7.22.15_@babel+core@7.22.11 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.22.11) '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.22.11: + /@babel/plugin-transform-new-target@7.18.6(@babel/core@7.22.11): resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7654,7 +9195,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-new-target/7.22.5_@babel+core@7.20.12: + /@babel/plugin-transform-new-target@7.22.5(@babel/core@7.20.12): resolution: {integrity: sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7664,7 +9205,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-new-target/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-new-target@7.22.5(@babel/core@7.22.11): resolution: {integrity: sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7673,7 +9214,7 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-nullish-coalescing-operator/7.22.11_@babel+core@7.22.11: + /@babel/plugin-transform-nullish-coalescing-operator@7.22.11(@babel/core@7.22.11): resolution: {integrity: sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7681,9 +9222,9 @@ packages: dependencies: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.22.11 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.11) - /@babel/plugin-transform-numeric-separator/7.22.11_@babel+core@7.22.11: + /@babel/plugin-transform-numeric-separator@7.22.11(@babel/core@7.22.11): resolution: {integrity: sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7691,9 +9232,9 @@ packages: dependencies: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.22.11 + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.11) - /@babel/plugin-transform-object-rest-spread/7.22.15_@babel+core@7.22.11: + /@babel/plugin-transform-object-rest-spread@7.22.15(@babel/core@7.22.11): resolution: {integrity: sha512-fEB+I1+gAmfAyxZcX1+ZUwLeAuuf8VIg67CTznZE0MqVFumWkh8xWtn58I4dxdVf080wn7gzWoF8vndOViJe9Q==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7703,10 +9244,10 @@ packages: '@babel/core': 7.22.11 '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.22.11 - '@babel/plugin-transform-parameters': 7.22.15_@babel+core@7.22.11 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.11) + '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.22.11) - /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.22.11: + /@babel/plugin-transform-object-super@7.18.6(@babel/core@7.22.11): resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7719,7 +9260,7 @@ packages: - supports-color dev: true - /@babel/plugin-transform-object-super/7.22.5_@babel+core@7.20.12: + /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.20.12): resolution: {integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7727,10 +9268,10 @@ packages: dependencies: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.20_@babel+core@7.20.12 + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.20.12) dev: true - /@babel/plugin-transform-object-super/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.22.11): resolution: {integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7738,9 +9279,9 @@ packages: dependencies: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.20_@babel+core@7.22.11 + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.22.11) - /@babel/plugin-transform-optional-catch-binding/7.22.11_@babel+core@7.22.11: + /@babel/plugin-transform-optional-catch-binding@7.22.11(@babel/core@7.22.11): resolution: {integrity: sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7748,9 +9289,9 @@ packages: dependencies: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.22.11 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.11) - /@babel/plugin-transform-optional-chaining/7.22.15_@babel+core@7.20.12: + /@babel/plugin-transform-optional-chaining@7.22.15(@babel/core@7.20.12): resolution: {integrity: sha512-ngQ2tBhq5vvSJw2Q2Z9i7ealNkpDMU0rGWnHPKqRZO0tzZ5tlaoz4hDvhXioOoaE0X2vfNss1djwg0DXlfu30A==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7759,10 +9300,10 @@ packages: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.20.12) dev: true - /@babel/plugin-transform-optional-chaining/7.22.15_@babel+core@7.22.11: + /@babel/plugin-transform-optional-chaining@7.22.15(@babel/core@7.22.11): resolution: {integrity: sha512-ngQ2tBhq5vvSJw2Q2Z9i7ealNkpDMU0rGWnHPKqRZO0tzZ5tlaoz4hDvhXioOoaE0X2vfNss1djwg0DXlfu30A==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7771,9 +9312,9 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.22.11 + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.11) - /@babel/plugin-transform-parameters/7.21.3_@babel+core@7.20.12: + /@babel/plugin-transform-parameters@7.21.3(@babel/core@7.20.12): resolution: {integrity: sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7783,7 +9324,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-parameters/7.21.3_@babel+core@7.22.11: + /@babel/plugin-transform-parameters@7.21.3(@babel/core@7.22.11): resolution: {integrity: sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7793,7 +9334,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-parameters/7.22.15_@babel+core@7.20.12: + /@babel/plugin-transform-parameters@7.22.15(@babel/core@7.20.12): resolution: {integrity: sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7803,7 +9344,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-parameters/7.22.15_@babel+core@7.22.11: + /@babel/plugin-transform-parameters@7.22.15(@babel/core@7.22.11): resolution: {integrity: sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7812,17 +9353,17 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-private-methods/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.22.11): resolution: {integrity: sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.11 - '@babel/helper-create-class-features-plugin': 7.22.15_@babel+core@7.22.11 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.22.11) '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-private-property-in-object/7.22.11_@babel+core@7.22.11: + /@babel/plugin-transform-private-property-in-object@7.22.11(@babel/core@7.22.11): resolution: {integrity: sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7830,11 +9371,11 @@ packages: dependencies: '@babel/core': 7.22.11 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.22.15_@babel+core@7.22.11 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.22.11) '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.22.11 + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.11) - /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.22.11: + /@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.22.11): resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7844,7 +9385,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-property-literals/7.22.5_@babel+core@7.20.12: + /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.20.12): resolution: {integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7854,7 +9395,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-property-literals/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.22.11): resolution: {integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7863,7 +9404,7 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-react-constant-elements/7.21.3_@babel+core@7.22.11: + /@babel/plugin-transform-react-constant-elements@7.21.3(@babel/core@7.22.11): resolution: {integrity: sha512-4DVcFeWe/yDYBLp0kBmOGFJ6N2UYg7coGid1gdxb4co62dy/xISDMaYBXBVXEDhfgMk7qkbcYiGtwd5Q/hwDDQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7872,7 +9413,7 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.22.11: + /@babel/plugin-transform-react-display-name@7.18.6(@babel/core@7.22.11): resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7881,7 +9422,7 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-react-display-name/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-react-display-name@7.22.5(@babel/core@7.22.11): resolution: {integrity: sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7890,26 +9431,26 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.22.11: + /@babel/plugin-transform-react-jsx-development@7.18.6(@babel/core@7.22.11): resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.11 - '@babel/plugin-transform-react-jsx': 7.21.0_@babel+core@7.22.11 + '@babel/plugin-transform-react-jsx': 7.21.0(@babel/core@7.22.11) dev: true - /@babel/plugin-transform-react-jsx-development/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.22.11): resolution: {integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.11 - '@babel/plugin-transform-react-jsx': 7.22.15_@babel+core@7.22.11 + '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.22.11) - /@babel/plugin-transform-react-jsx/7.21.0_@babel+core@7.22.11: + /@babel/plugin-transform-react-jsx@7.21.0(@babel/core@7.22.11): resolution: {integrity: sha512-6OAWljMvQrZjR2DaNhVfRz6dkCAVV+ymcLUmaf8bccGOHn2v5rHJK3tTpij0BuhdYWP4LLaqj5lwcdlpAAPuvg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7919,11 +9460,11 @@ packages: '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-jsx': 7.22.5_@babel+core@7.22.11 + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.11) '@babel/types': 7.22.19 dev: true - /@babel/plugin-transform-react-jsx/7.22.15_@babel+core@7.22.11: + /@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.22.11): resolution: {integrity: sha512-oKckg2eZFa8771O/5vi7XeTvmM6+O9cxZu+kanTU7tD4sin5nO/G8jGJhq8Hvt2Z0kUoEDRayuZLaUlYl8QuGA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7933,10 +9474,10 @@ packages: '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-jsx': 7.22.5_@babel+core@7.22.11 + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.11) '@babel/types': 7.22.19 - /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.22.11: + /@babel/plugin-transform-react-pure-annotations@7.18.6(@babel/core@7.22.11): resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7947,7 +9488,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-react-pure-annotations/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-react-pure-annotations@7.22.5(@babel/core@7.22.11): resolution: {integrity: sha512-gP4k85wx09q+brArVinTXhWiyzLl9UpmGva0+mWyKxk6JZequ05x3eUcIUE+FyttPKJFRRVtAvQaJ6YF9h1ZpA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7957,7 +9498,7 @@ packages: '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-regenerator/7.20.5_@babel+core@7.22.11: + /@babel/plugin-transform-regenerator@7.20.5(@babel/core@7.22.11): resolution: {integrity: sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7968,7 +9509,7 @@ packages: regenerator-transform: 0.15.1 dev: true - /@babel/plugin-transform-regenerator/7.22.10_@babel+core@7.20.12: + /@babel/plugin-transform-regenerator@7.22.10(@babel/core@7.20.12): resolution: {integrity: sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7979,7 +9520,7 @@ packages: regenerator-transform: 0.15.2 dev: true - /@babel/plugin-transform-regenerator/7.22.10_@babel+core@7.22.11: + /@babel/plugin-transform-regenerator@7.22.10(@babel/core@7.22.11): resolution: {integrity: sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7989,7 +9530,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 regenerator-transform: 0.15.2 - /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.22.11: + /@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.22.11): resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -7999,7 +9540,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-reserved-words/7.22.5_@babel+core@7.20.12: + /@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.20.12): resolution: {integrity: sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -8009,7 +9550,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-reserved-words/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.22.11): resolution: {integrity: sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -8018,7 +9559,7 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-runtime/7.19.6_@babel+core@7.20.12: + /@babel/plugin-transform-runtime@7.19.6(@babel/core@7.20.12): resolution: {integrity: sha512-PRH37lz4JU156lYFW1p8OxE5i7d6Sl/zV58ooyr+q1J1lnQPyg5tIiXlIwNVhJaY4W3TmOtdc8jqdXQcB1v5Yw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -8027,15 +9568,15 @@ packages: '@babel/core': 7.20.12 '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.20.12 - babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.20.12 - babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.20.12 + babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.20.12) + babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.20.12) + babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.20.12) semver: 6.3.1 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-runtime/7.21.4_@babel+core@7.22.11: + /@babel/plugin-transform-runtime@7.21.4(@babel/core@7.22.11): resolution: {integrity: sha512-1J4dhrw1h1PqnNNpzwxQ2UBymJUF8KuPjAAnlLwZcGhHAIqUigFW7cdK6GHoB64ubY4qXQNYknoUeks4Wz7CUA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -8044,14 +9585,14 @@ packages: '@babel/core': 7.22.11 '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.22.11 - babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.22.11 - babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.22.11 + babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.22.11) + babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.22.11) + babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.22.11) semver: 6.3.1 transitivePeerDependencies: - supports-color - /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.22.11: + /@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.22.11): resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -8061,7 +9602,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-shorthand-properties/7.22.5_@babel+core@7.20.12: + /@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.20.12): resolution: {integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -8071,7 +9612,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-shorthand-properties/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.22.11): resolution: {integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -8080,7 +9621,7 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-spread/7.20.7_@babel+core@7.22.11: + /@babel/plugin-transform-spread@7.20.7(@babel/core@7.22.11): resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -8091,7 +9632,7 @@ packages: '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 dev: true - /@babel/plugin-transform-spread/7.22.5_@babel+core@7.20.12: + /@babel/plugin-transform-spread@7.22.5(@babel/core@7.20.12): resolution: {integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -8102,7 +9643,7 @@ packages: '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 dev: true - /@babel/plugin-transform-spread/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-spread@7.22.5(@babel/core@7.22.11): resolution: {integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -8112,7 +9653,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.22.11: + /@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.22.11): resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} engines: {node: '>=6.9.0'} peerDependencies: @@ -8122,7 +9663,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-sticky-regex/7.22.5_@babel+core@7.20.12: + /@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.20.12): resolution: {integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -8132,7 +9673,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-sticky-regex/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.22.11): resolution: {integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -8141,7 +9682,7 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.22.11: + /@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.22.11): resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -8151,7 +9692,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-template-literals/7.22.5_@babel+core@7.20.12: + /@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.20.12): resolution: {integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -8161,7 +9702,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-template-literals/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.22.11): resolution: {integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -8170,7 +9711,7 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.22.11: + /@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.22.11): resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -8180,7 +9721,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-typeof-symbol/7.22.5_@babel+core@7.20.12: + /@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.20.12): resolution: {integrity: sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -8190,7 +9731,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-typeof-symbol/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.22.11): resolution: {integrity: sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -8199,7 +9740,7 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-typescript/7.21.3_@babel+core@7.21.4: + /@babel/plugin-transform-typescript@7.21.3(@babel/core@7.21.4): resolution: {integrity: sha512-RQxPz6Iqt8T0uw/WsJNReuBpWpBqs/n7mNo18sKLoTbMp+UrEekhH+pKSVC7gWz+DNjo9gryfV8YzCiT45RgMw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -8207,12 +9748,12 @@ packages: dependencies: '@babel/core': 7.21.4 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.22.15_@babel+core@7.21.4 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.21.4) '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-typescript': 7.21.4_@babel+core@7.21.4 + '@babel/plugin-syntax-typescript': 7.21.4(@babel/core@7.21.4) dev: true - /@babel/plugin-transform-typescript/7.21.3_@babel+core@7.22.11: + /@babel/plugin-transform-typescript@7.21.3(@babel/core@7.22.11): resolution: {integrity: sha512-RQxPz6Iqt8T0uw/WsJNReuBpWpBqs/n7mNo18sKLoTbMp+UrEekhH+pKSVC7gWz+DNjo9gryfV8YzCiT45RgMw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -8220,11 +9761,11 @@ packages: dependencies: '@babel/core': 7.22.11 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.22.15_@babel+core@7.22.11 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.22.11) '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-typescript': 7.21.4_@babel+core@7.22.11 + '@babel/plugin-syntax-typescript': 7.21.4(@babel/core@7.22.11) - /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.22.11: + /@babel/plugin-transform-unicode-escapes@7.18.10(@babel/core@7.22.11): resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -8234,7 +9775,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-unicode-escapes/7.22.10_@babel+core@7.20.12: + /@babel/plugin-transform-unicode-escapes@7.22.10(@babel/core@7.20.12): resolution: {integrity: sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -8244,7 +9785,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-unicode-escapes/7.22.10_@babel+core@7.22.11: + /@babel/plugin-transform-unicode-escapes@7.22.10(@babel/core@7.22.11): resolution: {integrity: sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -8253,59 +9794,59 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-unicode-property-regex/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.22.11): resolution: {integrity: sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.11 - '@babel/helper-create-regexp-features-plugin': 7.22.15_@babel+core@7.22.11 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.22.11) '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.22.11: + /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.22.11): resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.11 - '@babel/helper-create-regexp-features-plugin': 7.21.4_@babel+core@7.22.11 + '@babel/helper-create-regexp-features-plugin': 7.21.4(@babel/core@7.22.11) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-unicode-regex/7.22.5_@babel+core@7.20.12: + /@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.20.12): resolution: {integrity: sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.20.12 - '@babel/helper-create-regexp-features-plugin': 7.22.15_@babel+core@7.20.12 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.20.12) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-unicode-regex/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.22.11): resolution: {integrity: sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.11 - '@babel/helper-create-regexp-features-plugin': 7.22.15_@babel+core@7.22.11 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.22.11) '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-unicode-sets-regex/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.22.11): resolution: {integrity: sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.22.11 - '@babel/helper-create-regexp-features-plugin': 7.22.15_@babel+core@7.22.11 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.22.11) '@babel/helper-plugin-utils': 7.22.5 - /@babel/polyfill/7.12.1: + /@babel/polyfill@7.12.1: resolution: {integrity: sha512-X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g==} deprecated: 🚨 This package has been deprecated in favor of separate inclusion of a polyfill and regenerator-runtime (when needed). See the @babel/polyfill docs (https://babeljs.io/docs/en/babel-polyfill) for more information. dependencies: @@ -8313,7 +9854,7 @@ packages: regenerator-runtime: 0.13.11 dev: true - /@babel/preset-env/7.20.2_@babel+core@7.20.12: + /@babel/preset-env@7.20.2(@babel/core@7.20.12): resolution: {integrity: sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -8324,82 +9865,82 @@ packages: '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-option': 7.22.15 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.15_@babel+core@7.20.12 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.15_@babel+core@7.20.12 - '@babel/plugin-proposal-async-generator-functions': 7.20.7_@babel+core@7.20.12 - '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.12 - '@babel/plugin-proposal-class-static-block': 7.21.0_@babel+core@7.20.12 - '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.20.12 - '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.20.12 - '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.20.12 - '@babel/plugin-proposal-logical-assignment-operators': 7.20.7_@babel+core@7.20.12 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.20.12 - '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.20.12 - '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.20.12 - '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.20.12 - '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.20.12 - '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.20.12 - '@babel/plugin-proposal-private-property-in-object': 7.21.0_@babel+core@7.20.12 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.12 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.12 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.20.12 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.12 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.12 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.12 - '@babel/plugin-syntax-import-assertions': 7.22.5_@babel+core@7.20.12 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.12 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.12 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.12 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.12 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.12 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.12 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.12 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.12 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.20.12 - '@babel/plugin-transform-arrow-functions': 7.22.5_@babel+core@7.20.12 - '@babel/plugin-transform-async-to-generator': 7.22.5_@babel+core@7.20.12 - '@babel/plugin-transform-block-scoped-functions': 7.22.5_@babel+core@7.20.12 - '@babel/plugin-transform-block-scoping': 7.22.15_@babel+core@7.20.12 - '@babel/plugin-transform-classes': 7.22.15_@babel+core@7.20.12 - '@babel/plugin-transform-computed-properties': 7.22.5_@babel+core@7.20.12 - '@babel/plugin-transform-destructuring': 7.22.15_@babel+core@7.20.12 - '@babel/plugin-transform-dotall-regex': 7.22.5_@babel+core@7.20.12 - '@babel/plugin-transform-duplicate-keys': 7.22.5_@babel+core@7.20.12 - '@babel/plugin-transform-exponentiation-operator': 7.22.5_@babel+core@7.20.12 - '@babel/plugin-transform-for-of': 7.22.15_@babel+core@7.20.12 - '@babel/plugin-transform-function-name': 7.22.5_@babel+core@7.20.12 - '@babel/plugin-transform-literals': 7.22.5_@babel+core@7.20.12 - '@babel/plugin-transform-member-expression-literals': 7.22.5_@babel+core@7.20.12 - '@babel/plugin-transform-modules-amd': 7.22.5_@babel+core@7.20.12 - '@babel/plugin-transform-modules-commonjs': 7.22.15_@babel+core@7.20.12 - '@babel/plugin-transform-modules-systemjs': 7.22.11_@babel+core@7.20.12 - '@babel/plugin-transform-modules-umd': 7.22.5_@babel+core@7.20.12 - '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5_@babel+core@7.20.12 - '@babel/plugin-transform-new-target': 7.22.5_@babel+core@7.20.12 - '@babel/plugin-transform-object-super': 7.22.5_@babel+core@7.20.12 - '@babel/plugin-transform-parameters': 7.22.15_@babel+core@7.20.12 - '@babel/plugin-transform-property-literals': 7.22.5_@babel+core@7.20.12 - '@babel/plugin-transform-regenerator': 7.22.10_@babel+core@7.20.12 - '@babel/plugin-transform-reserved-words': 7.22.5_@babel+core@7.20.12 - '@babel/plugin-transform-shorthand-properties': 7.22.5_@babel+core@7.20.12 - '@babel/plugin-transform-spread': 7.22.5_@babel+core@7.20.12 - '@babel/plugin-transform-sticky-regex': 7.22.5_@babel+core@7.20.12 - '@babel/plugin-transform-template-literals': 7.22.5_@babel+core@7.20.12 - '@babel/plugin-transform-typeof-symbol': 7.22.5_@babel+core@7.20.12 - '@babel/plugin-transform-unicode-escapes': 7.22.10_@babel+core@7.20.12 - '@babel/plugin-transform-unicode-regex': 7.22.5_@babel+core@7.20.12 - '@babel/preset-modules': 0.1.5_@babel+core@7.20.12 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.15(@babel/core@7.20.12) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.15(@babel/core@7.20.12) + '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.20.12) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.20.12) + '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.20.12) + '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.20.12) + '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.20.12) + '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.20.12) + '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.20.12) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.20.12) + '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.20.12) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.20.12) + '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.20.12) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.20.12) + '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.20.12) + '@babel/plugin-proposal-private-property-in-object': 7.21.0(@babel/core@7.20.12) + '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.20.12) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.20.12) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.20.12) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.20.12) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.20.12) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.20.12) + '@babel/plugin-syntax-import-assertions': 7.22.5(@babel/core@7.20.12) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.20.12) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.20.12) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.20.12) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.20.12) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.20.12) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.20.12) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.20.12) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.20.12) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.20.12) + '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.20.12) + '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.20.12) + '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.20.12) + '@babel/plugin-transform-block-scoping': 7.22.15(@babel/core@7.20.12) + '@babel/plugin-transform-classes': 7.22.15(@babel/core@7.20.12) + '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.20.12) + '@babel/plugin-transform-destructuring': 7.22.15(@babel/core@7.20.12) + '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.20.12) + '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.20.12) + '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.20.12) + '@babel/plugin-transform-for-of': 7.22.15(@babel/core@7.20.12) + '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.20.12) + '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.20.12) + '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.20.12) + '@babel/plugin-transform-modules-amd': 7.22.5(@babel/core@7.20.12) + '@babel/plugin-transform-modules-commonjs': 7.22.15(@babel/core@7.20.12) + '@babel/plugin-transform-modules-systemjs': 7.22.11(@babel/core@7.20.12) + '@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.20.12) + '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.20.12) + '@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.20.12) + '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.20.12) + '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.20.12) + '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.20.12) + '@babel/plugin-transform-regenerator': 7.22.10(@babel/core@7.20.12) + '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.20.12) + '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.20.12) + '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.20.12) + '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.20.12) + '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.20.12) + '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.20.12) + '@babel/plugin-transform-unicode-escapes': 7.22.10(@babel/core@7.20.12) + '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.20.12) + '@babel/preset-modules': 0.1.5(@babel/core@7.20.12) '@babel/types': 7.22.19 - babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.20.12 - babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.20.12 - babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.20.12 + babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.20.12) + babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.20.12) + babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.20.12) core-js-compat: 3.32.2 semver: 6.3.1 transitivePeerDependencies: - supports-color dev: true - /@babel/preset-env/7.21.4_@babel+core@7.22.11: + /@babel/preset-env@7.21.4(@babel/core@7.22.11): resolution: {integrity: sha512-2W57zHs2yDLm6GD5ZpvNn71lZ0B/iypSdIeq25OurDKji6AdzV07qp4s3n1/x5BqtiGaTrPN3nerlSCaC5qNTw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -8410,82 +9951,82 @@ packages: '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-option': 7.22.15 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.22.11 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7_@babel+core@7.22.11 - '@babel/plugin-proposal-async-generator-functions': 7.20.7_@babel+core@7.22.11 - '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.22.11 - '@babel/plugin-proposal-class-static-block': 7.21.0_@babel+core@7.22.11 - '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.22.11 - '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.22.11 - '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.22.11 - '@babel/plugin-proposal-logical-assignment-operators': 7.20.7_@babel+core@7.22.11 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.22.11 - '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.22.11 - '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.22.11 - '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.22.11 - '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.22.11 - '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.22.11 - '@babel/plugin-proposal-private-property-in-object': 7.21.0_@babel+core@7.22.11 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.22.11 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.22.11 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.22.11 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.22.11 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.22.11 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.22.11 - '@babel/plugin-syntax-import-assertions': 7.20.0_@babel+core@7.22.11 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.22.11 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.22.11 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.22.11 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.22.11 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.22.11 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.22.11 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.22.11 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.22.11 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.22.11 - '@babel/plugin-transform-arrow-functions': 7.20.7_@babel+core@7.22.11 - '@babel/plugin-transform-async-to-generator': 7.20.7_@babel+core@7.22.11 - '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.22.11 - '@babel/plugin-transform-block-scoping': 7.21.0_@babel+core@7.22.11 - '@babel/plugin-transform-classes': 7.21.0_@babel+core@7.22.11 - '@babel/plugin-transform-computed-properties': 7.20.7_@babel+core@7.22.11 - '@babel/plugin-transform-destructuring': 7.21.3_@babel+core@7.22.11 - '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.22.11 - '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.22.11 - '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.22.11 - '@babel/plugin-transform-for-of': 7.21.0_@babel+core@7.22.11 - '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.22.11 - '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.22.11 - '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.22.11 - '@babel/plugin-transform-modules-amd': 7.20.11_@babel+core@7.22.11 - '@babel/plugin-transform-modules-commonjs': 7.21.2_@babel+core@7.22.11 - '@babel/plugin-transform-modules-systemjs': 7.20.11_@babel+core@7.22.11 - '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.22.11 - '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5_@babel+core@7.22.11 - '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.22.11 - '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.22.11 - '@babel/plugin-transform-parameters': 7.21.3_@babel+core@7.22.11 - '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.22.11 - '@babel/plugin-transform-regenerator': 7.20.5_@babel+core@7.22.11 - '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.22.11 - '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.22.11 - '@babel/plugin-transform-spread': 7.20.7_@babel+core@7.22.11 - '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.22.11 - '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.22.11 - '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.22.11 - '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.22.11 - '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.22.11 - '@babel/preset-modules': 0.1.5_@babel+core@7.22.11 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6(@babel/core@7.22.11) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7(@babel/core@7.22.11) + '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.22.11) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.11) + '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.22.11) + '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.22.11) + '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.22.11) + '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.22.11) + '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.22.11) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.11) + '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.22.11) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.22.11) + '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.22.11) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.11) + '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.22.11) + '@babel/plugin-proposal-private-property-in-object': 7.21.0(@babel/core@7.22.11) + '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.22.11) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.11) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.11) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.11) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.11) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.11) + '@babel/plugin-syntax-import-assertions': 7.20.0(@babel/core@7.22.11) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.11) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.11) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.11) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.11) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.11) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.11) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.11) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.11) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.22.11) + '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.22.11) + '@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.22.11) + '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.22.11) + '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.22.11) + '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.22.11) + '@babel/plugin-transform-computed-properties': 7.20.7(@babel/core@7.22.11) + '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.22.11) + '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.22.11) + '@babel/plugin-transform-duplicate-keys': 7.18.9(@babel/core@7.22.11) + '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.22.11) + '@babel/plugin-transform-for-of': 7.21.0(@babel/core@7.22.11) + '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.22.11) + '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.22.11) + '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.22.11) + '@babel/plugin-transform-modules-amd': 7.20.11(@babel/core@7.22.11) + '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.22.11) + '@babel/plugin-transform-modules-systemjs': 7.20.11(@babel/core@7.22.11) + '@babel/plugin-transform-modules-umd': 7.18.6(@babel/core@7.22.11) + '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.22.11) + '@babel/plugin-transform-new-target': 7.18.6(@babel/core@7.22.11) + '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.22.11) + '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.22.11) + '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.22.11) + '@babel/plugin-transform-regenerator': 7.20.5(@babel/core@7.22.11) + '@babel/plugin-transform-reserved-words': 7.18.6(@babel/core@7.22.11) + '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.22.11) + '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.22.11) + '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.22.11) + '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.22.11) + '@babel/plugin-transform-typeof-symbol': 7.18.9(@babel/core@7.22.11) + '@babel/plugin-transform-unicode-escapes': 7.18.10(@babel/core@7.22.11) + '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.22.11) + '@babel/preset-modules': 0.1.5(@babel/core@7.22.11) '@babel/types': 7.22.19 - babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.22.11 - babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.22.11 - babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.22.11 + babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.22.11) + babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.22.11) + babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.22.11) core-js-compat: 3.30.0 semver: 6.3.1 transitivePeerDependencies: - supports-color dev: true - /@babel/preset-env/7.22.20_@babel+core@7.22.11: + /@babel/preset-env@7.22.20(@babel/core@7.22.11): resolution: {integrity: sha512-11MY04gGC4kSzlPHRfvVkNAZhUxOvm7DCJ37hPDnUENwe06npjIRAfInEMTGSb4LZK5ZgDFkv5hw0lGebHeTyg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -8496,86 +10037,86 @@ packages: '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-option': 7.22.15 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.15_@babel+core@7.22.11 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.15_@babel+core@7.22.11 - '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2_@babel+core@7.22.11 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.22.11 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.22.11 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.22.11 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.22.11 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.22.11 - '@babel/plugin-syntax-import-assertions': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-syntax-import-attributes': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.22.11 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.22.11 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.22.11 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.22.11 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.22.11 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.22.11 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.22.11 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.22.11 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.22.11 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.22.11 - '@babel/plugin-syntax-unicode-sets-regex': 7.18.6_@babel+core@7.22.11 - '@babel/plugin-transform-arrow-functions': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-async-generator-functions': 7.22.15_@babel+core@7.22.11 - '@babel/plugin-transform-async-to-generator': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-block-scoped-functions': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-block-scoping': 7.22.15_@babel+core@7.22.11 - '@babel/plugin-transform-class-properties': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-class-static-block': 7.22.11_@babel+core@7.22.11 - '@babel/plugin-transform-classes': 7.22.15_@babel+core@7.22.11 - '@babel/plugin-transform-computed-properties': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-destructuring': 7.22.15_@babel+core@7.22.11 - '@babel/plugin-transform-dotall-regex': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-duplicate-keys': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-dynamic-import': 7.22.11_@babel+core@7.22.11 - '@babel/plugin-transform-exponentiation-operator': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-export-namespace-from': 7.22.11_@babel+core@7.22.11 - '@babel/plugin-transform-for-of': 7.22.15_@babel+core@7.22.11 - '@babel/plugin-transform-function-name': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-json-strings': 7.22.11_@babel+core@7.22.11 - '@babel/plugin-transform-literals': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-logical-assignment-operators': 7.22.11_@babel+core@7.22.11 - '@babel/plugin-transform-member-expression-literals': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-modules-amd': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-modules-commonjs': 7.22.15_@babel+core@7.22.11 - '@babel/plugin-transform-modules-systemjs': 7.22.11_@babel+core@7.22.11 - '@babel/plugin-transform-modules-umd': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-new-target': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-nullish-coalescing-operator': 7.22.11_@babel+core@7.22.11 - '@babel/plugin-transform-numeric-separator': 7.22.11_@babel+core@7.22.11 - '@babel/plugin-transform-object-rest-spread': 7.22.15_@babel+core@7.22.11 - '@babel/plugin-transform-object-super': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-optional-catch-binding': 7.22.11_@babel+core@7.22.11 - '@babel/plugin-transform-optional-chaining': 7.22.15_@babel+core@7.22.11 - '@babel/plugin-transform-parameters': 7.22.15_@babel+core@7.22.11 - '@babel/plugin-transform-private-methods': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-private-property-in-object': 7.22.11_@babel+core@7.22.11 - '@babel/plugin-transform-property-literals': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-regenerator': 7.22.10_@babel+core@7.22.11 - '@babel/plugin-transform-reserved-words': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-shorthand-properties': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-spread': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-sticky-regex': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-template-literals': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-typeof-symbol': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-unicode-escapes': 7.22.10_@babel+core@7.22.11 - '@babel/plugin-transform-unicode-property-regex': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-unicode-regex': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-unicode-sets-regex': 7.22.5_@babel+core@7.22.11 - '@babel/preset-modules': 0.1.6-no-external-plugins_@babel+core@7.22.11 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.15(@babel/core@7.22.11) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.15(@babel/core@7.22.11) + '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.22.11) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.11) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.11) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.11) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.11) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.11) + '@babel/plugin-syntax-import-assertions': 7.22.5(@babel/core@7.22.11) + '@babel/plugin-syntax-import-attributes': 7.22.5(@babel/core@7.22.11) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.22.11) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.11) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.11) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.11) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.11) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.11) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.11) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.11) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.11) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.22.11) + '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.22.11) + '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.22.11) + '@babel/plugin-transform-async-generator-functions': 7.22.15(@babel/core@7.22.11) + '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.22.11) + '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.22.11) + '@babel/plugin-transform-block-scoping': 7.22.15(@babel/core@7.22.11) + '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.22.11) + '@babel/plugin-transform-class-static-block': 7.22.11(@babel/core@7.22.11) + '@babel/plugin-transform-classes': 7.22.15(@babel/core@7.22.11) + '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.22.11) + '@babel/plugin-transform-destructuring': 7.22.15(@babel/core@7.22.11) + '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.22.11) + '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.22.11) + '@babel/plugin-transform-dynamic-import': 7.22.11(@babel/core@7.22.11) + '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.22.11) + '@babel/plugin-transform-export-namespace-from': 7.22.11(@babel/core@7.22.11) + '@babel/plugin-transform-for-of': 7.22.15(@babel/core@7.22.11) + '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.22.11) + '@babel/plugin-transform-json-strings': 7.22.11(@babel/core@7.22.11) + '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.22.11) + '@babel/plugin-transform-logical-assignment-operators': 7.22.11(@babel/core@7.22.11) + '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.22.11) + '@babel/plugin-transform-modules-amd': 7.22.5(@babel/core@7.22.11) + '@babel/plugin-transform-modules-commonjs': 7.22.15(@babel/core@7.22.11) + '@babel/plugin-transform-modules-systemjs': 7.22.11(@babel/core@7.22.11) + '@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.22.11) + '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.22.11) + '@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.22.11) + '@babel/plugin-transform-nullish-coalescing-operator': 7.22.11(@babel/core@7.22.11) + '@babel/plugin-transform-numeric-separator': 7.22.11(@babel/core@7.22.11) + '@babel/plugin-transform-object-rest-spread': 7.22.15(@babel/core@7.22.11) + '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.22.11) + '@babel/plugin-transform-optional-catch-binding': 7.22.11(@babel/core@7.22.11) + '@babel/plugin-transform-optional-chaining': 7.22.15(@babel/core@7.22.11) + '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.22.11) + '@babel/plugin-transform-private-methods': 7.22.5(@babel/core@7.22.11) + '@babel/plugin-transform-private-property-in-object': 7.22.11(@babel/core@7.22.11) + '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.22.11) + '@babel/plugin-transform-regenerator': 7.22.10(@babel/core@7.22.11) + '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.22.11) + '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.22.11) + '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.22.11) + '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.22.11) + '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.22.11) + '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.22.11) + '@babel/plugin-transform-unicode-escapes': 7.22.10(@babel/core@7.22.11) + '@babel/plugin-transform-unicode-property-regex': 7.22.5(@babel/core@7.22.11) + '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.22.11) + '@babel/plugin-transform-unicode-sets-regex': 7.22.5(@babel/core@7.22.11) + '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.22.11) '@babel/types': 7.22.19 - babel-plugin-polyfill-corejs2: 0.4.5_@babel+core@7.22.11 - babel-plugin-polyfill-corejs3: 0.8.3_@babel+core@7.22.11 - babel-plugin-polyfill-regenerator: 0.5.2_@babel+core@7.22.11 + babel-plugin-polyfill-corejs2: 0.4.5(@babel/core@7.22.11) + babel-plugin-polyfill-corejs3: 0.8.3(@babel/core@7.22.11) + babel-plugin-polyfill-regenerator: 0.5.2(@babel/core@7.22.11) core-js-compat: 3.32.2 semver: 6.3.1 transitivePeerDependencies: - supports-color - /@babel/preset-flow/7.22.15_@babel+core@7.22.11: + /@babel/preset-flow@7.22.15(@babel/core@7.22.11): resolution: {integrity: sha512-dB5aIMqpkgbTfN5vDdTRPzjqtWiZcRESNR88QYnoPR+bmdYoluOzMX9tQerTv0XzSgZYctPfO1oc0N5zdog1ew==} engines: {node: '>=6.9.0'} peerDependencies: @@ -8584,36 +10125,36 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-option': 7.22.15 - '@babel/plugin-transform-flow-strip-types': 7.22.5_@babel+core@7.22.11 + '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.22.11) dev: true - /@babel/preset-modules/0.1.5_@babel+core@7.20.12: + /@babel/preset-modules@0.1.5(@babel/core@7.20.12): resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.12 - '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.20.12) + '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.20.12) '@babel/types': 7.22.19 esutils: 2.0.3 dev: true - /@babel/preset-modules/0.1.5_@babel+core@7.22.11: + /@babel/preset-modules@0.1.5(@babel/core@7.22.11): resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.22.11 - '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.22.11 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.22.11) + '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.22.11) '@babel/types': 7.22.19 esutils: 2.0.3 dev: true - /@babel/preset-modules/0.1.6-no-external-plugins_@babel+core@7.22.11: + /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.22.11): resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==} peerDependencies: '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 @@ -8623,7 +10164,7 @@ packages: '@babel/types': 7.22.19 esutils: 2.0.3 - /@babel/preset-react/7.18.6_@babel+core@7.22.11: + /@babel/preset-react@7.18.6(@babel/core@7.22.11): resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -8632,13 +10173,13 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-validator-option': 7.21.0 - '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.22.11 - '@babel/plugin-transform-react-jsx': 7.21.0_@babel+core@7.22.11 - '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.22.11 - '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.22.11 + '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.22.11) + '@babel/plugin-transform-react-jsx': 7.21.0(@babel/core@7.22.11) + '@babel/plugin-transform-react-jsx-development': 7.18.6(@babel/core@7.22.11) + '@babel/plugin-transform-react-pure-annotations': 7.18.6(@babel/core@7.22.11) dev: true - /@babel/preset-react/7.22.15_@babel+core@7.22.11: + /@babel/preset-react@7.22.15(@babel/core@7.22.11): resolution: {integrity: sha512-Csy1IJ2uEh/PecCBXXoZGAZBeCATTuePzCSB7dLYWS0vOEj6CNpjxIhW4duWwZodBNueH7QO14WbGn8YyeuN9w==} engines: {node: '>=6.9.0'} peerDependencies: @@ -8647,12 +10188,12 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-option': 7.22.15 - '@babel/plugin-transform-react-display-name': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-react-jsx': 7.22.15_@babel+core@7.22.11 - '@babel/plugin-transform-react-jsx-development': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-react-pure-annotations': 7.22.5_@babel+core@7.22.11 + '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.22.11) + '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.22.11) + '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.22.11) + '@babel/plugin-transform-react-pure-annotations': 7.22.5(@babel/core@7.22.11) - /@babel/preset-typescript/7.21.4_@babel+core@7.22.11: + /@babel/preset-typescript@7.21.4(@babel/core@7.22.11): resolution: {integrity: sha512-sMLNWY37TCdRH/bJ6ZeeOH1nPuanED7Ai9Y/vH31IPqalioJ6ZNFUWONsakhv4r4n+I6gm5lmoE0olkgib/j/A==} engines: {node: '>=6.9.0'} peerDependencies: @@ -8661,11 +10202,11 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-option': 7.22.15 - '@babel/plugin-syntax-jsx': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-modules-commonjs': 7.22.15_@babel+core@7.22.11 - '@babel/plugin-transform-typescript': 7.21.3_@babel+core@7.22.11 + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.11) + '@babel/plugin-transform-modules-commonjs': 7.22.15(@babel/core@7.22.11) + '@babel/plugin-transform-typescript': 7.21.3(@babel/core@7.22.11) - /@babel/register/7.21.0_@babel+core@7.22.11: + /@babel/register@7.21.0(@babel/core@7.22.11): resolution: {integrity: sha512-9nKsPmYDi5DidAqJaQooxIhsLJiNMkGr8ypQ8Uic7cIox7UCDsM7HuUGxdGT7mSDTYbqzIdsOWzfBton/YJrMw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -8679,30 +10220,30 @@ packages: source-map-support: 0.5.21 dev: true - /@babel/regjsgen/0.8.0: + /@babel/regjsgen@0.8.0: resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==} - /@babel/runtime-corejs3/7.21.0: + /@babel/runtime-corejs3@7.21.0: resolution: {integrity: sha512-TDD4UJzos3JJtM+tHX+w2Uc+KWj7GV+VKKFdMVd2Rx8sdA19hcc3P3AHFYd5LVOw+pYuSd5lICC3gm52B6Rwxw==} engines: {node: '>=6.9.0'} dependencies: core-js-pure: 3.30.0 regenerator-runtime: 0.13.11 - /@babel/runtime/7.20.13: + /@babel/runtime@7.20.13: resolution: {integrity: sha512-gt3PKXs0DBoL9xCvOIIZ2NEqAGZqHjAnmVbfQtB620V0uReIQutpel14KcneZuer7UioY8ALKZ7iocavvzTNFA==} engines: {node: '>=6.9.0'} dependencies: regenerator-runtime: 0.13.11 dev: true - /@babel/runtime/7.21.0: + /@babel/runtime@7.21.0: resolution: {integrity: sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==} engines: {node: '>=6.9.0'} dependencies: regenerator-runtime: 0.13.11 - /@babel/template/7.20.7: + /@babel/template@7.20.7: resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==} engines: {node: '>=6.9.0'} dependencies: @@ -8711,7 +10252,7 @@ packages: '@babel/types': 7.22.19 dev: true - /@babel/template/7.22.15: + /@babel/template@7.22.15: resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==} engines: {node: '>=6.9.0'} dependencies: @@ -8719,7 +10260,7 @@ packages: '@babel/parser': 7.22.16 '@babel/types': 7.22.19 - /@babel/traverse/7.22.11: + /@babel/traverse@7.22.11: resolution: {integrity: sha512-mzAenteTfomcB7mfPtyi+4oe5BZ6MXxWcn4CX+h4IRJ+OOGXBrWU6jDQavkQI9Vuc5P+donFabBfFCcmWka9lQ==} engines: {node: '>=6.9.0'} dependencies: @@ -8731,12 +10272,12 @@ packages: '@babel/helper-split-export-declaration': 7.22.6 '@babel/parser': 7.22.16 '@babel/types': 7.22.19 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) globals: 11.12.0 transitivePeerDependencies: - supports-color - /@babel/types/7.22.19: + /@babel/types@7.22.19: resolution: {integrity: sha512-P7LAw/LbojPzkgp5oznjE6tQEIWbp4PkkfrZDINTro9zgBRtI324/EYsiSI7lhPbpIQ+DCeR2NNmMWANGGfZsg==} engines: {node: '>=6.9.0'} dependencies: @@ -8744,34 +10285,34 @@ packages: '@babel/helper-validator-identifier': 7.22.20 to-fast-properties: 2.0.0 - /@base2/pretty-print-object/1.0.1: + /@base2/pretty-print-object@1.0.1: resolution: {integrity: sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==} dev: true - /@bcoe/v8-coverage/0.2.3: + /@bcoe/v8-coverage@0.2.3: resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} - /@codexteam/icons/0.0.4: + /@codexteam/icons@0.0.4: resolution: {integrity: sha512-V8N/TY2TGyas4wLrPIFq7bcow68b3gu8DfDt1+rrHPtXxcexadKauRJL6eQgfG7Z0LCrN4boLRawR4S9gjIh/Q==} dev: false - /@codexteam/icons/0.1.0: + /@codexteam/icons@0.1.0: resolution: {integrity: sha512-jW1fWnwtWzcP4FBGsaodbJY3s1ZaRU+IJy1pvJ7ygNQxkQinybJcwXoyt0a5mWwu/4w30A42EWhCrZn8lp4fdw==} dev: false - /@colors/colors/1.5.0: + /@colors/colors@1.5.0: resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==} engines: {node: '>=0.1.90'} requiresBuild: true - /@commitlint/cli/17.5.1: + /@commitlint/cli@17.5.1(@swc/core@1.3.49): resolution: {integrity: sha512-pRRgGSzdHQHehxZbGA3qF6wVPyl+EEQgTe/t321rtMLFbuJ7nRj2waS17s/v5oEbyZtiY5S8PGB6XtEIm0I+Sg==} engines: {node: '>=v14'} hasBin: true dependencies: '@commitlint/format': 17.4.4 '@commitlint/lint': 17.4.4 - '@commitlint/load': 17.5.0 + '@commitlint/load': 17.5.0(@swc/core@1.3.49) '@commitlint/read': 17.5.1 '@commitlint/types': 17.4.4 execa: 5.1.1 @@ -8784,14 +10325,14 @@ packages: - '@swc/wasm' dev: true - /@commitlint/cli/17.6.6_@swc+core@1.3.49: + /@commitlint/cli@17.6.6(@swc/core@1.3.49): resolution: {integrity: sha512-sTKpr2i/Fjs9OmhU+beBxjPavpnLSqZaO6CzwKVq2Tc4UYVTMFgpKOslDhUBVlfAUBfjVO8ParxC/MXkIOevEA==} engines: {node: '>=v14'} hasBin: true dependencies: '@commitlint/format': 17.4.4 '@commitlint/lint': 17.6.6 - '@commitlint/load': 17.5.0_@swc+core@1.3.49 + '@commitlint/load': 17.5.0(@swc/core@1.3.49) '@commitlint/read': 17.5.1 '@commitlint/types': 17.4.4 execa: 5.1.1 @@ -8804,33 +10345,33 @@ packages: - '@swc/wasm' dev: true - /@commitlint/config-angular-type-enum/17.4.0: + /@commitlint/config-angular-type-enum@17.4.0: resolution: {integrity: sha512-qbmfOfVqQHMKfc6CxS0A9b7+EFsOyEBoh4+i8Qa05uk8YhT/zY1CeIXK5V3wwemMDcHUegyL/ZnwCvWD7g8GxA==} engines: {node: '>=v14'} dev: true - /@commitlint/config-angular/17.4.4: + /@commitlint/config-angular@17.4.4: resolution: {integrity: sha512-ulCgBc1sDWwwW0HKGQDurcfWbWw1PZjwOFzeL2PZq3jcOgPfOzEHqE3dIjycB5DKlWNx4kUMcgwMWaX/zUtBNg==} engines: {node: '>=v14'} dependencies: '@commitlint/config-angular-type-enum': 17.4.0 dev: true - /@commitlint/config-conventional/17.4.4: + /@commitlint/config-conventional@17.4.4: resolution: {integrity: sha512-u6ztvxqzi6NuhrcEDR7a+z0yrh11elY66nRrQIpqsqW6sZmpxYkDLtpRH8jRML+mmxYQ8s4qqF06Q/IQx5aJeQ==} engines: {node: '>=v14'} dependencies: conventional-changelog-conventionalcommits: 5.0.0 dev: true - /@commitlint/config-conventional/17.6.6: + /@commitlint/config-conventional@17.6.6: resolution: {integrity: sha512-phqPz3BDhfj49FUYuuZIuDiw+7T6gNAEy7Yew1IBHqSohVUCWOK2FXMSAExzS2/9X+ET93g0Uz83KjiHDOOFag==} engines: {node: '>=v14'} dependencies: conventional-changelog-conventionalcommits: 5.0.0 dev: true - /@commitlint/config-validator/17.4.4: + /@commitlint/config-validator@17.4.4: resolution: {integrity: sha512-bi0+TstqMiqoBAQDvdEP4AFh0GaKyLFlPPEObgI29utoKEYoPQTvF0EYqIwYYLEoJYhj5GfMIhPHJkTJhagfeg==} engines: {node: '>=v14'} dependencies: @@ -8838,7 +10379,7 @@ packages: ajv: 8.12.0 dev: true - /@commitlint/config-validator/17.6.7: + /@commitlint/config-validator@17.6.7: resolution: {integrity: sha512-vJSncmnzwMvpr3lIcm0I8YVVDJTzyjy7NZAeXbTXy+MPUdAr9pKyyg7Tx/ebOQ9kqzE6O9WT6jg2164br5UdsQ==} engines: {node: '>=v14'} dependencies: @@ -8846,7 +10387,7 @@ packages: ajv: 8.12.0 dev: true - /@commitlint/ensure/17.4.4: + /@commitlint/ensure@17.4.4: resolution: {integrity: sha512-AHsFCNh8hbhJiuZ2qHv/m59W/GRE9UeOXbkOqxYMNNg9pJ7qELnFcwj5oYpa6vzTSHtPGKf3C2yUFNy1GGHq6g==} engines: {node: '>=v14'} dependencies: @@ -8858,12 +10399,12 @@ packages: lodash.upperfirst: 4.3.1 dev: true - /@commitlint/execute-rule/17.4.0: + /@commitlint/execute-rule@17.4.0: resolution: {integrity: sha512-LIgYXuCSO5Gvtc0t9bebAMSwd68ewzmqLypqI2Kke1rqOqqDbMpYcYfoPfFlv9eyLIh4jocHWwCK5FS7z9icUA==} engines: {node: '>=v14'} dev: true - /@commitlint/format/17.4.4: + /@commitlint/format@17.4.4: resolution: {integrity: sha512-+IS7vpC4Gd/x+uyQPTAt3hXs5NxnkqAZ3aqrHd5Bx/R9skyCAWusNlNbw3InDbAK6j166D9asQM8fnmYIa+CXQ==} engines: {node: '>=v14'} dependencies: @@ -8871,7 +10412,7 @@ packages: chalk: 4.1.2 dev: true - /@commitlint/is-ignored/17.6.6: + /@commitlint/is-ignored@17.6.6: resolution: {integrity: sha512-4Fw875faAKO+2nILC04yW/2Vy/wlV3BOYCSQ4CEFzriPEprc1Td2LILmqmft6PDEK5Sr14dT9tEzeaZj0V56Gg==} engines: {node: '>=v14'} dependencies: @@ -8879,7 +10420,7 @@ packages: semver: 7.5.2 dev: true - /@commitlint/lint/17.4.4: + /@commitlint/lint@17.4.4: resolution: {integrity: sha512-qgkCRRFjyhbMDWsti/5jRYVJkgYZj4r+ZmweZObnbYqPUl5UKLWMf9a/ZZisOI4JfiPmRktYRZ2JmqlSvg+ccw==} engines: {node: '>=v14'} dependencies: @@ -8889,7 +10430,7 @@ packages: '@commitlint/types': 17.4.4 dev: true - /@commitlint/lint/17.6.6: + /@commitlint/lint@17.6.6: resolution: {integrity: sha512-5bN+dnHcRLkTvwCHYMS7Xpbr+9uNi0Kq5NR3v4+oPNx6pYXt8ACuw9luhM/yMgHYwW0ajIR20wkPAFkZLEMGmg==} engines: {node: '>=v14'} dependencies: @@ -8899,31 +10440,7 @@ packages: '@commitlint/types': 17.4.4 dev: true - /@commitlint/load/17.5.0: - resolution: {integrity: sha512-l+4W8Sx4CD5rYFsrhHH8HP01/8jEP7kKf33Xlx2Uk2out/UKoKPYMOIRcDH5ppT8UXLMV+x6Wm5osdRKKgaD1Q==} - engines: {node: '>=v14'} - requiresBuild: true - dependencies: - '@commitlint/config-validator': 17.4.4 - '@commitlint/execute-rule': 17.4.0 - '@commitlint/resolve-extends': 17.4.4 - '@commitlint/types': 17.4.4 - '@types/node': 14.18.42 - chalk: 4.1.2 - cosmiconfig: 8.2.0 - cosmiconfig-typescript-loader: 4.3.0_jevzlj2cgfjah73lpomwhwagra - lodash.isplainobject: 4.0.6 - lodash.merge: 4.6.2 - lodash.uniq: 4.5.0 - resolve-from: 5.0.0 - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna - typescript: 4.9.5 - transitivePeerDependencies: - - '@swc/core' - - '@swc/wasm' - dev: true - - /@commitlint/load/17.5.0_@swc+core@1.3.49: + /@commitlint/load@17.5.0(@swc/core@1.3.49): resolution: {integrity: sha512-l+4W8Sx4CD5rYFsrhHH8HP01/8jEP7kKf33Xlx2Uk2out/UKoKPYMOIRcDH5ppT8UXLMV+x6Wm5osdRKKgaD1Q==} engines: {node: '>=v14'} requiresBuild: true @@ -8935,19 +10452,19 @@ packages: '@types/node': 14.18.42 chalk: 4.1.2 cosmiconfig: 8.2.0 - cosmiconfig-typescript-loader: 4.3.0_jevzlj2cgfjah73lpomwhwagra + cosmiconfig-typescript-loader: 4.3.0(@types/node@14.18.42)(cosmiconfig@8.2.0)(ts-node@10.9.1)(typescript@4.9.5) lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 lodash.uniq: 4.5.0 resolve-from: 5.0.0 - ts-node: 10.9.1_u2ngtadnsu6rqlw26gb7xq6vqq + ts-node: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typescript: 4.9.5 transitivePeerDependencies: - '@swc/core' - '@swc/wasm' dev: true - /@commitlint/load/17.7.1_@swc+core@1.3.49: + /@commitlint/load@17.7.1(@swc/core@1.3.49): resolution: {integrity: sha512-S/QSOjE1ztdogYj61p6n3UbkUvweR17FQ0zDbNtoTLc+Hz7vvfS7ehoTMQ27hPSjVBpp7SzEcOQu081RLjKHJQ==} engines: {node: '>=v14'} requiresBuild: true @@ -8959,12 +10476,12 @@ packages: '@types/node': 20.4.7 chalk: 4.1.2 cosmiconfig: 8.2.0 - cosmiconfig-typescript-loader: 4.3.0_b5dwmsbekyevytdgwiizfpibom + cosmiconfig-typescript-loader: 4.3.0(@types/node@20.4.7)(cosmiconfig@8.2.0)(ts-node@10.9.1)(typescript@4.9.5) lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 lodash.uniq: 4.5.0 resolve-from: 5.0.0 - ts-node: 10.9.1_3oc4l4vkwjasz4xtxrjz3zw4u4 + ts-node: 10.9.1(@swc/core@1.3.49)(@types/node@20.4.7)(typescript@4.9.5) typescript: 4.9.5 transitivePeerDependencies: - '@swc/core' @@ -8972,12 +10489,12 @@ packages: dev: true optional: true - /@commitlint/message/17.4.2: + /@commitlint/message@17.4.2: resolution: {integrity: sha512-3XMNbzB+3bhKA1hSAWPCQA3lNxR4zaeQAQcHj0Hx5sVdO6ryXtgUBGGv+1ZCLMgAPRixuc6en+iNAzZ4NzAa8Q==} engines: {node: '>=v14'} dev: true - /@commitlint/parse/17.6.5: + /@commitlint/parse@17.6.5: resolution: {integrity: sha512-0zle3bcn1Hevw5Jqpz/FzEWNo2KIzUbc1XyGg6WrWEoa6GH3A1pbqNF6MvE6rjuy6OY23c8stWnb4ETRZyN+Yw==} engines: {node: '>=v14'} dependencies: @@ -8986,7 +10503,7 @@ packages: conventional-commits-parser: 3.2.4 dev: true - /@commitlint/read/17.5.1: + /@commitlint/read@17.5.1: resolution: {integrity: sha512-7IhfvEvB//p9aYW09YVclHbdf1u7g7QhxeYW9ZHSO8Huzp8Rz7m05aCO1mFG7G8M+7yfFnXB5xOmG18brqQIBg==} engines: {node: '>=v14'} dependencies: @@ -8997,7 +10514,7 @@ packages: minimist: 1.2.8 dev: true - /@commitlint/resolve-extends/17.4.4: + /@commitlint/resolve-extends@17.4.4: resolution: {integrity: sha512-znXr1S0Rr8adInptHw0JeLgumS11lWbk5xAWFVno+HUFVN45875kUtqjrI6AppmD3JI+4s0uZlqqlkepjJd99A==} engines: {node: '>=v14'} dependencies: @@ -9009,9 +10526,10 @@ packages: resolve-global: 1.0.0 dev: true - /@commitlint/resolve-extends/17.6.7: + /@commitlint/resolve-extends@17.6.7: resolution: {integrity: sha512-PfeoAwLHtbOaC9bGn/FADN156CqkFz6ZKiVDMjuC2N5N0740Ke56rKU7Wxdwya8R8xzLK9vZzHgNbuGhaOVKIg==} engines: {node: '>=v14'} + requiresBuild: true dependencies: '@commitlint/config-validator': 17.6.7 '@commitlint/types': 17.4.4 @@ -9022,7 +10540,7 @@ packages: dev: true optional: true - /@commitlint/rules/17.6.5: + /@commitlint/rules@17.6.5: resolution: {integrity: sha512-uTB3zSmnPyW2qQQH+Dbq2rekjlWRtyrjDo4aLFe63uteandgkI+cc0NhhbBAzcXShzVk0qqp8SlkQMu0mgHg/A==} engines: {node: '>=v14'} dependencies: @@ -9033,26 +10551,26 @@ packages: execa: 5.1.1 dev: true - /@commitlint/to-lines/17.4.0: + /@commitlint/to-lines@17.4.0: resolution: {integrity: sha512-LcIy/6ZZolsfwDUWfN1mJ+co09soSuNASfKEU5sCmgFCvX5iHwRYLiIuoqXzOVDYOy7E7IcHilr/KS0e5T+0Hg==} engines: {node: '>=v14'} dev: true - /@commitlint/top-level/17.4.0: + /@commitlint/top-level@17.4.0: resolution: {integrity: sha512-/1loE/g+dTTQgHnjoCy0AexKAEFyHsR2zRB4NWrZ6lZSMIxAhBJnmCqwao7b4H8888PsfoTBCLBYIw8vGnej8g==} engines: {node: '>=v14'} dependencies: find-up: 5.0.0 dev: true - /@commitlint/types/17.4.4: + /@commitlint/types@17.4.4: resolution: {integrity: sha512-amRN8tRLYOsxRr6mTnGGGvB5EmW/4DDjLMgiwK3CCVEmN6Sr/6xePGEpWaspKkckILuUORCwe6VfDBw6uj4axQ==} engines: {node: '>=v14'} dependencies: chalk: 4.1.2 dev: true - /@contrast/fn-inspect/3.3.0: + /@contrast/fn-inspect@3.3.0: resolution: {integrity: sha512-iulijoAuhfamXZNWsEy4ORNd8TxqD6aKeMiukDpWSwuRJ3sB+4lOmY2DkP2WwlBpYMmh3k4/7LHP2I925Y2xKQ==} engines: {node: '>=12.13.0'} requiresBuild: true @@ -9062,7 +10580,7 @@ packages: dev: false optional: true - /@cspell/cspell-bundled-dicts/6.19.2: + /@cspell/cspell-bundled-dicts@6.19.2: resolution: {integrity: sha512-dbzMGK1JHRTUJ8Pkw/EYbj02RMYhM1/vfrAzgRpqogj83m0cfBC/0IHELkVIl3taC1KdFZ1XHXPp7310LZ6+ww==} engines: {node: '>=14'} dependencies: @@ -9113,7 +10631,7 @@ packages: '@cspell/dict-vue': 3.0.0 dev: true - /@cspell/cspell-bundled-dicts/6.31.1: + /@cspell/cspell-bundled-dicts@6.31.1: resolution: {integrity: sha512-rsIev+dk1Vd8H1OKZhNhXycIVsMfeWJaeW3QUi1l4oIoGwQfJVbs1ZPZPHE5cglzyHOW1jQNStXf34UKaC6siA==} engines: {node: '>=14'} dependencies: @@ -9165,381 +10683,381 @@ packages: '@cspell/dict-vue': 3.0.0 dev: true - /@cspell/cspell-pipe/6.19.2: + /@cspell/cspell-pipe@6.19.2: resolution: {integrity: sha512-OS+hUdSXU8408OjzBl1EgQ0R4OCXSFAthkN2nqByuQvIa2Ho0yRtXB9BgGCwfcAaffNzdLyTzzQsHhLjjRO0gg==} engines: {node: '>=14'} dev: true - /@cspell/cspell-pipe/6.31.1: + /@cspell/cspell-pipe@6.31.1: resolution: {integrity: sha512-zk1olZi4dr6GLm5PAjvsiZ01HURNSruUYFl1qSicGnTwYN8GaN4RhAwannAytcJ7zJPIcyXlid0YsB58nJf3wQ==} engines: {node: '>=14'} dev: true - /@cspell/cspell-service-bus/6.19.2: + /@cspell/cspell-service-bus@6.19.2: resolution: {integrity: sha512-PVv8q1y2KtuYIXd7tbWujJHNrIgd93k5aOEB9ffIMrrw1MhDFnuuB1l4rDN83zykLlab2dWPU29zhaGnH/EtMw==} engines: {node: '>=14'} dev: true - /@cspell/cspell-service-bus/6.31.1: + /@cspell/cspell-service-bus@6.31.1: resolution: {integrity: sha512-YyBicmJyZ1uwKVxujXw7sgs9x+Eps43OkWmCtDZmZlnq489HdTSuhF1kTbVi2yeFSeaXIS87+uHo12z97KkQpg==} engines: {node: '>=14'} dev: true - /@cspell/cspell-types/6.19.2: + /@cspell/cspell-types@6.19.2: resolution: {integrity: sha512-Eyivx0MAuYdOAOXrNC/oksMx5QL9NBi9Vvb+7CWPJSFk7p66B5sjcxAz6ujZcQ1WVBLoAqL75BoIqF+lgma9aA==} engines: {node: '>=14'} dev: true - /@cspell/cspell-types/6.31.1: + /@cspell/cspell-types@6.31.1: resolution: {integrity: sha512-1KeTQFiHMssW1eRoF2NZIEg4gPVIfXLsL2+VSD/AV6YN7lBcuf6gRRgV5KWYarhxtEfjxhDdDTmu26l/iJEUtw==} engines: {node: '>=14'} dev: true - /@cspell/dict-ada/4.0.1: + /@cspell/dict-ada@4.0.1: resolution: {integrity: sha512-/E9o3nHrXOhYmQE43deKbxZcR3MIJAsa+66IzP9TXGHheKEx8b9dVMVVqydDDH8oom1H0U20NRPtu6KRVbT9xw==} dev: true - /@cspell/dict-aws/1.0.14: + /@cspell/dict-aws@1.0.14: resolution: {integrity: sha512-K21CfB4ZpKYwwDQiPfic2zJA/uxkbsd4IQGejEvDAhE3z8wBs6g6BwwqdVO767M9NgZqc021yAVpr79N5pWe3w==} dev: true - /@cspell/dict-aws/3.0.0: + /@cspell/dict-aws@3.0.0: resolution: {integrity: sha512-O1W6nd5y3Z00AMXQMzfiYrIJ1sTd9fB1oLr+xf/UD7b3xeHeMeYE2OtcWbt9uyeHim4tk+vkSTcmYEBKJgS5bQ==} dev: true - /@cspell/dict-bash/1.0.18: + /@cspell/dict-bash@1.0.18: resolution: {integrity: sha512-kJIqQ+FD2TCSgaaP5XLEDgy222+pVWTc+VhveNO++gnTWU3BCVjkD5LjfW7g/CmGONnz+nwXDueWspProaSdJw==} dev: true - /@cspell/dict-bash/4.1.1: + /@cspell/dict-bash@4.1.1: resolution: {integrity: sha512-8czAa/Mh96wu2xr0RXQEGMTBUGkTvYn/Pb0o+gqOO1YW+poXGQc3gx0YPqILDryP/KCERrNvkWUJz3iGbvwC2A==} dev: true - /@cspell/dict-companies/1.0.40: + /@cspell/dict-companies@1.0.40: resolution: {integrity: sha512-Aw07qiTroqSST2P5joSrC4uOA05zTXzI2wMb+me3q4Davv1D9sCkzXY0TGoC2vzhNv5ooemRi9KATGaBSdU1sw==} dev: true - /@cspell/dict-companies/3.0.9: + /@cspell/dict-companies@3.0.9: resolution: {integrity: sha512-wSkVIJjk33Sm3LhieNv9TsSvUSeP0R/h8xx06NqbMYF43w9J8hZiMHlbB3FzaSOHRpXT5eBIJBVTeFbceZdiqg==} dev: true - /@cspell/dict-cpp/1.1.40: + /@cspell/dict-cpp@1.1.40: resolution: {integrity: sha512-sscfB3woNDNj60/yGXAdwNtIRWZ89y35xnIaJVDMk5TPMMpaDvuk0a34iOPIq0g4V+Y8e3RyAg71SH6ADwSjGw==} dev: true - /@cspell/dict-cpp/4.0.3: + /@cspell/dict-cpp@4.0.3: resolution: {integrity: sha512-gbXY9cUgRpb5mpw19VBy+YNUqNMlT5Dj70d8V1yIFbqPVHxccmxwdU4rlNaRyYrC41kDZwxmG7QQwcng6FdGcg==} dev: true - /@cspell/dict-cpp/5.0.2: + /@cspell/dict-cpp@5.0.2: resolution: {integrity: sha512-Q0ZjfhrHHfm0Y1/7LMCq3Fne/bhiBeBogUw4TV1wX/1tg3m+5BtaW/7GiOzRk+rFsblVj3RFam59VJKMT3vSoQ==} dev: true - /@cspell/dict-cryptocurrencies/1.0.10: + /@cspell/dict-cryptocurrencies@1.0.10: resolution: {integrity: sha512-47ABvDJOkaST/rXipNMfNvneHUzASvmL6K/CbOFpYKfsd0x23Jc9k1yaOC7JAm82XSC/8a7+3Yu+Fk2jVJNnsA==} dev: true - /@cspell/dict-cryptocurrencies/3.0.1: + /@cspell/dict-cryptocurrencies@3.0.1: resolution: {integrity: sha512-Tdlr0Ahpp5yxtwM0ukC13V6+uYCI0p9fCRGMGZt36rWv8JQZHIuHfehNl7FB/Qc09NCF7p5ep0GXbL+sVTd/+w==} dev: true - /@cspell/dict-csharp/1.0.11: + /@cspell/dict-csharp@1.0.11: resolution: {integrity: sha512-nub+ZCiTgmT87O+swI+FIAzNwaZPWUGckJU4GN402wBq420V+F4ZFqNV7dVALJrGaWH7LvADRtJxi6cZVHJKeA==} dev: true - /@cspell/dict-csharp/4.0.2: + /@cspell/dict-csharp@4.0.2: resolution: {integrity: sha512-1JMofhLK+4p4KairF75D3A924m5ERMgd1GvzhwK2geuYgd2ZKuGW72gvXpIV7aGf52E3Uu1kDXxxGAiZ5uVG7g==} dev: true - /@cspell/dict-css/1.0.13: + /@cspell/dict-css@1.0.13: resolution: {integrity: sha512-HU8RbFRoGanFH85mT01Ot/Ay48ixr/gG25VPLtdq56QTrmPsw79gxYm/5Qay16eQbpoPIxaj5CAWNam+DX4GbA==} dev: true - /@cspell/dict-css/4.0.5: + /@cspell/dict-css@4.0.5: resolution: {integrity: sha512-z5vw8nJSyKd6d3i5UmMNoVcAp0wxvs9OHWOmAeJKT9fO3tok02gK24VZhcJ0NJtiKdHQ2zRuzdfWl51wdAiY6A==} dev: true - /@cspell/dict-dart/2.0.2: + /@cspell/dict-dart@2.0.2: resolution: {integrity: sha512-jigcODm7Z4IFZ4vParwwP3IT0fIgRq/9VoxkXfrxBMsLBGGM2QltHBj7pl+joX+c4cOHxfyZktGJK1B1wFtR4Q==} dev: true - /@cspell/dict-django/1.0.26: + /@cspell/dict-django@1.0.26: resolution: {integrity: sha512-mn9bd7Et1L2zuibc08GVHTiD2Go3/hdjyX5KLukXDklBkq06r+tb0OtKtf1zKodtFDTIaYekGADhNhA6AnKLkg==} dev: true - /@cspell/dict-django/4.0.2: + /@cspell/dict-django@4.0.2: resolution: {integrity: sha512-L0Yw6+Yh2bE9/FAMG4gy9m752G4V8HEBjEAGeRIQ9qvxDLR9yD6dPOtgEFTjv7SWlKSrLb9wA/W3Q2GKCOusSg==} dev: true - /@cspell/dict-docker/1.1.6: + /@cspell/dict-docker@1.1.6: resolution: {integrity: sha512-zCCiRTZ6EOQpBnSOm0/3rnKW1kCcAUDUA7SxJG3SuH6iZvKi3I8FEg8+O83WQUeXg0SyPNerD9F40JLnnJjJig==} dev: true - /@cspell/dict-dotnet/1.0.32: + /@cspell/dict-dotnet@1.0.32: resolution: {integrity: sha512-9H9vXrgJB4KF8xsyTToXO53cXD33iyfrpT4mhCds+YLUw3P3x3E9myszgJzshnrxYBvQZ+QMII57Qr6SjZVk4Q==} dev: true - /@cspell/dict-dotnet/4.0.2: + /@cspell/dict-dotnet@4.0.2: resolution: {integrity: sha512-Cu+Ob142tBQ2cYrpK/d3tjm/FvNXQXwdUShRIPKx03HbtUk9BoTdeFY5bX+Zz7GeV66OJCMrmpFANrtKpB8NTg==} dev: true - /@cspell/dict-dotnet/5.0.0: + /@cspell/dict-dotnet@5.0.0: resolution: {integrity: sha512-EOwGd533v47aP5QYV8GlSSKkmM9Eq8P3G/eBzSpH3Nl2+IneDOYOBLEUraHuiCtnOkNsz0xtZHArYhAB2bHWAw==} dev: true - /@cspell/dict-elixir/1.0.26: + /@cspell/dict-elixir@1.0.26: resolution: {integrity: sha512-hz1yETUiRJM7yjN3mITSnxcmZaEyaBbyJhpZPpg+cKUil+xhHeZ2wwfbRc83QHGmlqEuDWbdCFqKSpCDJYpYhg==} dev: true - /@cspell/dict-elixir/4.0.2: + /@cspell/dict-elixir@4.0.2: resolution: {integrity: sha512-/YeHlpZ1pE9VAyxp3V0xyUPapNyC61WwFuw2RByeoMqqYaIfS3Hw+JxtimOsAKVhUvgUH58zyKl5K5Q6FqgCpw==} dev: true - /@cspell/dict-en-common-misspellings/1.0.2: + /@cspell/dict-en-common-misspellings@1.0.2: resolution: {integrity: sha512-jg7ZQZpZH7+aAxNBlcAG4tGhYF6Ksy+QS5Df73Oo+XyckBjC9QS+PrRwLTeYoFIgXy5j3ICParK5r3MSSoL4gw==} dev: true - /@cspell/dict-en-gb/1.1.33: + /@cspell/dict-en-gb@1.1.33: resolution: {integrity: sha512-tKSSUf9BJEV+GJQAYGw5e+ouhEe2ZXE620S7BLKe3ZmpnjlNG9JqlnaBhkIMxKnNFkLY2BP/EARzw31AZnOv4g==} dev: true - /@cspell/dict-en_us/1.2.45: + /@cspell/dict-en_us@1.2.45: resolution: {integrity: sha512-UPwR4rfiJCxnS+Py+EK9E4AUj3aPZE4p/yBRSHN+5aBQConlI0lLDtMceH5wlupA/sQTU1ERZGPJA9L96jVSyQ==} dev: true - /@cspell/dict-en_us/4.3.2: + /@cspell/dict-en_us@4.3.2: resolution: {integrity: sha512-o8xtHDLPNzW6hK5b1TaDTWt25vVi9lWlL6/dZ9YoS+ZMj+Dy/yuXatqfOgeGyU3a9+2gxC0kbr4oufMUQXI2mQ==} dev: true - /@cspell/dict-filetypes/1.1.8: + /@cspell/dict-filetypes@1.1.8: resolution: {integrity: sha512-EllahNkhzvLWo0ptwu0l3oEeAJOQSUpZnDfnKRIh6mJVehuSovNHwA9vrdZ8jBUjuqcfaN2e7c32zN0D/qvWJQ==} dev: true - /@cspell/dict-filetypes/3.0.0: + /@cspell/dict-filetypes@3.0.0: resolution: {integrity: sha512-Fiyp0z5uWaK0d2TfR9GMUGDKmUMAsOhGD5A0kHoqnNGswL2iw0KB0mFBONEquxU65fEnQv4R+jdM2d9oucujuA==} dev: true - /@cspell/dict-fonts/1.0.14: + /@cspell/dict-fonts@1.0.14: resolution: {integrity: sha512-VhIX+FVYAnqQrOuoFEtya6+H72J82cIicz9QddgknsTqZQ3dvgp6lmVnsQXPM3EnzA8n1peTGpLDwHzT7ociLA==} dev: true - /@cspell/dict-fonts/3.0.2: + /@cspell/dict-fonts@3.0.2: resolution: {integrity: sha512-Z5QdbgEI7DV+KPXrAeDA6dDm/vTzyaW53SGlKqz6PI5VhkOjgkBXv3YtZjnxMZ4dY2ZIqq+RUK6qa9Pi8rQdGQ==} dev: true - /@cspell/dict-fullstack/1.0.39: + /@cspell/dict-fullstack@1.0.39: resolution: {integrity: sha512-Mbi+zWdiP9yzL+X4YD9Tgcm5YQ95Ql+Y3vF2LRnOY6g2QWaijTRN1rgksVuxzpFqHi//+bx2uoUb0XEKBYDi8g==} dev: true - /@cspell/dict-fullstack/3.1.5: + /@cspell/dict-fullstack@3.1.5: resolution: {integrity: sha512-6ppvo1dkXUZ3fbYn/wwzERxCa76RtDDl5Afzv2lijLoijGGUw5yYdLBKJnx8PJBGNLh829X352ftE7BElG4leA==} dev: true - /@cspell/dict-gaming-terms/1.0.4: + /@cspell/dict-gaming-terms@1.0.4: resolution: {integrity: sha512-hbDduNXlk4AOY0wFxcDMWBPpm34rpqJBeqaySeoUH70eKxpxm+dvjpoRLJgyu0TmymEICCQSl6lAHTHSDiWKZg==} dev: true - /@cspell/dict-git/2.0.0: + /@cspell/dict-git@2.0.0: resolution: {integrity: sha512-n1AxyX5Kgxij/sZFkxFJlzn3K9y/sCcgVPg/vz4WNJ4K9YeTsUmyGLA2OQI7d10GJeiuAo2AP1iZf2A8j9aj2w==} dev: true - /@cspell/dict-golang/1.1.24: + /@cspell/dict-golang@1.1.24: resolution: {integrity: sha512-qq3Cjnx2U1jpeWAGJL1GL0ylEhUMqyaR36Xij6Y6Aq4bViCRp+HRRqk0x5/IHHbOrti45h3yy7ii1itRFo+Xkg==} dev: true - /@cspell/dict-golang/5.0.2: + /@cspell/dict-golang@5.0.2: resolution: {integrity: sha512-TNOQzsiLv4I56w5188OnJW+2ttjekoBl8IyPpI25GeV3dky4d+TX5pujayvcKQ+SM8vV8u2lpQpvyr4YePhiQg==} dev: true - /@cspell/dict-golang/6.0.1: + /@cspell/dict-golang@6.0.1: resolution: {integrity: sha512-Z19FN6wgg2M/A+3i1O8qhrGaxUUGOW8S2ySN0g7vp4HTHeFmockEPwYx7gArfssNIruw60JorZv+iLJ6ilTeow==} dev: true - /@cspell/dict-haskell/1.0.13: + /@cspell/dict-haskell@1.0.13: resolution: {integrity: sha512-kvl8T84cnYRPpND/P3D86P6WRSqebsbk0FnMfy27zo15L5MLAb3d3MOiT1kW3vEWfQgzUD7uddX/vUiuroQ8TA==} dev: true - /@cspell/dict-haskell/4.0.1: + /@cspell/dict-haskell@4.0.1: resolution: {integrity: sha512-uRrl65mGrOmwT7NxspB4xKXFUenNC7IikmpRZW8Uzqbqcu7ZRCUfstuVH7T1rmjRgRkjcIjE4PC11luDou4wEQ==} dev: true - /@cspell/dict-html-symbol-entities/1.0.23: + /@cspell/dict-html-symbol-entities@1.0.23: resolution: {integrity: sha512-PV0UBgcBFbBLf/m1wfkVMM8w96kvfHoiCGLWO6BR3Q9v70IXoE4ae0+T+f0CkxcEkacMqEQk/I7vuE9MzrjaNw==} dev: true - /@cspell/dict-html-symbol-entities/4.0.0: + /@cspell/dict-html-symbol-entities@4.0.0: resolution: {integrity: sha512-HGRu+48ErJjoweR5IbcixxETRewrBb0uxQBd6xFGcxbEYCX8CnQFTAmKI5xNaIt2PKaZiJH3ijodGSqbKdsxhw==} dev: true - /@cspell/dict-html/1.1.9: + /@cspell/dict-html@1.1.9: resolution: {integrity: sha512-vvnYia0tyIS5Fdoz+gEQm77MGZZE66kOJjuNpIYyRHCXFAhWdYz3SmkRm6YKJSWSvuO+WBJYTKDvkOxSh3Fx/w==} dev: true - /@cspell/dict-html/4.0.3: + /@cspell/dict-html@4.0.3: resolution: {integrity: sha512-Gae8i8rrArT0UyG1I6DHDK62b7Be6QEcBSIeWOm4VIIW1CASkN9B0qFgSVnkmfvnu1Y3H7SSaaEynKjdj3cs8w==} dev: true - /@cspell/dict-java/1.0.23: + /@cspell/dict-java@1.0.23: resolution: {integrity: sha512-LcOg9srYLDoNGd8n3kbfDBlZD+LOC9IVcnFCdua1b/luCHNVmlgBx7e677qPu7olpMYOD5TQIVW2OmM1+/6MFA==} dev: true - /@cspell/dict-java/5.0.5: + /@cspell/dict-java@5.0.5: resolution: {integrity: sha512-X19AoJgWIBwJBSWGFqSgHaBR/FEykBHTMjL6EqOnhIGEyE9nvuo32tsSHjXNJ230fQxQptEvRZoaldNLtKxsRg==} dev: true - /@cspell/dict-k8s/1.0.1: + /@cspell/dict-k8s@1.0.1: resolution: {integrity: sha512-gc5y4Nm3hVdMZNBZfU2M1AsAmObZsRWjCUk01NFPfGhFBXyVne41T7E62rpnzu5330FV/6b/TnFcPgRmak9lLw==} dev: true - /@cspell/dict-latex/1.0.25: + /@cspell/dict-latex@1.0.25: resolution: {integrity: sha512-cEgg91Migqcp1SdVV7dUeMxbPDhxdNo6Fgq2eygAXQjIOFK520FFvh/qxyBvW90qdZbIRoU2AJpchyHfGuwZFA==} dev: true - /@cspell/dict-latex/3.1.0: + /@cspell/dict-latex@3.1.0: resolution: {integrity: sha512-XD5S3FY0DrYiun2vm/KKOkeaD30LXp9v5EzVTVQvmxqQrQh0HvOT3TFD7lgKbyzZaG7E+l3wS94uwwm80cOmuw==} dev: true - /@cspell/dict-latex/4.0.0: + /@cspell/dict-latex@4.0.0: resolution: {integrity: sha512-LPY4y6D5oI7D3d+5JMJHK/wxYTQa2lJMSNxps2JtuF8hbAnBQb3igoWEjEbIbRRH1XBM0X8dQqemnjQNCiAtxQ==} dev: true - /@cspell/dict-lorem-ipsum/1.0.22: + /@cspell/dict-lorem-ipsum@1.0.22: resolution: {integrity: sha512-yqzspR+2ADeAGUxLTfZ4pXvPl7FmkENMRcGDECmddkOiuEwBCWMZdMP5fng9B0Q6j91hQ8w9CLvJKBz10TqNYg==} dev: true - /@cspell/dict-lorem-ipsum/3.0.0: + /@cspell/dict-lorem-ipsum@3.0.0: resolution: {integrity: sha512-msEV24qEpzWZs2kcEicqYlhyBpR0amfDkJOs+iffC07si9ftqtQ+yP3lf1VFLpgqw3SQh1M1vtU7RD4sPrNlcQ==} dev: true - /@cspell/dict-lua/1.0.16: + /@cspell/dict-lua@1.0.16: resolution: {integrity: sha512-YiHDt8kmHJ8nSBy0tHzaxiuitYp+oJ66ffCYuFWTNB3//Y0SI4OGHU3omLsQVeXIfCeVrO4DrVvRDoCls9B5zQ==} dev: true - /@cspell/dict-lua/4.0.1: + /@cspell/dict-lua@4.0.1: resolution: {integrity: sha512-j0MFmeCouSoC6EdZTbvGe1sJ9V+ruwKSeF+zRkNNNload7R72Co5kX1haW2xLHGdlq0kqSy1ODRZKdVl0e+7hg==} dev: true - /@cspell/dict-node/1.0.12: + /@cspell/dict-node@1.0.12: resolution: {integrity: sha512-RPNn/7CSkflAWk0sbSoOkg0ORrgBARUjOW3QjB11KwV1gSu8f5W/ij/S50uIXtlrfoBLqd4OyE04jyON+g/Xfg==} dev: true - /@cspell/dict-node/4.0.2: + /@cspell/dict-node@4.0.2: resolution: {integrity: sha512-FEQJ4TnMcXEFslqBQkXa5HposMoCGsiBv2ux4IZuIXgadXeHKHUHk60iarWpjhzNzQLyN2GD7NoRMd12bK3Llw==} dev: true - /@cspell/dict-npm/1.0.16: + /@cspell/dict-npm@1.0.16: resolution: {integrity: sha512-RwkuZGcYBxL3Yux3cSG/IOWGlQ1e9HLCpHeyMtTVGYKAIkFAVUnGrz20l16/Q7zUG7IEktBz5O42kAozrEnqMQ==} dev: true - /@cspell/dict-npm/5.0.5: + /@cspell/dict-npm@5.0.5: resolution: {integrity: sha512-eirZm4XpJNEcbmLGIwI2qXdRRlCKwEsH9mT3qCUytmbj6S6yn63F+8bShMW/yQBedV7+GXq9Td+cJdqiVutOiA==} dev: true - /@cspell/dict-php/1.0.25: + /@cspell/dict-php@1.0.25: resolution: {integrity: sha512-RoBIP5MRdByyPaXcznZMfOY1JdCMYPPLua5E9gkq0TJO7bX5mC9hyAKfYBSWVQunZydd82HZixjb5MPkDFU1uw==} dev: true - /@cspell/dict-php/3.0.4: + /@cspell/dict-php@3.0.4: resolution: {integrity: sha512-QX6zE/ZfnT3O5lSwV8EPVh8Va39ds34gSNNR8I4GWiuDpKcTkZPFi4OLoP3Tlhbl/3G0Ha35OkSDLvZfu8mnkA==} dev: true - /@cspell/dict-php/4.0.1: + /@cspell/dict-php@4.0.1: resolution: {integrity: sha512-XaQ/JkSyq2c07MfRG54DjLi2CV+HHwS99DDCAao9Fq2JfkWroTQsUeek7wYZXJATrJVOULoV3HKih12x905AtQ==} dev: true - /@cspell/dict-powershell/1.0.19: + /@cspell/dict-powershell@1.0.19: resolution: {integrity: sha512-zF/raM/lkhXeHf4I43OtK0gP9rBeEJFArscTVwLWOCIvNk21MJcNoTYoaGw+c056+Q+hJL0psGLO7QN+mxYH1A==} dev: true - /@cspell/dict-powershell/4.0.2: + /@cspell/dict-powershell@4.0.2: resolution: {integrity: sha512-3Wk2Z0fxpewML0zq4a9W5IsPZ0YwvzA8c6ykFdwQ0xcBQc/xRfdb9Z5drYXf9bobck1+MacGrprSeQXrmeByNQ==} dev: true - /@cspell/dict-powershell/5.0.1: + /@cspell/dict-powershell@5.0.1: resolution: {integrity: sha512-lLl+syWFgfv2xdsoxHfPIB2FGkn//XahCIKcRaf52AOlm1/aXeaJN579B9HCpvM7wawHzMqJ33VJuL/vb6Lc4g==} dev: true - /@cspell/dict-public-licenses/2.0.2: + /@cspell/dict-public-licenses@2.0.2: resolution: {integrity: sha512-baKkbs/WGEV2lCWZoL0KBPh3uiPcul5GSDwmXEBAsR5McEW52LF94/b7xWM0EmSAc/y8ODc5LnPYC7RDRLi6LQ==} dev: true - /@cspell/dict-python/1.0.38: + /@cspell/dict-python@1.0.38: resolution: {integrity: sha512-KuyOQaby9NID/pn7EkXilpUxjVIvvyLzhr7BPsDS6FcvUE8Yhss6bJowEDHSv6pa+W2387phoqbDf2rTicquAA==} dev: true - /@cspell/dict-python/4.0.2: + /@cspell/dict-python@4.0.2: resolution: {integrity: sha512-w1jSWDR1CkO23cZFbSYgnD/ZqknDZSVCI1AOE6sSszOJR8shmBkV3lMBYd+vpLsWhmkLLBcZTXDkiqFLXDGowQ==} dev: true - /@cspell/dict-r/2.0.1: + /@cspell/dict-r@2.0.1: resolution: {integrity: sha512-KCmKaeYMLm2Ip79mlYPc8p+B2uzwBp4KMkzeLd5E6jUlCL93Y5Nvq68wV5fRLDRTf7N1LvofkVFWfDcednFOgA==} dev: true - /@cspell/dict-ruby/1.0.15: + /@cspell/dict-ruby@1.0.15: resolution: {integrity: sha512-I76hJA///lc1pgmDTGUFHN/O8KLIZIU/8TgIYIGI6Ix/YzSEvWNdQYbANn6JbCynS0X+7IbZ2Ft+QqvmGtIWuA==} dev: true - /@cspell/dict-ruby/4.0.2: + /@cspell/dict-ruby@4.0.2: resolution: {integrity: sha512-fCoQHvLhTAetzXCUZMpyoCUPFMiyLHuECIPOiuYW6TGnP2eGV9y4j2J8HAOVtkyxOKUoyK+zZgtrma64yTUMkg==} dev: true - /@cspell/dict-ruby/5.0.0: + /@cspell/dict-ruby@5.0.0: resolution: {integrity: sha512-ssb96QxLZ76yPqFrikWxItnCbUKhYXJ2owkoIYzUGNFl2CHSoHCb5a6Zetum9mQ/oUA3gNeUhd28ZUlXs0la2A==} dev: true - /@cspell/dict-rust/1.0.23: + /@cspell/dict-rust@1.0.23: resolution: {integrity: sha512-lR4boDzs79YD6+30mmiSGAMMdwh7HTBAPUFSB0obR3Kidibfc3GZ+MHWZXay5dxZ4nBKM06vyjtanF9VJ8q1Iw==} dev: true - /@cspell/dict-rust/4.0.1: + /@cspell/dict-rust@4.0.1: resolution: {integrity: sha512-xJSSzHDK2z6lSVaOmMxl3PTOtfoffaxMo7fTcbZUF+SCJzfKbO6vnN9TCGX2sx1RHFDz66Js6goz6SAZQdOwaw==} dev: true - /@cspell/dict-scala/1.0.21: + /@cspell/dict-scala@1.0.21: resolution: {integrity: sha512-5V/R7PRbbminTpPS3ywgdAalI9BHzcEjEj9ug4kWYvBIGwSnS7T6QCFCiu+e9LvEGUqQC+NHgLY4zs1NaBj2vA==} dev: true - /@cspell/dict-scala/4.0.1: + /@cspell/dict-scala@4.0.1: resolution: {integrity: sha512-UvdQpAugrCqRC+2wfqJ4FFKpJr+spLrrrAmqdWEgAyZNMz8ib9FkO+yoIQnNFeodzI9xVPN9Hror+MjXbb2soQ==} dev: true - /@cspell/dict-scala/5.0.0: + /@cspell/dict-scala@5.0.0: resolution: {integrity: sha512-ph0twaRoV+ylui022clEO1dZ35QbeEQaKTaV2sPOsdwIokABPIiK09oWwGK9qg7jRGQwVaRPEq0Vp+IG1GpqSQ==} dev: true - /@cspell/dict-software-terms/1.0.48: + /@cspell/dict-software-terms@1.0.48: resolution: {integrity: sha512-pfF3Ys2gRffu5ElqkH7FQMDMi/iZMyOzpGMb3FSH0PJ2AnRQ5rRNWght1h2L36YxvXl0mWVaFrrfwiOyRIc8ZQ==} dev: true - /@cspell/dict-software-terms/3.1.6: + /@cspell/dict-software-terms@3.1.6: resolution: {integrity: sha512-w46+pIMRVtrDuTZXK/YxDP5NL5yVoX0ImEPO0s9WbxdyyfhzAF3sGYHBGN/50OGLHExcqe6Idb9feoRC9mCLxw==} dev: true - /@cspell/dict-sql/2.1.0: + /@cspell/dict-sql@2.1.0: resolution: {integrity: sha512-Bb+TNWUrTNNABO0bmfcYXiTlSt0RD6sB2MIY+rNlaMyIwug43jUjeYmkLz2tPkn3+2uvySeFEOMVYhMVfcuDKg==} dev: true - /@cspell/dict-svelte/1.0.2: + /@cspell/dict-svelte@1.0.2: resolution: {integrity: sha512-rPJmnn/GsDs0btNvrRBciOhngKV98yZ9SHmg8qI6HLS8hZKvcXc0LMsf9LLuMK1TmS2+WQFAan6qeqg6bBxL2Q==} dev: true - /@cspell/dict-swift/2.0.1: + /@cspell/dict-swift@2.0.1: resolution: {integrity: sha512-gxrCMUOndOk7xZFmXNtkCEeroZRnS2VbeaIPiymGRHj5H+qfTAzAKxtv7jJbVA3YYvEzWcVE2oKDP4wcbhIERw==} dev: true - /@cspell/dict-typescript/1.0.20: + /@cspell/dict-typescript@1.0.20: resolution: {integrity: sha512-yIuGeeZtQA2gqpGefGjZqBl8iGJpIYWz0QzDqsscNi2qfSnLsbjM0RkRbTehM8y9gGGe7xfgUP5adxceJa5Krg==} dev: true - /@cspell/dict-typescript/3.1.1: + /@cspell/dict-typescript@3.1.1: resolution: {integrity: sha512-N9vNJZoOXmmrFPR4ir3rGvnqqwmQGgOYoL1+y6D4oIhyr7FhaYiyF/d7QT61RmjZQcATMa6PSL+ZisCeRLx9+A==} dev: true - /@cspell/dict-vue/3.0.0: + /@cspell/dict-vue@3.0.0: resolution: {integrity: sha512-niiEMPWPV9IeRBRzZ0TBZmNnkK3olkOPYxC1Ny2AX4TGlYRajcW0WUtoSHmvvjZNfWLSg2L6ruiBeuPSbjnG6A==} dev: true - /@cspell/eslint-plugin/6.31.1: + /@cspell/eslint-plugin@6.31.1: resolution: {integrity: sha512-4WJXHZVHdVqIyaxCHRgd55bqkhjSDIu/kDJAvprxhEGdyladIOHZ/c3si8AMJYnYbZY56zY2LsF2W5uNyIsRgg==} engines: {node: '>=14'} dependencies: @@ -9550,46 +11068,46 @@ packages: - encoding dev: true - /@cspell/strong-weak-map/6.19.2: + /@cspell/strong-weak-map@6.19.2: resolution: {integrity: sha512-0P2f1JNGw+lEyqz0jxj1ob+772HgbQEIrXXuWF9vQXKdYx0kVzkSNVAUGZjqWiO+ieGFJVr0pqHA+wGcIx1VAQ==} engines: {node: '>=14.6'} dev: true - /@cspell/strong-weak-map/6.31.1: + /@cspell/strong-weak-map@6.31.1: resolution: {integrity: sha512-z8AuWvUuSnugFKJOA9Ke0aiFuehcqLFqia9bk8XaQNEWr44ahPVn3sEWnAncTxPbpWuUw5UajoJa0egRAE1CCg==} engines: {node: '>=14.6'} 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 - /@csstools/normalize.css/12.0.0: + /@csstools/normalize.css@12.0.0: resolution: {integrity: sha512-M0qqxAcwCsIVfpFQSlGN5XjXWu8l5JDZN+fPt1LeW5SZexQTgnaEvgXAY+CeygRw0EeppWHi12JxESWiWrB0Sg==} - /@csstools/postcss-cascade-layers/1.1.1_postcss@8.4.21: + /@csstools/postcss-cascade-layers@1.1.1(postcss@8.4.21): resolution: {integrity: sha512-+KdYrpKC5TgomQr2DlZF4lDEpHcoxnj5IGddYYfBWJAKfj1JtuHUIqMa+E1pJJ+z3kvDViWMqyqPlG4Ja7amQA==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - '@csstools/selector-specificity': 2.2.0_c3vcbepomgmxc74cgtawpgpkyi + '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.13) postcss: 8.4.21 postcss-selector-parser: 6.0.13 - /@csstools/postcss-color-function/1.1.1_postcss@8.4.21: + /@csstools/postcss-color-function@1.1.1(postcss@8.4.21): resolution: {integrity: sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - '@csstools/postcss-progressive-custom-properties': 1.3.0_postcss@8.4.21 + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.21) postcss: 8.4.21 postcss-value-parser: 4.2.0 - /@csstools/postcss-font-format-keywords/1.0.1_postcss@8.4.21: + /@csstools/postcss-font-format-keywords@1.0.1(postcss@8.4.21): resolution: {integrity: sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==} engines: {node: ^12 || ^14 || >=16} peerDependencies: @@ -9598,7 +11116,7 @@ packages: postcss: 8.4.21 postcss-value-parser: 4.2.0 - /@csstools/postcss-hwb-function/1.0.2_postcss@8.4.21: + /@csstools/postcss-hwb-function@1.0.2(postcss@8.4.21): resolution: {integrity: sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==} engines: {node: ^12 || ^14 || >=16} peerDependencies: @@ -9607,27 +11125,27 @@ packages: postcss: 8.4.21 postcss-value-parser: 4.2.0 - /@csstools/postcss-ic-unit/1.0.1_postcss@8.4.21: + /@csstools/postcss-ic-unit@1.0.1(postcss@8.4.21): resolution: {integrity: sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - '@csstools/postcss-progressive-custom-properties': 1.3.0_postcss@8.4.21 + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.21) postcss: 8.4.21 postcss-value-parser: 4.2.0 - /@csstools/postcss-is-pseudo-class/2.0.7_postcss@8.4.21: + /@csstools/postcss-is-pseudo-class@2.0.7(postcss@8.4.21): resolution: {integrity: sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - '@csstools/selector-specificity': 2.2.0_c3vcbepomgmxc74cgtawpgpkyi + '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.13) postcss: 8.4.21 postcss-selector-parser: 6.0.13 - /@csstools/postcss-nested-calc/1.0.0_postcss@8.4.21: + /@csstools/postcss-nested-calc@1.0.0(postcss@8.4.21): resolution: {integrity: sha512-JCsQsw1wjYwv1bJmgjKSoZNvf7R6+wuHDAbi5f/7MbFhl2d/+v+TvBTU4BJH3G1X1H87dHl0mh6TfYogbT/dJQ==} engines: {node: ^12 || ^14 || >=16} peerDependencies: @@ -9636,7 +11154,7 @@ packages: postcss: 8.4.21 postcss-value-parser: 4.2.0 - /@csstools/postcss-normalize-display-values/1.0.1_postcss@8.4.21: + /@csstools/postcss-normalize-display-values@1.0.1(postcss@8.4.21): resolution: {integrity: sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==} engines: {node: ^12 || ^14 || >=16} peerDependencies: @@ -9645,17 +11163,17 @@ packages: postcss: 8.4.21 postcss-value-parser: 4.2.0 - /@csstools/postcss-oklab-function/1.1.1_postcss@8.4.21: + /@csstools/postcss-oklab-function@1.1.1(postcss@8.4.21): resolution: {integrity: sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - '@csstools/postcss-progressive-custom-properties': 1.3.0_postcss@8.4.21 + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.21) postcss: 8.4.21 postcss-value-parser: 4.2.0 - /@csstools/postcss-progressive-custom-properties/1.3.0_postcss@8.4.21: + /@csstools/postcss-progressive-custom-properties@1.3.0(postcss@8.4.21): resolution: {integrity: sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==} engines: {node: ^12 || ^14 || >=16} peerDependencies: @@ -9664,7 +11182,7 @@ packages: postcss: 8.4.21 postcss-value-parser: 4.2.0 - /@csstools/postcss-stepped-value-functions/1.0.1_postcss@8.4.21: + /@csstools/postcss-stepped-value-functions@1.0.1(postcss@8.4.21): resolution: {integrity: sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==} engines: {node: ^12 || ^14 || >=16} peerDependencies: @@ -9673,7 +11191,7 @@ packages: postcss: 8.4.21 postcss-value-parser: 4.2.0 - /@csstools/postcss-text-decoration-shorthand/1.0.0_postcss@8.4.21: + /@csstools/postcss-text-decoration-shorthand@1.0.0(postcss@8.4.21): resolution: {integrity: sha512-c1XwKJ2eMIWrzQenN0XbcfzckOLLJiczqy+YvfGmzoVXd7pT9FfObiSEfzs84bpE/VqfpEuAZ9tCRbZkZxxbdw==} engines: {node: ^12 || ^14 || >=16} peerDependencies: @@ -9682,7 +11200,7 @@ packages: postcss: 8.4.21 postcss-value-parser: 4.2.0 - /@csstools/postcss-trigonometric-functions/1.0.2_postcss@8.4.21: + /@csstools/postcss-trigonometric-functions@1.0.2(postcss@8.4.21): resolution: {integrity: sha512-woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og==} engines: {node: ^14 || >=16} peerDependencies: @@ -9691,7 +11209,7 @@ packages: postcss: 8.4.21 postcss-value-parser: 4.2.0 - /@csstools/postcss-unset-value/1.0.2_postcss@8.4.21: + /@csstools/postcss-unset-value@1.0.2(postcss@8.4.21): resolution: {integrity: sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==} engines: {node: ^12 || ^14 || >=16} peerDependencies: @@ -9699,7 +11217,7 @@ packages: dependencies: postcss: 8.4.21 - /@csstools/selector-specificity/2.2.0_c3vcbepomgmxc74cgtawpgpkyi: + /@csstools/selector-specificity@2.2.0(postcss-selector-parser@6.0.13): resolution: {integrity: sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==} engines: {node: ^14 || ^16 || >=18} peerDependencies: @@ -9707,12 +11225,12 @@ packages: dependencies: postcss-selector-parser: 6.0.13 - /@ctrl/tinycolor/3.6.0: + /@ctrl/tinycolor@3.6.0: resolution: {integrity: sha512-/Z3l6pXthq0JvMYdUFyX9j0MaCltlIn6mfh9jLyQwg5aPKxkyNa0PTHtU1AlFXLNk55ZuAeJRcpvq+tmLfKmaQ==} engines: {node: '>=10'} dev: false - /@cypress/react/7.0.3_bfinbys3vemhhivbg2jouyjph4: + /@cypress/react@7.0.3(@types/react@17.0.53)(cypress@13.3.1)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-YseqnMugTbdPV9YCYEMXVqIf+P7x+pfjXOdjv4dnDFqNCZeHaZfOZVFZ4XfEHVxMv0aDszxlaLiIp3QDPhr12w==} peerDependencies: '@types/react': ^16.9.16 || ^17.0.0 @@ -9726,10 +11244,10 @@ packages: '@types/react': 17.0.53 cypress: 13.3.1 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /@cypress/request/3.0.1: + /@cypress/request@3.0.1: resolution: {integrity: sha512-TWivJlJi8ZDx2wGOw1dbLuHJKUYX7bWySw377nlnGOW3hP9/MUKIsEdXT/YngWxVdgNCHRBmFlBipE+5/2ZZlQ==} engines: {node: '>= 6'} dependencies: @@ -9752,18 +11270,18 @@ packages: tunnel-agent: 0.6.0 uuid: 8.3.2 - /@cypress/webpack-dev-server/3.6.1_webpack@5.78.0: + /@cypress/webpack-dev-server@3.6.1(webpack@5.78.0): resolution: {integrity: sha512-v9tn8SW5ot9jxlei0LqnU1hmR8Cy/A4mOKJOmrcU8KI0qWH6cadwmtiifRMgn8obQCJxiBSAeSWP3l2P4XoSAA==} dependencies: find-up: 6.3.0 fs-extra: 9.1.0 - html-webpack-plugin-4: /html-webpack-plugin/4.5.2_webpack@5.78.0 - html-webpack-plugin-5: /html-webpack-plugin/5.5.3_webpack@5.78.0 + html-webpack-plugin-4: /html-webpack-plugin@4.5.2(webpack@5.78.0) + html-webpack-plugin-5: /html-webpack-plugin@5.5.3(webpack@5.78.0) local-pkg: 0.4.1 semver: 7.5.4 - speed-measure-webpack-plugin: 1.4.2_webpack@5.78.0 + speed-measure-webpack-plugin: 1.4.2(webpack@5.78.0) tslib: 2.6.2 - webpack-dev-server: 4.11.1_webpack@5.78.0 + webpack-dev-server: 4.11.1(webpack@5.78.0) webpack-merge: 5.8.0 transitivePeerDependencies: - bufferutil @@ -9774,15 +11292,15 @@ packages: - webpack-cli dev: false - /@cypress/xvfb/1.2.4_supports-color@8.1.1: + /@cypress/xvfb@1.2.4(supports-color@8.1.1): resolution: {integrity: sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==} dependencies: - debug: 3.2.7_supports-color@8.1.1 + debug: 3.2.7(supports-color@8.1.1) lodash.once: 4.1.1 transitivePeerDependencies: - supports-color - /@dabh/diagnostics/2.0.3: + /@dabh/diagnostics@2.0.3: resolution: {integrity: sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==} dependencies: colorspace: 1.1.4 @@ -9790,12 +11308,11 @@ packages: kuler: 2.0.0 dev: false - /@discoveryjs/json-ext/0.5.7: + /@discoveryjs/json-ext@0.5.7: resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==} engines: {node: '>=10.0.0'} - dev: true - /@editorjs/editorjs/2.26.5: + /@editorjs/editorjs@2.26.5: resolution: {integrity: sha512-imwXZi9NmzxKjNosa1xQf286liJYsTe2J2DWCiV5TwKhvYZ1INg5Y+FietcM2v65QmeLqP7wgBUhoI7wiCB+yQ==} dependencies: '@codexteam/icons': 0.1.0 @@ -9805,13 +11322,13 @@ packages: nanoid: 3.3.6 dev: false - /@editorjs/paragraph/2.9.0: + /@editorjs/paragraph@2.9.0: resolution: {integrity: sha512-lI6x1eiqFx2X3KmMak6gBlimFqXhG35fQpXMxzrjIphNLr4uPsXhVbyMPimPoLUnS9rM6Q00vptXmP2QNDd0zg==} dependencies: '@codexteam/icons': 0.0.4 dev: false - /@emotion/babel-plugin/11.10.6: + /@emotion/babel-plugin@11.10.6: resolution: {integrity: sha512-p2dAqtVrkhSa7xz1u/m9eHYdLi+en8NowrmXeF/dKtJpU8lCWli8RUAati7NcSl0afsBott48pdnANuD0wh9QQ==} dependencies: '@babel/helper-module-imports': 7.21.4 @@ -9826,7 +11343,7 @@ packages: source-map: 0.5.7 stylis: 4.1.3 - /@emotion/cache/11.10.7: + /@emotion/cache@11.10.7: resolution: {integrity: sha512-VLl1/2D6LOjH57Y8Vem1RoZ9haWF4jesHDGiHtKozDQuBIkJm2gimVo0I02sWCuzZtVACeixTVB4jeE8qvCBoQ==} dependencies: '@emotion/memoize': 0.8.0 @@ -9836,7 +11353,7 @@ packages: stylis: 4.1.3 dev: false - /@emotion/cache/11.7.1: + /@emotion/cache@11.7.1: resolution: {integrity: sha512-r65Zy4Iljb8oyjtLeCuBH8Qjiy107dOYC6SJq7g7GV5UCQWMObY4SJDPGFjiiVpPrOJ2hmJOoBiYTC7hwx9E2A==} dependencies: '@emotion/memoize': 0.7.5 @@ -9846,7 +11363,7 @@ packages: stylis: 4.0.13 dev: false - /@emotion/css/11.10.6: + /@emotion/css@11.10.6: resolution: {integrity: sha512-88Sr+3heKAKpj9PCqq5A1hAmAkoSIvwEq1O2TwDij7fUtsJpdkV4jMTISSTouFeRvsGvXIpuSuDQ4C1YdfNGXw==} dependencies: '@emotion/babel-plugin': 11.10.6 @@ -9856,27 +11373,27 @@ packages: '@emotion/utils': 1.2.0 dev: false - /@emotion/hash/0.8.0: + /@emotion/hash@0.8.0: resolution: {integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==} dev: false - /@emotion/hash/0.9.0: + /@emotion/hash@0.9.0: resolution: {integrity: sha512-14FtKiHhy2QoPIzdTcvh//8OyBlknNs2nXRwIhG904opCby3l+9Xaf/wuPvICBF0rc1ZCNBd3nKe9cd2mecVkQ==} - /@emotion/is-prop-valid/1.2.0: + /@emotion/is-prop-valid@1.2.0: resolution: {integrity: sha512-3aDpDprjM0AwaxGE09bOPkNxHpBd+kA6jty3RnaEXdweX1DF1U3VQpPYb0g1IStAuK7SVQ1cy+bNBBKp4W3Fjg==} dependencies: '@emotion/memoize': 0.8.0 dev: false - /@emotion/memoize/0.7.5: + /@emotion/memoize@0.7.5: resolution: {integrity: sha512-igX9a37DR2ZPGYtV6suZ6whr8pTFtyHL3K/oLUotxpSVO2ASaprmAe2Dkq7tBo7CRY7MMDrAa9nuQP9/YG8FxQ==} dev: false - /@emotion/memoize/0.8.0: + /@emotion/memoize@0.8.0: resolution: {integrity: sha512-G/YwXTkv7Den9mXDO7AhLWkE3q+I92B+VqAE+dYG4NGPaHZGvt3G8Q0p9vmE+sq7rTGphUbAvmQ9YpbfMQGGlA==} - /@emotion/react/11.10.6_h7fc2el62uaa77gho3xhys6ola: + /@emotion/react@11.10.6(@types/react@17.0.53)(react@17.0.2): resolution: {integrity: sha512-6HT8jBmcSkfzO7mc+N1L9uwvOnlcGoix8Zn7srt+9ga0MjREo6lRpuVX0kzo6Jp6oTqDhREOFsygN6Ew4fEQbw==} peerDependencies: '@types/react': '*' @@ -9889,7 +11406,7 @@ packages: '@emotion/babel-plugin': 11.10.6 '@emotion/cache': 11.10.7 '@emotion/serialize': 1.1.1 - '@emotion/use-insertion-effect-with-fallbacks': 1.0.0_react@17.0.2 + '@emotion/use-insertion-effect-with-fallbacks': 1.0.0(react@17.0.2) '@emotion/utils': 1.2.0 '@emotion/weak-memoize': 0.3.0 '@types/react': 17.0.53 @@ -9897,7 +11414,7 @@ packages: react: 17.0.2 dev: false - /@emotion/react/11.10.6_s55kszw6pq5iqmorlydcdh42pa: + /@emotion/react@11.10.6(@types/react@17.0.62)(react@17.0.2): resolution: {integrity: sha512-6HT8jBmcSkfzO7mc+N1L9uwvOnlcGoix8Zn7srt+9ga0MjREo6lRpuVX0kzo6Jp6oTqDhREOFsygN6Ew4fEQbw==} peerDependencies: '@types/react': '*' @@ -9910,7 +11427,7 @@ packages: '@emotion/babel-plugin': 11.10.6 '@emotion/cache': 11.10.7 '@emotion/serialize': 1.1.1 - '@emotion/use-insertion-effect-with-fallbacks': 1.0.0_react@17.0.2 + '@emotion/use-insertion-effect-with-fallbacks': 1.0.0(react@17.0.2) '@emotion/utils': 1.2.0 '@emotion/weak-memoize': 0.3.0 '@types/react': 17.0.62 @@ -9918,7 +11435,7 @@ packages: react: 17.0.2 dev: false - /@emotion/react/11.7.1_e4lj5fgxkgbvbddcv7symwbfbi: + /@emotion/react@11.7.1(@babel/core@7.22.11)(@types/react@17.0.62)(react@17.0.2): resolution: {integrity: sha512-DV2Xe3yhkF1yT4uAUoJcYL1AmrnO5SVsdfvu+fBuS7IbByDeTVx9+wFmvx9Idzv7/78+9Mgx2Hcmr7Fex3tIyw==} peerDependencies: '@babel/core': ^7.0.0 @@ -9942,7 +11459,7 @@ packages: react: 17.0.2 dev: false - /@emotion/serialize/1.0.2: + /@emotion/serialize@1.0.2: resolution: {integrity: sha512-95MgNJ9+/ajxU7QIAruiOAdYNjxZX7G2mhgrtDWswA21VviYIRP1R5QilZ/bDY42xiKsaktP4egJb3QdYQZi1A==} dependencies: '@emotion/hash': 0.8.0 @@ -9952,7 +11469,7 @@ packages: csstype: 3.1.2 dev: false - /@emotion/serialize/1.1.1: + /@emotion/serialize@1.1.1: resolution: {integrity: sha512-Zl/0LFggN7+L1liljxXdsVSVlg6E/Z/olVWpfxUTxOAmi8NU7YoeWeLfi1RmnB2TATHoaWwIBRoL+FvAJiTUQA==} dependencies: '@emotion/hash': 0.9.0 @@ -9961,11 +11478,11 @@ packages: '@emotion/utils': 1.2.0 csstype: 3.1.2 - /@emotion/sheet/1.2.1: + /@emotion/sheet@1.2.1: resolution: {integrity: sha512-zxRBwl93sHMsOj4zs+OslQKg/uhF38MB+OMKoCrVuS0nyTkqnau+BM3WGEoOptg9Oz45T/aIGs1qbVAsEFo3nA==} dev: false - /@emotion/styled/11.10.6_7hisdke2c3hq4r3q5z4dcdhmzi: + /@emotion/styled@11.10.6(@emotion/react@11.10.6)(@types/react@17.0.53)(react@17.0.2): resolution: {integrity: sha512-OXtBzOmDSJo5Q0AFemHCfl+bUueT8BIcPSxu0EGTpGk6DmI5dnhSzQANm1e1ze0YZL7TDyAyy6s/b/zmGOS3Og==} peerDependencies: '@emotion/react': ^11.0.0-rc.0 @@ -9978,15 +11495,15 @@ packages: '@babel/runtime': 7.21.0 '@emotion/babel-plugin': 11.10.6 '@emotion/is-prop-valid': 1.2.0 - '@emotion/react': 11.10.6_h7fc2el62uaa77gho3xhys6ola + '@emotion/react': 11.10.6(@types/react@17.0.53)(react@17.0.2) '@emotion/serialize': 1.1.1 - '@emotion/use-insertion-effect-with-fallbacks': 1.0.0_react@17.0.2 + '@emotion/use-insertion-effect-with-fallbacks': 1.0.0(react@17.0.2) '@emotion/utils': 1.2.0 '@types/react': 17.0.53 react: 17.0.2 dev: false - /@emotion/styled/11.10.6_a5tg3mw6arxvrpxmynh3dc7e3q: + /@emotion/styled@11.10.6(@emotion/react@11.10.6)(@types/react@17.0.62)(react@17.0.2): resolution: {integrity: sha512-OXtBzOmDSJo5Q0AFemHCfl+bUueT8BIcPSxu0EGTpGk6DmI5dnhSzQANm1e1ze0YZL7TDyAyy6s/b/zmGOS3Og==} peerDependencies: '@emotion/react': ^11.0.0-rc.0 @@ -9999,44 +11516,44 @@ packages: '@babel/runtime': 7.21.0 '@emotion/babel-plugin': 11.10.6 '@emotion/is-prop-valid': 1.2.0 - '@emotion/react': 11.10.6_s55kszw6pq5iqmorlydcdh42pa + '@emotion/react': 11.10.6(@types/react@17.0.62)(react@17.0.2) '@emotion/serialize': 1.1.1 - '@emotion/use-insertion-effect-with-fallbacks': 1.0.0_react@17.0.2 + '@emotion/use-insertion-effect-with-fallbacks': 1.0.0(react@17.0.2) '@emotion/utils': 1.2.0 '@types/react': 17.0.62 react: 17.0.2 dev: false - /@emotion/unitless/0.7.5: + /@emotion/unitless@0.7.5: resolution: {integrity: sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==} dev: false - /@emotion/unitless/0.8.0: + /@emotion/unitless@0.8.0: resolution: {integrity: sha512-VINS5vEYAscRl2ZUDiT3uMPlrFQupiKgHz5AA4bCH1miKBg4qtwkim1qPmJj/4WG6TreYMY111rEFsjupcOKHw==} - /@emotion/use-insertion-effect-with-fallbacks/1.0.0_react@17.0.2: + /@emotion/use-insertion-effect-with-fallbacks@1.0.0(react@17.0.2): resolution: {integrity: sha512-1eEgUGmkaljiBnRMTdksDV1W4kUnmwgp7X9G8B++9GYwl1lUdqSndSriIrTJ0N7LQaoauY9JJ2yhiOYK5+NI4A==} peerDependencies: react: '>=16.8.0' dependencies: react: 17.0.2 - /@emotion/utils/1.0.0: + /@emotion/utils@1.0.0: resolution: {integrity: sha512-mQC2b3XLDs6QCW+pDQDiyO/EdGZYOygE8s5N5rrzjSI4M3IejPE/JPndCBwRT9z982aqQNi6beWs1UeayrQxxA==} dev: false - /@emotion/utils/1.2.0: + /@emotion/utils@1.2.0: resolution: {integrity: sha512-sn3WH53Kzpw8oQ5mgMmIzzyAaH2ZqFEbozVVBSYp538E06OSE6ytOp7pRAjNQR+Q/orwqdQYJSe2m3hCOeznkw==} - /@emotion/weak-memoize/0.2.5: + /@emotion/weak-memoize@0.2.5: resolution: {integrity: sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==} dev: false - /@emotion/weak-memoize/0.3.0: + /@emotion/weak-memoize@0.3.0: resolution: {integrity: sha512-AHPmaAx+RYfZz0eYu6Gviiagpmiyw98ySSlQvCUhVGDRtDFe4DBS0x1bSjdF3gqUDYOczB+yYvBTtEylYSdRhg==} dev: false - /@endemolshinegroup/cosmiconfig-typescript-loader/3.0.2_7xcwfsfqkm3z47jew3ci4ezh7m: + /@endemolshinegroup/cosmiconfig-typescript-loader@3.0.2(cosmiconfig@7.0.0)(typescript@4.9.5): resolution: {integrity: sha512-QRVtqJuS1mcT56oHpVegkKBlgtWjXw/gHNWO3eL9oyB5Sc7HBoc2OLG/nYpVfT/Jejvo3NUrD0Udk7XgoyDKkA==} engines: {node: '>=10.0.0'} peerDependencies: @@ -10045,65 +11562,65 @@ packages: cosmiconfig: 7.0.0 lodash.get: 4.4.2 make-error: 1.3.6 - ts-node: 9.1.1_typescript@4.9.5 + ts-node: 9.1.1(typescript@4.9.5) tslib: 2.6.2 transitivePeerDependencies: - typescript dev: true - /@esbuild/android-arm/0.17.16: - resolution: {integrity: sha512-baLqRpLe4JnKrUXLJChoTN0iXZH7El/mu58GE3WIA6/H834k0XWvLRmGLG8y8arTRS9hJJibPnF0tiGhmWeZgw==} + /@esbuild/android-arm64@0.17.16: + resolution: {integrity: sha512-QX48qmsEZW+gcHgTmAj+x21mwTz8MlYQBnzF6861cNdQGvj2jzzFjqH0EBabrIa/WVZ2CHolwMoqxVryqKt8+Q==} engines: {node: '>=12'} - cpu: [arm] + cpu: [arm64] os: [android] requiresBuild: true dev: true optional: true - /@esbuild/android-arm/0.17.8: - resolution: {integrity: sha512-0/rb91GYKhrtbeglJXOhAv9RuYimgI8h623TplY2X+vA4EXnk3Zj1fXZreJ0J3OJJu1bwmb0W7g+2cT/d8/l/w==} + /@esbuild/android-arm64@0.17.8: + resolution: {integrity: sha512-oa/N5j6v1svZQs7EIRPqR8f+Bf8g6HBDjD/xHC02radE/NjKHK7oQmtmLxPs1iVwYyvE+Kolo6lbpfEQ9xnhxQ==} engines: {node: '>=12'} - cpu: [arm] + cpu: [arm64] os: [android] requiresBuild: true dev: true optional: true - /@esbuild/android-arm/0.18.20: - resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==} + /@esbuild/android-arm64@0.18.20: + resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==} engines: {node: '>=12'} - cpu: [arm] + cpu: [arm64] os: [android] requiresBuild: true optional: true - /@esbuild/android-arm64/0.17.16: - resolution: {integrity: sha512-QX48qmsEZW+gcHgTmAj+x21mwTz8MlYQBnzF6861cNdQGvj2jzzFjqH0EBabrIa/WVZ2CHolwMoqxVryqKt8+Q==} + /@esbuild/android-arm@0.17.16: + resolution: {integrity: sha512-baLqRpLe4JnKrUXLJChoTN0iXZH7El/mu58GE3WIA6/H834k0XWvLRmGLG8y8arTRS9hJJibPnF0tiGhmWeZgw==} engines: {node: '>=12'} - cpu: [arm64] + cpu: [arm] os: [android] requiresBuild: true dev: true optional: true - /@esbuild/android-arm64/0.17.8: - resolution: {integrity: sha512-oa/N5j6v1svZQs7EIRPqR8f+Bf8g6HBDjD/xHC02radE/NjKHK7oQmtmLxPs1iVwYyvE+Kolo6lbpfEQ9xnhxQ==} + /@esbuild/android-arm@0.17.8: + resolution: {integrity: sha512-0/rb91GYKhrtbeglJXOhAv9RuYimgI8h623TplY2X+vA4EXnk3Zj1fXZreJ0J3OJJu1bwmb0W7g+2cT/d8/l/w==} engines: {node: '>=12'} - cpu: [arm64] + cpu: [arm] os: [android] requiresBuild: true dev: true optional: true - /@esbuild/android-arm64/0.18.20: - resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==} + /@esbuild/android-arm@0.18.20: + resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==} engines: {node: '>=12'} - cpu: [arm64] + cpu: [arm] os: [android] requiresBuild: true optional: true - /@esbuild/android-x64/0.17.16: + /@esbuild/android-x64@0.17.16: resolution: {integrity: sha512-G4wfHhrrz99XJgHnzFvB4UwwPxAWZaZBOFXh+JH1Duf1I4vIVfuYY9uVLpx4eiV2D/Jix8LJY+TAdZ3i40tDow==} engines: {node: '>=12'} cpu: [x64] @@ -10112,7 +11629,7 @@ packages: dev: true optional: true - /@esbuild/android-x64/0.17.8: + /@esbuild/android-x64@0.17.8: resolution: {integrity: sha512-bTliMLqD7pTOoPg4zZkXqCDuzIUguEWLpeqkNfC41ODBHwoUgZ2w5JBeYimv4oP6TDVocoYmEhZrCLQTrH89bg==} engines: {node: '>=12'} cpu: [x64] @@ -10121,7 +11638,7 @@ packages: dev: true optional: true - /@esbuild/android-x64/0.18.20: + /@esbuild/android-x64@0.18.20: resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==} engines: {node: '>=12'} cpu: [x64] @@ -10129,7 +11646,7 @@ packages: requiresBuild: true optional: true - /@esbuild/darwin-arm64/0.17.16: + /@esbuild/darwin-arm64@0.17.16: resolution: {integrity: sha512-/Ofw8UXZxuzTLsNFmz1+lmarQI6ztMZ9XktvXedTbt3SNWDn0+ODTwxExLYQ/Hod91EZB4vZPQJLoqLF0jvEzA==} engines: {node: '>=12'} cpu: [arm64] @@ -10138,7 +11655,7 @@ packages: dev: true optional: true - /@esbuild/darwin-arm64/0.17.8: + /@esbuild/darwin-arm64@0.17.8: resolution: {integrity: sha512-ghAbV3ia2zybEefXRRm7+lx8J/rnupZT0gp9CaGy/3iolEXkJ6LYRq4IpQVI9zR97ID80KJVoUlo3LSeA/sMAg==} engines: {node: '>=12'} cpu: [arm64] @@ -10147,7 +11664,7 @@ packages: dev: true optional: true - /@esbuild/darwin-arm64/0.18.20: + /@esbuild/darwin-arm64@0.18.20: resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==} engines: {node: '>=12'} cpu: [arm64] @@ -10155,7 +11672,7 @@ packages: requiresBuild: true optional: true - /@esbuild/darwin-x64/0.17.16: + /@esbuild/darwin-x64@0.17.16: resolution: {integrity: sha512-SzBQtCV3Pdc9kyizh36Ol+dNVhkDyIrGb/JXZqFq8WL37LIyrXU0gUpADcNV311sCOhvY+f2ivMhb5Tuv8nMOQ==} engines: {node: '>=12'} cpu: [x64] @@ -10164,7 +11681,7 @@ packages: dev: true optional: true - /@esbuild/darwin-x64/0.17.8: + /@esbuild/darwin-x64@0.17.8: resolution: {integrity: sha512-n5WOpyvZ9TIdv2V1K3/iIkkJeKmUpKaCTdun9buhGRWfH//osmUjlv4Z5mmWdPWind/VGcVxTHtLfLCOohsOXw==} engines: {node: '>=12'} cpu: [x64] @@ -10173,7 +11690,7 @@ packages: dev: true optional: true - /@esbuild/darwin-x64/0.18.20: + /@esbuild/darwin-x64@0.18.20: resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==} engines: {node: '>=12'} cpu: [x64] @@ -10181,7 +11698,7 @@ packages: requiresBuild: true optional: true - /@esbuild/freebsd-arm64/0.17.16: + /@esbuild/freebsd-arm64@0.17.16: resolution: {integrity: sha512-ZqftdfS1UlLiH1DnS2u3It7l4Bc3AskKeu+paJSfk7RNOMrOxmeFDhLTMQqMxycP1C3oj8vgkAT6xfAuq7ZPRA==} engines: {node: '>=12'} cpu: [arm64] @@ -10190,7 +11707,7 @@ packages: dev: true optional: true - /@esbuild/freebsd-arm64/0.17.8: + /@esbuild/freebsd-arm64@0.17.8: resolution: {integrity: sha512-a/SATTaOhPIPFWvHZDoZYgxaZRVHn0/LX1fHLGfZ6C13JqFUZ3K6SMD6/HCtwOQ8HnsNaEeokdiDSFLuizqv5A==} engines: {node: '>=12'} cpu: [arm64] @@ -10199,7 +11716,7 @@ packages: dev: true optional: true - /@esbuild/freebsd-arm64/0.18.20: + /@esbuild/freebsd-arm64@0.18.20: resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==} engines: {node: '>=12'} cpu: [arm64] @@ -10207,7 +11724,7 @@ packages: requiresBuild: true optional: true - /@esbuild/freebsd-x64/0.17.16: + /@esbuild/freebsd-x64@0.17.16: resolution: {integrity: sha512-rHV6zNWW1tjgsu0dKQTX9L0ByiJHHLvQKrWtnz8r0YYJI27FU3Xu48gpK2IBj1uCSYhJ+pEk6Y0Um7U3rIvV8g==} engines: {node: '>=12'} cpu: [x64] @@ -10216,7 +11733,7 @@ packages: dev: true optional: true - /@esbuild/freebsd-x64/0.17.8: + /@esbuild/freebsd-x64@0.17.8: resolution: {integrity: sha512-xpFJb08dfXr5+rZc4E+ooZmayBW6R3q59daCpKZ/cDU96/kvDM+vkYzNeTJCGd8rtO6fHWMq5Rcv/1cY6p6/0Q==} engines: {node: '>=12'} cpu: [x64] @@ -10225,7 +11742,7 @@ packages: dev: true optional: true - /@esbuild/freebsd-x64/0.18.20: + /@esbuild/freebsd-x64@0.18.20: resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==} engines: {node: '>=12'} cpu: [x64] @@ -10233,59 +11750,59 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-arm/0.17.16: - resolution: {integrity: sha512-n4O8oVxbn7nl4+m+ISb0a68/lcJClIbaGAoXwqeubj/D1/oMMuaAXmJVfFlRjJLu/ZvHkxoiFJnmbfp4n8cdSw==} + /@esbuild/linux-arm64@0.17.16: + resolution: {integrity: sha512-8yoZhGkU6aHu38WpaM4HrRLTFc7/VVD9Q2SvPcmIQIipQt2I/GMTZNdEHXoypbbGao5kggLcxg0iBKjo0SQYKA==} engines: {node: '>=12'} - cpu: [arm] + cpu: [arm64] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-arm/0.17.8: - resolution: {integrity: sha512-6Ij8gfuGszcEwZpi5jQIJCVIACLS8Tz2chnEBfYjlmMzVsfqBP1iGmHQPp7JSnZg5xxK9tjCc+pJ2WtAmPRFVA==} + /@esbuild/linux-arm64@0.17.8: + resolution: {integrity: sha512-v3iwDQuDljLTxpsqQDl3fl/yihjPAyOguxuloON9kFHYwopeJEf1BkDXODzYyXEI19gisEsQlG1bM65YqKSIww==} engines: {node: '>=12'} - cpu: [arm] + cpu: [arm64] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-arm/0.18.20: - resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==} + /@esbuild/linux-arm64@0.18.20: + resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==} engines: {node: '>=12'} - cpu: [arm] + cpu: [arm64] os: [linux] requiresBuild: true optional: true - /@esbuild/linux-arm64/0.17.16: - resolution: {integrity: sha512-8yoZhGkU6aHu38WpaM4HrRLTFc7/VVD9Q2SvPcmIQIipQt2I/GMTZNdEHXoypbbGao5kggLcxg0iBKjo0SQYKA==} + /@esbuild/linux-arm@0.17.16: + resolution: {integrity: sha512-n4O8oVxbn7nl4+m+ISb0a68/lcJClIbaGAoXwqeubj/D1/oMMuaAXmJVfFlRjJLu/ZvHkxoiFJnmbfp4n8cdSw==} engines: {node: '>=12'} - cpu: [arm64] + cpu: [arm] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-arm64/0.17.8: - resolution: {integrity: sha512-v3iwDQuDljLTxpsqQDl3fl/yihjPAyOguxuloON9kFHYwopeJEf1BkDXODzYyXEI19gisEsQlG1bM65YqKSIww==} + /@esbuild/linux-arm@0.17.8: + resolution: {integrity: sha512-6Ij8gfuGszcEwZpi5jQIJCVIACLS8Tz2chnEBfYjlmMzVsfqBP1iGmHQPp7JSnZg5xxK9tjCc+pJ2WtAmPRFVA==} engines: {node: '>=12'} - cpu: [arm64] + cpu: [arm] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-arm64/0.18.20: - resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==} + /@esbuild/linux-arm@0.18.20: + resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==} engines: {node: '>=12'} - cpu: [arm64] + cpu: [arm] os: [linux] requiresBuild: true optional: true - /@esbuild/linux-ia32/0.17.16: + /@esbuild/linux-ia32@0.17.16: resolution: {integrity: sha512-9ZBjlkdaVYxPNO8a7OmzDbOH9FMQ1a58j7Xb21UfRU29KcEEU3VTHk+Cvrft/BNv0gpWJMiiZ/f4w0TqSP0gLA==} engines: {node: '>=12'} cpu: [ia32] @@ -10294,7 +11811,7 @@ packages: dev: true optional: true - /@esbuild/linux-ia32/0.17.8: + /@esbuild/linux-ia32@0.17.8: resolution: {integrity: sha512-8svILYKhE5XetuFk/B6raFYIyIqydQi+GngEXJgdPdI7OMKUbSd7uzR02wSY4kb53xBrClLkhH4Xs8P61Q2BaA==} engines: {node: '>=12'} cpu: [ia32] @@ -10303,7 +11820,7 @@ packages: dev: true optional: true - /@esbuild/linux-ia32/0.18.20: + /@esbuild/linux-ia32@0.18.20: resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==} engines: {node: '>=12'} cpu: [ia32] @@ -10311,7 +11828,7 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-loong64/0.17.16: + /@esbuild/linux-loong64@0.17.16: resolution: {integrity: sha512-TIZTRojVBBzdgChY3UOG7BlPhqJz08AL7jdgeeu+kiObWMFzGnQD7BgBBkWRwOtKR1i2TNlO7YK6m4zxVjjPRQ==} engines: {node: '>=12'} cpu: [loong64] @@ -10320,7 +11837,7 @@ packages: dev: true optional: true - /@esbuild/linux-loong64/0.17.8: + /@esbuild/linux-loong64@0.17.8: resolution: {integrity: sha512-B6FyMeRJeV0NpyEOYlm5qtQfxbdlgmiGdD+QsipzKfFky0K5HW5Td6dyK3L3ypu1eY4kOmo7wW0o94SBqlqBSA==} engines: {node: '>=12'} cpu: [loong64] @@ -10329,7 +11846,7 @@ packages: dev: true optional: true - /@esbuild/linux-loong64/0.18.20: + /@esbuild/linux-loong64@0.18.20: resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==} engines: {node: '>=12'} cpu: [loong64] @@ -10337,7 +11854,7 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-mips64el/0.17.16: + /@esbuild/linux-mips64el@0.17.16: resolution: {integrity: sha512-UPeRuFKCCJYpBbIdczKyHLAIU31GEm0dZl1eMrdYeXDH+SJZh/i+2cAmD3A1Wip9pIc5Sc6Kc5cFUrPXtR0XHA==} engines: {node: '>=12'} cpu: [mips64el] @@ -10346,7 +11863,7 @@ packages: dev: true optional: true - /@esbuild/linux-mips64el/0.17.8: + /@esbuild/linux-mips64el@0.17.8: resolution: {integrity: sha512-CCb67RKahNobjm/eeEqeD/oJfJlrWyw29fgiyB6vcgyq97YAf3gCOuP6qMShYSPXgnlZe/i4a8WFHBw6N8bYAA==} engines: {node: '>=12'} cpu: [mips64el] @@ -10355,7 +11872,7 @@ packages: dev: true optional: true - /@esbuild/linux-mips64el/0.18.20: + /@esbuild/linux-mips64el@0.18.20: resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==} engines: {node: '>=12'} cpu: [mips64el] @@ -10363,7 +11880,7 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-ppc64/0.17.16: + /@esbuild/linux-ppc64@0.17.16: resolution: {integrity: sha512-io6yShgIEgVUhExJejJ21xvO5QtrbiSeI7vYUnr7l+v/O9t6IowyhdiYnyivX2X5ysOVHAuyHW+Wyi7DNhdw6Q==} engines: {node: '>=12'} cpu: [ppc64] @@ -10372,7 +11889,7 @@ packages: dev: true optional: true - /@esbuild/linux-ppc64/0.17.8: + /@esbuild/linux-ppc64@0.17.8: resolution: {integrity: sha512-bytLJOi55y55+mGSdgwZ5qBm0K9WOCh0rx+vavVPx+gqLLhxtSFU0XbeYy/dsAAD6xECGEv4IQeFILaSS2auXw==} engines: {node: '>=12'} cpu: [ppc64] @@ -10381,7 +11898,7 @@ packages: dev: true optional: true - /@esbuild/linux-ppc64/0.18.20: + /@esbuild/linux-ppc64@0.18.20: resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==} engines: {node: '>=12'} cpu: [ppc64] @@ -10389,7 +11906,7 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-riscv64/0.17.16: + /@esbuild/linux-riscv64@0.17.16: resolution: {integrity: sha512-WhlGeAHNbSdG/I2gqX2RK2gfgSNwyJuCiFHMc8s3GNEMMHUI109+VMBfhVqRb0ZGzEeRiibi8dItR3ws3Lk+cA==} engines: {node: '>=12'} cpu: [riscv64] @@ -10398,7 +11915,7 @@ packages: dev: true optional: true - /@esbuild/linux-riscv64/0.17.8: + /@esbuild/linux-riscv64@0.17.8: resolution: {integrity: sha512-2YpRyQJmKVBEHSBLa8kBAtbhucaclb6ex4wchfY0Tj3Kg39kpjeJ9vhRU7x4mUpq8ISLXRXH1L0dBYjAeqzZAw==} engines: {node: '>=12'} cpu: [riscv64] @@ -10407,7 +11924,7 @@ packages: dev: true optional: true - /@esbuild/linux-riscv64/0.18.20: + /@esbuild/linux-riscv64@0.18.20: resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==} engines: {node: '>=12'} cpu: [riscv64] @@ -10415,7 +11932,7 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-s390x/0.17.16: + /@esbuild/linux-s390x@0.17.16: resolution: {integrity: sha512-gHRReYsJtViir63bXKoFaQ4pgTyah4ruiMRQ6im9YZuv+gp3UFJkNTY4sFA73YDynmXZA6hi45en4BGhNOJUsw==} engines: {node: '>=12'} cpu: [s390x] @@ -10424,7 +11941,7 @@ packages: dev: true optional: true - /@esbuild/linux-s390x/0.17.8: + /@esbuild/linux-s390x@0.17.8: resolution: {integrity: sha512-QgbNY/V3IFXvNf11SS6exkpVcX0LJcob+0RWCgV9OiDAmVElnxciHIisoSix9uzYzScPmS6dJFbZULdSAEkQVw==} engines: {node: '>=12'} cpu: [s390x] @@ -10433,7 +11950,7 @@ packages: dev: true optional: true - /@esbuild/linux-s390x/0.18.20: + /@esbuild/linux-s390x@0.18.20: resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==} engines: {node: '>=12'} cpu: [s390x] @@ -10441,7 +11958,7 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-x64/0.17.16: + /@esbuild/linux-x64@0.17.16: resolution: {integrity: sha512-mfiiBkxEbUHvi+v0P+TS7UnA9TeGXR48aK4XHkTj0ZwOijxexgMF01UDFaBX7Q6CQsB0d+MFNv9IiXbIHTNd4g==} engines: {node: '>=12'} cpu: [x64] @@ -10450,7 +11967,7 @@ packages: dev: true optional: true - /@esbuild/linux-x64/0.17.8: + /@esbuild/linux-x64@0.17.8: resolution: {integrity: sha512-mM/9S0SbAFDBc4OPoyP6SEOo5324LpUxdpeIUUSrSTOfhHU9hEfqRngmKgqILqwx/0DVJBzeNW7HmLEWp9vcOA==} engines: {node: '>=12'} cpu: [x64] @@ -10459,7 +11976,7 @@ packages: dev: true optional: true - /@esbuild/linux-x64/0.18.20: + /@esbuild/linux-x64@0.18.20: resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==} engines: {node: '>=12'} cpu: [x64] @@ -10467,7 +11984,7 @@ packages: requiresBuild: true optional: true - /@esbuild/netbsd-x64/0.17.16: + /@esbuild/netbsd-x64@0.17.16: resolution: {integrity: sha512-n8zK1YRDGLRZfVcswcDMDM0j2xKYLNXqei217a4GyBxHIuPMGrrVuJ+Ijfpr0Kufcm7C1k/qaIrGy6eG7wvgmA==} engines: {node: '>=12'} cpu: [x64] @@ -10476,7 +11993,7 @@ packages: dev: true optional: true - /@esbuild/netbsd-x64/0.17.8: + /@esbuild/netbsd-x64@0.17.8: resolution: {integrity: sha512-eKUYcWaWTaYr9zbj8GertdVtlt1DTS1gNBWov+iQfWuWyuu59YN6gSEJvFzC5ESJ4kMcKR0uqWThKUn5o8We6Q==} engines: {node: '>=12'} cpu: [x64] @@ -10485,7 +12002,7 @@ packages: dev: true optional: true - /@esbuild/netbsd-x64/0.18.20: + /@esbuild/netbsd-x64@0.18.20: resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==} engines: {node: '>=12'} cpu: [x64] @@ -10493,7 +12010,7 @@ packages: requiresBuild: true optional: true - /@esbuild/openbsd-x64/0.17.16: + /@esbuild/openbsd-x64@0.17.16: resolution: {integrity: sha512-lEEfkfsUbo0xC47eSTBqsItXDSzwzwhKUSsVaVjVji07t8+6KA5INp2rN890dHZeueXJAI8q0tEIfbwVRYf6Ew==} engines: {node: '>=12'} cpu: [x64] @@ -10502,7 +12019,7 @@ packages: dev: true optional: true - /@esbuild/openbsd-x64/0.17.8: + /@esbuild/openbsd-x64@0.17.8: resolution: {integrity: sha512-Vc9J4dXOboDyMXKD0eCeW0SIeEzr8K9oTHJU+Ci1mZc5njPfhKAqkRt3B/fUNU7dP+mRyralPu8QUkiaQn7iIg==} engines: {node: '>=12'} cpu: [x64] @@ -10511,7 +12028,7 @@ packages: dev: true optional: true - /@esbuild/openbsd-x64/0.18.20: + /@esbuild/openbsd-x64@0.18.20: resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==} engines: {node: '>=12'} cpu: [x64] @@ -10519,7 +12036,7 @@ packages: requiresBuild: true optional: true - /@esbuild/sunos-x64/0.17.16: + /@esbuild/sunos-x64@0.17.16: resolution: {integrity: sha512-jlRjsuvG1fgGwnE8Afs7xYDnGz0dBgTNZfgCK6TlvPH3Z13/P5pi6I57vyLE8qZYLrGVtwcm9UbUx1/mZ8Ukag==} engines: {node: '>=12'} cpu: [x64] @@ -10528,7 +12045,7 @@ packages: dev: true optional: true - /@esbuild/sunos-x64/0.17.8: + /@esbuild/sunos-x64@0.17.8: resolution: {integrity: sha512-0xvOTNuPXI7ft1LYUgiaXtpCEjp90RuBBYovdd2lqAFxje4sEucurg30M1WIm03+3jxByd3mfo+VUmPtRSVuOw==} engines: {node: '>=12'} cpu: [x64] @@ -10537,7 +12054,7 @@ packages: dev: true optional: true - /@esbuild/sunos-x64/0.18.20: + /@esbuild/sunos-x64@0.18.20: resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==} engines: {node: '>=12'} cpu: [x64] @@ -10545,7 +12062,7 @@ packages: requiresBuild: true optional: true - /@esbuild/win32-arm64/0.17.16: + /@esbuild/win32-arm64@0.17.16: resolution: {integrity: sha512-TzoU2qwVe2boOHl/3KNBUv2PNUc38U0TNnzqOAcgPiD/EZxT2s736xfC2dYQbszAwo4MKzzwBV0iHjhfjxMimg==} engines: {node: '>=12'} cpu: [arm64] @@ -10554,7 +12071,7 @@ packages: dev: true optional: true - /@esbuild/win32-arm64/0.17.8: + /@esbuild/win32-arm64@0.17.8: resolution: {integrity: sha512-G0JQwUI5WdEFEnYNKzklxtBheCPkuDdu1YrtRrjuQv30WsYbkkoixKxLLv8qhJmNI+ATEWquZe/N0d0rpr55Mg==} engines: {node: '>=12'} cpu: [arm64] @@ -10563,7 +12080,7 @@ packages: dev: true optional: true - /@esbuild/win32-arm64/0.18.20: + /@esbuild/win32-arm64@0.18.20: resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==} engines: {node: '>=12'} cpu: [arm64] @@ -10571,7 +12088,7 @@ packages: requiresBuild: true optional: true - /@esbuild/win32-ia32/0.17.16: + /@esbuild/win32-ia32@0.17.16: resolution: {integrity: sha512-B8b7W+oo2yb/3xmwk9Vc99hC9bNolvqjaTZYEfMQhzdpBsjTvZBlXQ/teUE55Ww6sg//wlcDjOaqldOKyigWdA==} engines: {node: '>=12'} cpu: [ia32] @@ -10580,7 +12097,7 @@ packages: dev: true optional: true - /@esbuild/win32-ia32/0.17.8: + /@esbuild/win32-ia32@0.17.8: resolution: {integrity: sha512-Fqy63515xl20OHGFykjJsMnoIWS+38fqfg88ClvPXyDbLtgXal2DTlhb1TfTX34qWi3u4I7Cq563QcHpqgLx8w==} engines: {node: '>=12'} cpu: [ia32] @@ -10589,7 +12106,7 @@ packages: dev: true optional: true - /@esbuild/win32-ia32/0.18.20: + /@esbuild/win32-ia32@0.18.20: resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==} engines: {node: '>=12'} cpu: [ia32] @@ -10597,7 +12114,7 @@ packages: requiresBuild: true optional: true - /@esbuild/win32-x64/0.17.16: + /@esbuild/win32-x64@0.17.16: resolution: {integrity: sha512-xJ7OH/nanouJO9pf03YsL9NAFQBHd8AqfrQd7Pf5laGyyTt/gToul6QYOA/i5i/q8y9iaM5DQFNTgpi995VkOg==} engines: {node: '>=12'} cpu: [x64] @@ -10606,7 +12123,7 @@ packages: dev: true optional: true - /@esbuild/win32-x64/0.17.8: + /@esbuild/win32-x64@0.17.8: resolution: {integrity: sha512-1iuezdyDNngPnz8rLRDO2C/ZZ/emJLb72OsZeqQ6gL6Avko/XCXZw+NuxBSNhBAP13Hie418V7VMt9et1FMvpg==} engines: {node: '>=12'} cpu: [x64] @@ -10615,7 +12132,7 @@ packages: dev: true optional: true - /@esbuild/win32-x64/0.18.20: + /@esbuild/win32-x64@0.18.20: resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==} engines: {node: '>=12'} cpu: [x64] @@ -10623,7 +12140,7 @@ packages: requiresBuild: true optional: true - /@eslint-community/eslint-utils/4.4.0_eslint@8.38.0: + /@eslint-community/eslint-utils@4.4.0(eslint@8.38.0): resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -10631,9 +12148,8 @@ packages: dependencies: eslint: 8.38.0 eslint-visitor-keys: 3.4.3 - dev: true - /@eslint-community/eslint-utils/4.4.0_eslint@8.48.0: + /@eslint-community/eslint-utils@4.4.0(eslint@8.48.0): resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -10642,20 +12158,20 @@ packages: eslint: 8.48.0 eslint-visitor-keys: 3.4.3 - /@eslint-community/regexpp/4.5.0: + /@eslint-community/regexpp@4.5.0: resolution: {integrity: sha512-vITaYzIcNmjn5tF5uxcZ/ft7/RXGrMUIS9HalWckEOF6ESiwXKoMzAQf2UW0aVd6rnOeExTJVd5hmWXucBKGXQ==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} - /@eslint-community/regexpp/4.8.0: + /@eslint-community/regexpp@4.8.0: resolution: {integrity: sha512-JylOEEzDiOryeUnFbQz+oViCXS0KsvR1mvHkoMiu5+UiBvy+RYX7tzlIIIEstF/gVa2tj9AQXk3dgnxv6KxhFg==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} - /@eslint/eslintrc/0.4.3: + /@eslint/eslintrc@0.4.3: resolution: {integrity: sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==} engines: {node: ^10.12.0 || >=12.0.0} dependencies: ajv: 6.12.6 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) espree: 7.3.1 globals: 13.21.0 ignore: 4.0.6 @@ -10667,12 +12183,12 @@ packages: - supports-color dev: true - /@eslint/eslintrc/2.0.2: + /@eslint/eslintrc@2.0.2: resolution: {integrity: sha512-3W4f5tDUra+pA+FzgugqL2pRimUTDJWKr7BINqOpkZrC0uYI0NIc0/JFgBROCU07HR6GieA5m3/rsPIhDmCXTQ==} 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@8.1.1) espree: 9.5.1 globals: 13.21.0 ignore: 5.2.4 @@ -10682,14 +12198,13 @@ packages: strip-json-comments: 3.1.1 transitivePeerDependencies: - supports-color - dev: true - /@eslint/eslintrc/2.1.2: + /@eslint/eslintrc@2.1.2: resolution: {integrity: sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==} 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@8.1.1) espree: 9.6.1 globals: 13.21.0 ignore: 5.2.4 @@ -10700,46 +12215,45 @@ packages: transitivePeerDependencies: - supports-color - /@eslint/js/8.38.0: + /@eslint/js@8.38.0: resolution: {integrity: sha512-IoD2MfUnOV58ghIHCiil01PcohxjbYR/qCxsoC+xNgUwh1EY8jOOrYmu3d3a71+tJJ23uscEV4X2HJWMsPJu4g==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dev: true - /@eslint/js/8.48.0: + /@eslint/js@8.48.0: resolution: {integrity: sha512-ZSjtmelB7IJfWD2Fvb7+Z+ChTIKWq6kjda95fLcQKNS5aheVHn4IkfgRQE3sIIzTcSLwLcLZUD9UBt+V7+h+Pw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - /@faker-js/faker/6.3.1: + /@faker-js/faker@6.3.1: resolution: {integrity: sha512-8YXBE2ZcU/pImVOHX7MWrSR/X5up7t6rPWZlk34RwZEcdr3ua6X+32pSd6XuOQRN+vbuvYNfA6iey8NbrjuMFQ==} engines: {node: '>=14.0.0', npm: '>=6.0.0'} - /@fal-works/esbuild-plugin-global-externals/2.1.2: + /@fal-works/esbuild-plugin-global-externals@2.1.2: resolution: {integrity: sha512-cEee/Z+I12mZcFJshKcCqC8tuX5hG3s+d+9nZ3LabqKF1vKdF41B92pJVCBggjAGORAeOzyyDDKrZwIkLffeOQ==} dev: true - /@fastify/busboy/1.2.1: + /@fastify/busboy@1.2.1: resolution: {integrity: sha512-7PQA7EH43S0CxcOa9OeAnaeA0oQ+e/DHNPZwSQM9CQHW76jle5+OvLdibRp/Aafs9KXbLhxyjOTkRjWUbQEd3Q==} engines: {node: '>=14'} dependencies: text-decoding: 1.0.0 dev: false - /@firebase/app-types/0.9.0: + /@firebase/app-types@0.9.0: resolution: {integrity: sha512-AeweANOIo0Mb8GiYm3xhTEBVCmPwTYAu9Hcd2qSkLuga/6+j9b1Jskl5bpiSQWy9eJ/j5pavxj6eYogmnuzm+Q==} dev: false - /@firebase/auth-interop-types/0.2.1: + /@firebase/auth-interop-types@0.2.1: resolution: {integrity: sha512-VOaGzKp65MY6P5FI84TfYKBXEPi6LmOCSMMzys6o2BN2LOsqy7pCuZCup7NYnfbk5OkkQKzvIfHOzTm0UDpkyg==} dev: false - /@firebase/component/0.6.4: + /@firebase/component@0.6.4: resolution: {integrity: sha512-rLMyrXuO9jcAUCaQXCMjCMUsWrba5fzHlNK24xz5j2W6A/SRmK8mZJ/hn7V0fViLbxC0lPMtrK1eYzk6Fg03jA==} dependencies: '@firebase/util': 1.9.3 tslib: 2.6.2 dev: false - /@firebase/database-compat/0.3.4: + /@firebase/database-compat@0.3.4: resolution: {integrity: sha512-kuAW+l+sLMUKBThnvxvUZ+Q1ZrF/vFJ58iUY9kAcbX48U03nVzIF6Tmkf0p3WVQwMqiXguSgtOPIB6ZCeF+5Gg==} dependencies: '@firebase/component': 0.6.4 @@ -10750,14 +12264,14 @@ packages: tslib: 2.6.2 dev: false - /@firebase/database-types/0.10.4: + /@firebase/database-types@0.10.4: resolution: {integrity: sha512-dPySn0vJ/89ZeBac70T+2tWWPiJXWbmRygYv0smT5TfE3hDrQ09eKMF3Y+vMlTdrMWq7mUdYW5REWPSGH4kAZQ==} dependencies: '@firebase/app-types': 0.9.0 '@firebase/util': 1.9.3 dev: false - /@firebase/database/0.14.4: + /@firebase/database@0.14.4: resolution: {integrity: sha512-+Ea/IKGwh42jwdjCyzTmeZeLM3oy1h0mFPsTy6OqCWzcu/KFqRAr5Tt1HRCOBlNOdbh84JPZC47WLU18n2VbxQ==} dependencies: '@firebase/auth-interop-types': 0.2.1 @@ -10768,50 +12282,50 @@ packages: tslib: 2.6.2 dev: false - /@firebase/logger/0.4.0: + /@firebase/logger@0.4.0: resolution: {integrity: sha512-eRKSeykumZ5+cJPdxxJRgAC3G5NknY2GwEbKfymdnXtnT0Ucm4pspfR6GT4MUQEDuJwRVbVcSx85kgJulMoFFA==} dependencies: tslib: 2.6.2 dev: false - /@firebase/util/1.9.3: + /@firebase/util@1.9.3: resolution: {integrity: sha512-DY02CRhOZwpzO36fHpuVysz6JZrscPiBXD0fXp6qSrL9oNOx5KWICKdR95C0lSITzxp0TZosVyHqzatE8JbcjA==} dependencies: tslib: 2.6.2 dev: false - /@floating-ui/core/0.3.1: + /@floating-ui/core@0.3.1: resolution: {integrity: sha512-ensKY7Ub59u16qsVIFEo2hwTCqZ/r9oZZFh51ivcLGHfUwTn8l1Xzng8RJUe91H/UP8PeqeBronAGx0qmzwk2g==} dev: false - /@floating-ui/core/1.2.6: + /@floating-ui/core@1.2.6: resolution: {integrity: sha512-EvYTiXet5XqweYGClEmpu3BoxmsQ4hkj3QaYA6qEnigCWffTP3vNRwBReTdrwDwo7OoJ3wM8Uoe9Uk4n+d4hfg==} dev: false - /@floating-ui/core/1.5.0: + /@floating-ui/core@1.5.0: resolution: {integrity: sha512-kK1h4m36DQ0UHGj5Ah4db7R0rHemTqqO0QLvUqi1/mUUp3LuAWbWxdxSIf/XsnH9VS6rRVPLJCncjRzUvyCLXg==} dependencies: '@floating-ui/utils': 0.1.4 - /@floating-ui/dom/0.1.10: + /@floating-ui/dom@0.1.10: resolution: {integrity: sha512-4kAVoogvQm2N0XE0G6APQJuCNuErjOfPW8Ux7DFxh8+AfugWflwVJ5LDlHOwrwut7z/30NUvdtHzQ3zSip4EzQ==} dependencies: '@floating-ui/core': 0.3.1 dev: false - /@floating-ui/dom/1.2.6: + /@floating-ui/dom@1.2.6: resolution: {integrity: sha512-02vxFDuvuVPs22iJICacezYJyf7zwwOCWkPNkWNBr1U0Qt1cKFYzWvxts0AmqcOQGwt/3KJWcWIgtbUU38keyw==} dependencies: '@floating-ui/core': 1.2.6 dev: false - /@floating-ui/dom/1.5.3: + /@floating-ui/dom@1.5.3: resolution: {integrity: sha512-ClAbQnEqJAKCJOEbbLo5IUlZHkNszqhuxS4fHAVxRPXPya6Ysf2G8KypnYcOTpx6I8xcgF9bbHb6g/2KpbV8qA==} dependencies: '@floating-ui/core': 1.5.0 '@floating-ui/utils': 0.1.4 - /@floating-ui/react-dom/1.3.0_sfoxds7t5ydpegc3knd667wn6m: + /@floating-ui/react-dom@1.3.0(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-htwHm67Ji5E/pROEAr7f8IKFShuiCKHwUC/UY4vC3I5jiSvGFAYnSYiZO5MlGmads+QqvUkR9ANHEguGrDv72g==} peerDependencies: react: '>=16.8.0' @@ -10819,10 +12333,10 @@ packages: dependencies: '@floating-ui/dom': 1.2.6 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /@floating-ui/react-dom/2.0.2_sfoxds7t5ydpegc3knd667wn6m: + /@floating-ui/react-dom@2.0.2(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-5qhlDvjaLmAst/rKb3VdlCinwTF4EYMiVxuuc/HVUjs46W0zgtbMmAZ1UTsDrRTxRmUEzl92mOtWbeeXL26lSQ==} peerDependencies: react: '>=16.8.0' @@ -10830,31 +12344,31 @@ packages: dependencies: '@floating-ui/dom': 1.5.3 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) - /@floating-ui/react/0.19.2_sfoxds7t5ydpegc3knd667wn6m: + /@floating-ui/react@0.19.2(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-JyNk4A0Ezirq8FlXECvRtQOX/iBe5Ize0W/pLkrZjfHW9GUV7Xnq6zm6fyZuQzaHHqEnVizmvlA96e1/CkZv+w==} peerDependencies: react: '>=16.8.0' react-dom: '>=16.8.0' dependencies: - '@floating-ui/react-dom': 1.3.0_sfoxds7t5ydpegc3knd667wn6m + '@floating-ui/react-dom': 1.3.0(react-dom@17.0.2)(react@17.0.2) aria-hidden: 1.2.3 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) tabbable: 6.1.1 dev: false - /@floating-ui/utils/0.1.4: + /@floating-ui/utils@0.1.4: resolution: {integrity: sha512-qprfWkn82Iw821mcKofJ5Pk9wgioHicxcQMxx+5zt5GSKoqdWvgG5AxVmpmUUjzTLPVSH5auBrhI93Deayn/DA==} - /@fortawesome/fontawesome-common-types/6.4.0: + /@fortawesome/fontawesome-common-types@6.4.0: resolution: {integrity: sha512-HNii132xfomg5QVZw0HwXXpN22s7VBHQBv9CeOu9tfJnhsWQNd2lmTNi8CSrnw5B+5YOmzu1UoPAyxaXsJ6RgQ==} engines: {node: '>=6'} requiresBuild: true dev: false - /@fortawesome/fontawesome-svg-core/6.4.0: + /@fortawesome/fontawesome-svg-core@6.4.0: resolution: {integrity: sha512-Bertv8xOiVELz5raB2FlXDPKt+m94MQ3JgDfsVbrqNpLU9+UE2E18GKjLKw+d3XbeYPqg1pzyQKGsrzbw+pPaw==} engines: {node: '>=6'} requiresBuild: true @@ -10862,7 +12376,7 @@ packages: '@fortawesome/fontawesome-common-types': 6.4.0 dev: false - /@fortawesome/free-regular-svg-icons/6.4.0: + /@fortawesome/free-regular-svg-icons@6.4.0: resolution: {integrity: sha512-ZfycI7D0KWPZtf7wtMFnQxs8qjBXArRzczABuMQqecA/nXohquJ5J/RCR77PmY5qGWkxAZDxpnUFVXKwtY/jPw==} engines: {node: '>=6'} requiresBuild: true @@ -10870,7 +12384,7 @@ packages: '@fortawesome/fontawesome-common-types': 6.4.0 dev: false - /@fortawesome/free-solid-svg-icons/6.4.0: + /@fortawesome/free-solid-svg-icons@6.4.0: resolution: {integrity: sha512-kutPeRGWm8V5dltFP1zGjQOEAzaLZj4StdQhWVZnfGFCvAPVvHh8qk5bRrU4KXnRRRNni5tKQI9PBAdI6MP8nQ==} engines: {node: '>=6'} requiresBuild: true @@ -10878,7 +12392,7 @@ packages: '@fortawesome/fontawesome-common-types': 6.4.0 dev: false - /@fortawesome/react-fontawesome/0.2.0_zute3adenybwwon4zpn6czkvnu: + /@fortawesome/react-fontawesome@0.2.0(@fortawesome/fontawesome-svg-core@6.4.0)(react@17.0.2): resolution: {integrity: sha512-uHg75Rb/XORTtVt7OS9WoK8uM276Ufi7gCzshVWkUJbHhh3svsUUeqXerrM96Wm7fRiDzfKRwSoahhMIkGAYHw==} peerDependencies: '@fortawesome/fontawesome-svg-core': ~1 || ~6 @@ -10889,27 +12403,27 @@ packages: react: 17.0.2 dev: false - /@gar/promisify/1.1.3: + /@gar/promisify@1.1.3: resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==} dev: true - /@gilbarbara/deep-equal/0.1.2: + /@gilbarbara/deep-equal@0.1.2: resolution: {integrity: sha512-jk+qzItoEb0D0xSSmrKDDzf9sheQj/BAPxlgNxgmOaA3mxpUa6ndJLYGZKsJnIVEQSD8zcTbyILz7I0HcnBCRA==} dev: true - /@godaddy/terminus/4.11.2: + /@godaddy/terminus@4.11.2: resolution: {integrity: sha512-e/kbOWpGKME42eltM/wXM3RxSUOrfureZxEd6Dt6NXyFoJ7E8lnmm7znXydJsL3B7ky4HRFZI+eHrep54NZbeQ==} dependencies: stoppable: 1.1.0 dev: false - /@godaddy/terminus/4.12.1: + /@godaddy/terminus@4.12.1: resolution: {integrity: sha512-Tm+wVu1/V37uZXcT7xOhzdpFoovQReErff8x3y82k6YyWa1gzxWBjTyrx4G2enjEqoXPnUUmJ3MOmwH+TiP6Sw==} dependencies: stoppable: 1.1.0 dev: false - /@google-cloud/firestore/6.7.0: + /@google-cloud/firestore@6.7.0: resolution: {integrity: sha512-bkH2jb5KkQSUa+NAvpip9HQ+rpYhi77IaqHovWuN07adVmvNXX08gPpvPWEzoXYa/wDjEVI7LiAtCWkJJEYTNg==} engines: {node: '>=12.0.0'} requiresBuild: true @@ -10924,7 +12438,7 @@ packages: dev: false optional: true - /@google-cloud/paginator/3.0.7: + /@google-cloud/paginator@3.0.7: resolution: {integrity: sha512-jJNutk0arIQhmpUUQJPJErsojqo834KcyB6X7a1mxuic8i1tKXxde8E69IZxNZawRIlZdIK2QY4WALvlK5MzYQ==} engines: {node: '>=10'} dependencies: @@ -10932,17 +12446,17 @@ packages: extend: 3.0.2 dev: false - /@google-cloud/projectify/3.0.0: + /@google-cloud/projectify@3.0.0: resolution: {integrity: sha512-HRkZsNmjScY6Li8/kb70wjGlDDyLkVk3KvoEo9uIoxSjYLJasGiCch9+PqRVDOCGUFvEIqyogl+BeqILL4OJHA==} engines: {node: '>=12.0.0'} dev: false - /@google-cloud/promisify/3.0.1: + /@google-cloud/promisify@3.0.1: resolution: {integrity: sha512-z1CjRjtQyBOYL+5Qr9DdYIfrdLBe746jRTYfaYU6MeXkqp7UfYs/jX16lFFVzZ7PGEJvqZNqYUEtb1mvDww4pA==} engines: {node: '>=12'} dev: false - /@google-cloud/storage/6.12.0: + /@google-cloud/storage@6.12.0: resolution: {integrity: sha512-78nNAY7iiZ4O/BouWMWTD/oSF2YtYgYB3GZirn0To6eBOugjXVoK+GXgUXOl+HlqbAOyHxAVXOlsj3snfbQ1dw==} engines: {node: '>=12'} requiresBuild: true @@ -10971,7 +12485,7 @@ packages: dev: false optional: true - /@google-cloud/storage/6.9.5: + /@google-cloud/storage@6.9.5: resolution: {integrity: sha512-fcLsDA8YKcGuqvhk0XTjJGVpG9dzs5Em8IcUjSjspYvERuHYqMy9CMChWapSjv3Lyw//exa3mv4nUxPlV93BnA==} engines: {node: '>=12'} dependencies: @@ -10997,46 +12511,50 @@ packages: - supports-color dev: false - /@graphql-tools/merge/9.0.0_graphql@16.8.0: + /@graphql-tools/merge@9.0.0(graphql@16.8.0): resolution: {integrity: sha512-J7/xqjkGTTwOJmaJQJ2C+VDBDOWJL3lKrHJN4yMaRLAJH3PosB7GiPRaSDZdErs0+F77sH2MKs2haMMkywzx7Q==} engines: {node: '>=16.0.0'} + requiresBuild: true peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 10.0.1_graphql@16.8.0 + '@graphql-tools/utils': 10.0.1(graphql@16.8.0) graphql: 16.8.0 tslib: 2.6.2 dev: false optional: true - /@graphql-tools/schema/10.0.0_graphql@16.8.0: + /@graphql-tools/schema@10.0.0(graphql@16.8.0): resolution: {integrity: sha512-kf3qOXMFcMs2f/S8Y3A8fm/2w+GaHAkfr3Gnhh2LOug/JgpY/ywgFVxO3jOeSpSEdoYcDKLcXVjMigNbY4AdQg==} engines: {node: '>=16.0.0'} + requiresBuild: true peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/merge': 9.0.0_graphql@16.8.0 - '@graphql-tools/utils': 10.0.1_graphql@16.8.0 + '@graphql-tools/merge': 9.0.0(graphql@16.8.0) + '@graphql-tools/utils': 10.0.1(graphql@16.8.0) graphql: 16.8.0 tslib: 2.6.2 value-or-promise: 1.0.12 dev: false optional: true - /@graphql-tools/utils/10.0.1_graphql@16.8.0: + /@graphql-tools/utils@10.0.1(graphql@16.8.0): resolution: {integrity: sha512-i1FozbDGHgdsFA47V/JvQZ0FE8NAy0Eiz7HGCJO2MkNdZAKNnwei66gOq0JWYVFztwpwbVQ09GkKhq7Kjcq5Cw==} engines: {node: '>=16.0.0'} + requiresBuild: true peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-typed-document-node/core': 3.2.0_graphql@16.8.0 + '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.0) graphql: 16.8.0 tslib: 2.6.2 dev: false optional: true - /@graphql-typed-document-node/core/3.2.0_graphql@16.8.0: + /@graphql-typed-document-node/core@3.2.0(graphql@16.8.0): resolution: {integrity: sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==} + requiresBuild: 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 || ^17.0.0 dependencies: @@ -11044,7 +12562,7 @@ packages: dev: false optional: true - /@grpc/grpc-js/1.8.21: + /@grpc/grpc-js@1.8.21: resolution: {integrity: sha512-KeyQeZpxeEBSqFVTi3q2K7PiPXmgBfECc4updA1ejCLjYmoAlvvM3ZMp5ztTDUCUQmoY3CpDxvchjO1+rFkoHg==} engines: {node: ^8.13.0 || >=10.10.0} dependencies: @@ -11052,7 +12570,7 @@ packages: '@types/node': 14.18.42 dev: false - /@grpc/proto-loader/0.7.9: + /@grpc/proto-loader@0.7.9: resolution: {integrity: sha512-YJsOehVXzgurc+lLAxYnlSMc1p/Gu6VAvnfx0ATi2nzvr0YZcjhmZDeY8SeAKv1M7zE3aEJH0Xo9mK1iZ8GYoQ==} engines: {node: '>=6'} hasBin: true @@ -11063,31 +12581,31 @@ packages: yargs: 17.7.2 dev: false - /@gwhitney/detect-indent/7.0.1: + /@gwhitney/detect-indent@7.0.1: resolution: {integrity: sha512-7bQW+gkKa2kKZPeJf6+c6gFK9ARxQfn+FKy9ScTBppyKRWH2KzsmweXUoklqeEiHiNVWaeP5csIdsNq6w7QhzA==} engines: {node: '>=12.20'} dev: true - /@handlebars/parser/2.1.0: + /@handlebars/parser@2.1.0: resolution: {integrity: sha512-R14NuNaSKZ6eE9y4t0fg/1f8iKd5ZJtSOTIseGFzXINTV17XffhLG2Y0CvdKOgyVQ7+UnXi89YGzRo/xsgwHIA==} dev: false - /@hapi/address/2.1.4: + /@hapi/address@2.1.4: resolution: {integrity: sha512-QD1PhQk+s31P1ixsX0H0Suoupp3VMXzIVMSwobR3F3MSUO2YCV0B7xqLcUw/Bh8yuvd3LhpyqLQWTNcRmp6IdQ==} deprecated: Moved to 'npm install @sideway/address' dev: false - /@hapi/formula/1.2.0: + /@hapi/formula@1.2.0: resolution: {integrity: sha512-UFbtbGPjstz0eWHb+ga/GM3Z9EzqKXFWIbSOFURU0A/Gku0Bky4bCk9/h//K2Xr3IrCfjFNhMm4jyZ5dbCewGA==} deprecated: Moved to 'npm install @sideway/formula' dev: false - /@hapi/hoek/8.5.1: + /@hapi/hoek@8.5.1: resolution: {integrity: sha512-yN7kbciD87WzLGc5539Tn0sApjyiGHAJgKvG9W8C7O+6c7qmoQMfVs0W4bX17eqz6C78QJqqFrtgdK5EWf6Qow==} deprecated: This version has been deprecated and is no longer supported or maintained dev: false - /@hapi/joi/16.1.8: + /@hapi/joi@16.1.8: resolution: {integrity: sha512-wAsVvTPe+FwSrsAurNt5vkg3zo+TblvC5Bb1zMVK6SJzZqw9UrJnexxR+76cpePmtUZKHAPxcQ2Bf7oVHyahhg==} deprecated: Switch to 'npm install joi' dependencies: @@ -11098,91 +12616,90 @@ packages: '@hapi/topo': 3.1.6 dev: false - /@hapi/pinpoint/1.0.2: + /@hapi/pinpoint@1.0.2: resolution: {integrity: sha512-dtXC/WkZBfC5vxscazuiJ6iq4j9oNx1SHknmIr8hofarpKUZKmlUVYVIhNVzIEgK5Wrc4GMHL5lZtt1uS2flmQ==} deprecated: Moved to 'npm install @sideway/pinpoint' dev: false - /@hapi/topo/3.1.6: + /@hapi/topo@3.1.6: resolution: {integrity: sha512-tAag0jEcjwH+P2quUfipd7liWCNX2F8NvYjQp2wtInsZxnMlypdw0FtAOLxtvvkO+GSRRbmNi8m/5y42PQJYCQ==} deprecated: This version has been deprecated and is no longer supported or maintained dependencies: '@hapi/hoek': 8.5.1 dev: false - /@hookform/devtools/4.3.1_zsjcj4gvi24ks76nprapl4hsmq: + /@hookform/devtools@4.3.1(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-CrWxEoHQZaOXJZVQ8KBgOuAa8p2LI8M0DAN5GTRTmdCieRwFVjVDEmuTAVazWVRRkpEQSgSt3KYp7VmmqXdEnw==} peerDependencies: react: ^16.8.0 || ^17 || ^18 react-dom: ^16.8.0 || ^17 || ^18 dependencies: - '@emotion/react': 11.10.6_h7fc2el62uaa77gho3xhys6ola - '@emotion/styled': 11.10.6_7hisdke2c3hq4r3q5z4dcdhmzi + '@emotion/react': 11.10.6(@types/react@17.0.53)(react@17.0.2) + '@emotion/styled': 11.10.6(@emotion/react@11.10.6)(@types/react@17.0.53)(react@17.0.2) '@types/lodash': 4.14.192 - little-state-machine: 4.8.0_react@17.0.2 + little-state-machine: 4.8.0(react@17.0.2) lodash: 4.17.21 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-simple-animate: 3.5.2_react-dom@17.0.2 - use-deep-compare-effect: 1.8.1_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) + react-simple-animate: 3.5.2(react-dom@17.0.2) + use-deep-compare-effect: 1.8.1(react@17.0.2) uuid: 8.3.2 transitivePeerDependencies: - '@types/react' dev: false - /@hookform/resolvers/2.9.11_react-hook-form@7.43.9: + /@hookform/resolvers@2.9.11(react-hook-form@7.43.9): resolution: {integrity: sha512-bA3aZ79UgcHj7tFV7RlgThzwSSHZgvfbt2wprldRkYBcMopdMvHyO17Wwp/twcJasNFischFfS7oz8Katz8DdQ==} peerDependencies: react-hook-form: ^7.0.0 dependencies: - react-hook-form: 7.43.9_react@17.0.2 + react-hook-form: 7.43.9(react@17.0.2) dev: false - /@humanwhocodes/config-array/0.11.11: + /@humanwhocodes/config-array@0.11.11: resolution: {integrity: sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==} engines: {node: '>=10.10.0'} dependencies: '@humanwhocodes/object-schema': 1.2.1 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) minimatch: 3.1.2 transitivePeerDependencies: - supports-color - /@humanwhocodes/config-array/0.11.8: + /@humanwhocodes/config-array@0.11.8: resolution: {integrity: sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==} engines: {node: '>=10.10.0'} dependencies: '@humanwhocodes/object-schema': 1.2.1 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) minimatch: 3.1.2 transitivePeerDependencies: - supports-color - dev: true - /@humanwhocodes/config-array/0.5.0: + /@humanwhocodes/config-array@0.5.0: resolution: {integrity: sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==} engines: {node: '>=10.10.0'} dependencies: '@humanwhocodes/object-schema': 1.2.1 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) minimatch: 3.1.2 transitivePeerDependencies: - supports-color 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==} - /@hutson/parse-repository-url/3.0.2: + /@hutson/parse-repository-url@3.0.2: resolution: {integrity: sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==} engines: {node: '>=6.9.0'} dev: true - /@icons/material/0.2.4_react@17.0.2: + /@icons/material@0.2.4(react@17.0.2): resolution: {integrity: sha512-QPcGmICAPbGLGb6F/yNf/KzKqvFx8z5qx3D1yFqVAjoFmXK35EgyW+cJ57Te3CNsmzblwtzakLGFqHPqrfb4Tw==} peerDependencies: react: '*' @@ -11190,7 +12707,7 @@ packages: react: 17.0.2 dev: false - /@infobip-api/sdk/0.2.0: + /@infobip-api/sdk@0.2.0: resolution: {integrity: sha512-I9C+MIMxoW/PProBSt6UIMqDE5cgVODno5o5JOlcjMbbFS2ou490e5zS0V44sH2z5W6BDhOGyT50FQetF8BeUQ==} engines: {node: '>=10'} dependencies: @@ -11200,25 +12717,25 @@ packages: - debug dev: false - /@ioredis/commands/1.2.0: + /@ioredis/commands@1.2.0: resolution: {integrity: sha512-Sx1pU8EM64o2BrqNpEO1CNLtKQwyhuXuqyfH7oGKCk+1a33d2r5saW8zNwm3j6BTExtjrv2BxTgzzkMwts6vGg==} - /@isaacs/cliui/8.0.2: + /@isaacs/cliui@8.0.2: resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} engines: {node: '>=12'} dependencies: string-width: 5.1.2 - string-width-cjs: /string-width/4.2.3 + string-width-cjs: /string-width@4.2.3 strip-ansi: 7.0.1 - strip-ansi-cjs: /strip-ansi/6.0.1 + strip-ansi-cjs: /strip-ansi@6.0.1 wrap-ansi: 8.1.0 - wrap-ansi-cjs: /wrap-ansi/7.0.0 + wrap-ansi-cjs: /wrap-ansi@7.0.0 - /@isaacs/string-locale-compare/1.1.0: + /@isaacs/string-locale-compare@1.1.0: resolution: {integrity: sha512-SQ7Kzhh9+D+ZW9MA0zkYv3VXhIDNx+LzM6EJ+/65I3QY+enU6Itte7E5XX7EWrqLW2FN4n06GWzBnPoC3th2aQ==} dev: true - /@istanbuljs/load-nyc-config/1.1.0: + /@istanbuljs/load-nyc-config@1.1.0: resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} engines: {node: '>=8'} dependencies: @@ -11228,7 +12745,7 @@ packages: js-yaml: 3.14.1 resolve-from: 5.0.0 - /@istanbuljs/nyc-config-typescript/1.0.2_nyc@15.1.0: + /@istanbuljs/nyc-config-typescript@1.0.2(nyc@15.1.0): resolution: {integrity: sha512-iKGIyMoyJuFnJRSVTZ78POIRvNnwZaWIf8vG4ZS3rQq58MMDrqEX2nnzx0R28V2X8JvmKYiqY9FP2hlJsm8A0w==} engines: {node: '>=8'} peerDependencies: @@ -11238,11 +12755,11 @@ packages: nyc: 15.1.0 dev: true - /@istanbuljs/schema/0.1.3: + /@istanbuljs/schema@0.1.3: resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} engines: {node: '>=8'} - /@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: @@ -11253,7 +12770,7 @@ packages: jest-util: 27.5.1 slash: 3.0.0 - /@jest/console/28.1.3: + /@jest/console@28.1.3: resolution: {integrity: sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: @@ -11264,7 +12781,7 @@ packages: jest-util: 28.1.3 slash: 3.0.0 - /@jest/console/29.5.0: + /@jest/console@29.5.0: resolution: {integrity: sha512-NEpkObxPwyw/XxZVLPmAGKE89IQRp4puc6IQRPru6JKd1M3fW9v1xM1AnzIJE65hbCkzQAdnL8P47e9hzhiYLQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -11276,7 +12793,7 @@ packages: slash: 3.0.0 dev: true - /@jest/core/27.5.1: + /@jest/core@27.5.1(ts-node@10.9.1): resolution: {integrity: sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} peerDependencies: @@ -11297,7 +12814,7 @@ packages: exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 27.5.1 - jest-config: 27.5.1 + jest-config: 27.5.1(ts-node@10.9.1) jest-haste-map: 27.5.1 jest-message-util: 27.5.1 jest-regex-util: 27.5.1 @@ -11320,52 +12837,7 @@ packages: - ts-node - utf-8-validate - /@jest/core/27.5.1_ts-node@10.9.1: - resolution: {integrity: sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true - dependencies: - '@jest/console': 27.5.1 - '@jest/reporters': 27.5.1 - '@jest/test-result': 27.5.1 - '@jest/transform': 27.5.1 - '@jest/types': 27.5.1 - '@types/node': 14.18.42 - ansi-escapes: 4.3.2 - chalk: 4.1.2 - emittery: 0.8.1 - exit: 0.1.2 - graceful-fs: 4.2.11 - jest-changed-files: 27.5.1 - jest-config: 27.5.1_ts-node@10.9.1 - jest-haste-map: 27.5.1 - jest-message-util: 27.5.1 - jest-regex-util: 27.5.1 - jest-resolve: 27.5.1 - jest-resolve-dependencies: 27.5.1 - jest-runner: 27.5.1 - jest-runtime: 27.5.1 - jest-snapshot: 27.5.1 - jest-util: 27.5.1 - jest-validate: 27.5.1 - jest-watcher: 27.5.1 - micromatch: 4.0.5 - rimraf: 3.0.2 - slash: 3.0.0 - strip-ansi: 6.0.1 - transitivePeerDependencies: - - bufferutil - - canvas - - supports-color - - ts-node - - utf-8-validate - dev: true - - /@jest/core/29.5.0: + /@jest/core@29.5.0(ts-node@10.9.1): resolution: {integrity: sha512-28UzQc7ulUrOQw1IsN/kv1QES3q2kkbl/wGslyhAclqZ/8cMdB5M68BffkIdSJgKBUt50d3hbwJ92XESlE7LiQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: @@ -11386,7 +12858,7 @@ packages: exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 29.5.0 - jest-config: 29.5.0_@types+node@14.18.42 + jest-config: 29.5.0(@types/node@14.18.42)(ts-node@10.9.1) jest-haste-map: 29.5.0 jest-message-util: 29.5.0 jest-regex-util: 29.4.3 @@ -11407,7 +12879,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: @@ -11416,7 +12888,7 @@ packages: '@types/node': 14.18.42 jest-mock: 27.5.1 - /@jest/environment/29.5.0: + /@jest/environment@29.5.0: resolution: {integrity: sha512-5FXw2+wD29YU1d4I2htpRX7jYnAyTRjP2CsXQdo9SAM8g3ifxWPSV0HnClSn71xwctr0U3oZIIH+dtbfmnbXVQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -11426,13 +12898,13 @@ packages: jest-mock: 29.5.0 dev: true - /@jest/expect-utils/29.5.0: + /@jest/expect-utils@29.5.0: resolution: {integrity: sha512-fmKzsidoXQT2KwnrwE0SQq3uj8Z763vzR8LnLBwC2qYWEFpjX8daRsk6rHUM1QvNlEW/UJXNXm59ztmJJWs2Mg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: jest-get-type: 29.4.3 - /@jest/expect/29.5.0: + /@jest/expect@29.5.0: resolution: {integrity: sha512-PueDR2HGihN3ciUNGr4uelropW7rqUfTiOn+8u0leg/42UhblPxHkfoh0Ruu3I9Y1962P3u2DY4+h7GVTSVU6g==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -11442,7 +12914,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: @@ -11453,7 +12925,7 @@ packages: jest-mock: 27.5.1 jest-util: 27.5.1 - /@jest/fake-timers/29.5.0: + /@jest/fake-timers@29.5.0: resolution: {integrity: sha512-9ARvuAAQcBwDAqOnglWq2zwNIRUDtk/SCkp/ToGEhFv5r86K21l+VEs0qNTaXtyiY0lEePl3kylijSYJQqdbDg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -11465,7 +12937,7 @@ packages: jest-util: 29.5.0 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: @@ -11473,7 +12945,7 @@ packages: '@jest/types': 27.5.1 expect: 27.5.1 - /@jest/globals/29.5.0: + /@jest/globals@29.5.0: resolution: {integrity: sha512-S02y0qMWGihdzNbUiqSAiKSpSozSuHX5UYc7QbnHP+D9Lyw8DgGGCinrN9uSuHPeKgSSzvPom2q1nAtBvUsvPQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -11485,7 +12957,7 @@ packages: - supports-color dev: true - /@jest/reporters/27.2.2: + /@jest/reporters@27.2.2: resolution: {integrity: sha512-ufwZ8XoLChEfPffDeVGroYbhbcYPom3zKDiv4Flhe97rr/o2IfUXoWkDUDoyJ3/V36RFIMjokSu0IJ/pbFtbHg==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} peerDependencies: @@ -11522,7 +12994,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: @@ -11559,7 +13031,7 @@ packages: transitivePeerDependencies: - supports-color - /@jest/reporters/29.5.0: + /@jest/reporters@29.5.0: resolution: {integrity: sha512-D05STXqj/M8bP9hQNSICtPqz97u7ffGzZu+9XLucXhkOFBqKcXe04JLZOgIekOxdb73MAoBUFnqvf7MCpKk5OA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: @@ -11596,19 +13068,19 @@ packages: - supports-color dev: true - /@jest/schemas/28.1.3: + /@jest/schemas@28.1.3: resolution: {integrity: sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: '@sinclair/typebox': 0.24.51 - /@jest/schemas/29.4.3: + /@jest/schemas@29.4.3: resolution: {integrity: sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@sinclair/typebox': 0.25.24 - /@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: @@ -11616,7 +13088,7 @@ packages: graceful-fs: 4.2.11 source-map: 0.6.1 - /@jest/source-map/29.4.3: + /@jest/source-map@29.4.3: resolution: {integrity: sha512-qyt/mb6rLyd9j1jUts4EQncvS6Yy3PM9HghnNv86QBlV+zdL2inCdK1tuVlL+J+lpiw2BI67qXOrX3UurBqQ1w==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -11625,7 +13097,7 @@ packages: graceful-fs: 4.2.11 dev: true - /@jest/test-result/27.2.2: + /@jest/test-result@27.2.2: resolution: {integrity: sha512-yENoDEoWlEFI7l5z7UYyJb/y5Q8RqbPd4neAVhKr6l+vVaQOPKf8V/IseSMJI9+urDUIxgssA7RGNyCRhGjZvw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: @@ -11635,7 +13107,7 @@ packages: collect-v8-coverage: 1.0.1 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: @@ -11644,7 +13116,7 @@ packages: '@types/istanbul-lib-coverage': 2.0.4 collect-v8-coverage: 1.0.1 - /@jest/test-result/28.1.3: + /@jest/test-result@28.1.3: resolution: {integrity: sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: @@ -11653,7 +13125,7 @@ packages: '@types/istanbul-lib-coverage': 2.0.4 collect-v8-coverage: 1.0.1 - /@jest/test-result/29.5.0: + /@jest/test-result@29.5.0: resolution: {integrity: sha512-fGl4rfitnbfLsrfx1uUpDEESS7zM8JdgZgOCQuxQvL1Sn/I6ijeAVQWGfXI9zb1i9Mzo495cIpVZhA0yr60PkQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -11663,7 +13135,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: @@ -11674,7 +13146,7 @@ packages: transitivePeerDependencies: - supports-color - /@jest/test-sequencer/29.5.0: + /@jest/test-sequencer@29.5.0: resolution: {integrity: sha512-yPafQEcKjkSfDXyvtgiV4pevSeyuA6MQr6ZIdVkWJly9vkqjnFfcfhRQqpD5whjoU8EORki752xQmjaqoFjzMQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -11684,7 +13156,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: @@ -11706,7 +13178,7 @@ packages: transitivePeerDependencies: - supports-color - /@jest/transform/29.5.0: + /@jest/transform@29.5.0: resolution: {integrity: sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -11728,7 +13200,7 @@ packages: transitivePeerDependencies: - supports-color - /@jest/types/24.9.0: + /@jest/types@24.9.0: resolution: {integrity: sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==} engines: {node: '>= 6'} dependencies: @@ -11737,7 +13209,7 @@ packages: '@types/yargs': 13.0.12 dev: true - /@jest/types/26.6.2: + /@jest/types@26.6.2: resolution: {integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==} engines: {node: '>= 10.14.2'} dependencies: @@ -11747,7 +13219,7 @@ packages: '@types/yargs': 15.0.15 chalk: 4.1.2 - /@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: @@ -11757,7 +13229,7 @@ packages: '@types/yargs': 16.0.5 chalk: 4.1.2 - /@jest/types/28.1.3: + /@jest/types@28.1.3: resolution: {integrity: sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: @@ -11768,7 +13240,7 @@ packages: '@types/yargs': 17.0.24 chalk: 4.1.2 - /@jest/types/29.5.0: + /@jest/types@29.5.0: resolution: {integrity: sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -11779,11 +13251,11 @@ packages: '@types/yargs': 17.0.24 chalk: 4.1.2 - /@jonkemp/package-utils/1.0.8: + /@jonkemp/package-utils@1.0.8: resolution: {integrity: sha512-bIcKnH5YmtTYr7S6J3J86dn/rFiklwRpOqbTOQ9C0WMmR9FKHVb3bxs2UYfqEmNb93O4nbA97sb6rtz33i9SyA==} 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: @@ -11791,7 +13263,7 @@ packages: '@jridgewell/sourcemap-codec': 1.4.15 dev: true - /@jridgewell/gen-mapping/0.3.3: + /@jridgewell/gen-mapping@0.3.3: resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==} engines: {node: '>=6.0.0'} dependencies: @@ -11799,63 +13271,64 @@ packages: '@jridgewell/sourcemap-codec': 1.4.15 '@jridgewell/trace-mapping': 0.3.19 - /@jridgewell/resolve-uri/3.1.0: + /@jridgewell/resolve-uri@3.1.0: resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==} engines: {node: '>=6.0.0'} - /@jridgewell/resolve-uri/3.1.1: + /@jridgewell/resolve-uri@3.1.1: resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} 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'} - /@jridgewell/source-map/0.3.3: + /@jridgewell/source-map@0.3.3: resolution: {integrity: sha512-b+fsZXeLYi9fEULmfBrhxn4IrPlINf8fiNarzTof004v3lFdntdwa9PF7vFJqm3mg7s+ScJMxXaE3Acp1irZcg==} dependencies: '@jridgewell/gen-mapping': 0.3.3 '@jridgewell/trace-mapping': 0.3.19 - /@jridgewell/sourcemap-codec/1.4.14: + /@jridgewell/sourcemap-codec@1.4.14: resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==} - /@jridgewell/sourcemap-codec/1.4.15: + /@jridgewell/sourcemap-codec@1.4.15: resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} - /@jridgewell/trace-mapping/0.3.18: + /@jridgewell/trace-mapping@0.3.18: resolution: {integrity: sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==} dependencies: '@jridgewell/resolve-uri': 3.1.0 '@jridgewell/sourcemap-codec': 1.4.14 - /@jridgewell/trace-mapping/0.3.19: + /@jridgewell/trace-mapping@0.3.19: resolution: {integrity: sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==} dependencies: '@jridgewell/resolve-uri': 3.1.1 '@jridgewell/sourcemap-codec': 1.4.15 - /@jridgewell/trace-mapping/0.3.9: + /@jridgewell/trace-mapping@0.3.9: resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} dependencies: '@jridgewell/resolve-uri': 3.1.1 '@jridgewell/sourcemap-codec': 1.4.15 - /@jsdoc/salty/0.2.5: + /@jsdoc/salty@0.2.5: resolution: {integrity: sha512-TfRP53RqunNe2HBobVBJ0VLhK1HbfvBYeTC1ahnN64PWvyYyGebmMiPkuwvD9fpw2ZbkoPb8Q7mwy0aR8Z9rvw==} engines: {node: '>=v12.0.0'} + requiresBuild: true dependencies: lodash: 4.17.21 dev: false optional: true - /@juggle/resize-observer/3.4.0: + /@juggle/resize-observer@3.4.0: resolution: {integrity: sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==} - /@leichtgewicht/ip-codec/2.0.4: + /@leichtgewicht/ip-codec@2.0.4: resolution: {integrity: sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==} - /@lerna/add/5.6.2: + /@lerna/add@5.6.2: resolution: {integrity: sha512-NHrm7kYiqP+EviguY7/NltJ3G9vGmJW6v2BASUOhP9FZDhYbq3O+rCDlFdoVRNtcyrSg90rZFMOWHph4KOoCQQ==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -11874,7 +13347,7 @@ packages: - supports-color dev: true - /@lerna/bootstrap/5.6.2: + /@lerna/bootstrap@5.6.2: resolution: {integrity: sha512-S2fMOEXbef7nrybQhzBywIGSLhuiQ5huPp1sU+v9Y6XEBsy/2IA+lb0gsZosvPqlRfMtiaFstL+QunaBhlWECA==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -11905,7 +13378,7 @@ packages: - supports-color dev: true - /@lerna/changed/5.6.2: + /@lerna/changed@5.6.2: resolution: {integrity: sha512-uUgrkdj1eYJHQGsXXlpH5oEAfu3x0qzeTjgvpdNrxHEdQWi7zWiW59hRadmiImc14uJJYIwVK5q/QLugrsdGFQ==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -11915,7 +13388,7 @@ packages: '@lerna/output': 5.6.2 dev: true - /@lerna/check-working-tree/5.6.2: + /@lerna/check-working-tree@5.6.2: resolution: {integrity: sha512-6Vf3IB6p+iNIubwVgr8A/KOmGh5xb4SyRmhFtAVqe33yWl2p3yc+mU5nGoz4ET3JLF1T9MhsePj0hNt6qyOTLQ==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -11924,7 +13397,7 @@ packages: '@lerna/validation-error': 5.6.2 dev: true - /@lerna/child-process/5.6.2: + /@lerna/child-process@5.6.2: resolution: {integrity: sha512-QIOQ3jIbWdduHd5892fbo3u7/dQgbhzEBB7cvf+Ys/iCPP8UQrBECi1lfRgA4kcTKC2MyMz0SoyXZz/lFcXc3A==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -11933,7 +13406,7 @@ packages: strong-log-transformer: 2.1.0 dev: true - /@lerna/clean/5.6.2: + /@lerna/clean@5.6.2: resolution: {integrity: sha512-A7j8r0Hk2pGyLUyaCmx4keNHen1L/KdcOjb4nR6X8GtTJR5AeA47a8rRKOCz9wwdyMPlo2Dau7d3RV9viv7a5g==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -11947,7 +13420,7 @@ packages: p-waterfall: 2.1.1 dev: true - /@lerna/cli/5.6.2: + /@lerna/cli@5.6.2: resolution: {integrity: sha512-w0NRIEqDOmYKlA5t0iyqx0hbY7zcozvApmfvwF0lhkuhf3k6LRAFSamtimGQWicC779a7J2NXw4ASuBV47Fs1Q==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -11957,7 +13430,7 @@ packages: yargs: 16.2.0 dev: true - /@lerna/collect-uncommitted/5.6.2: + /@lerna/collect-uncommitted@5.6.2: resolution: {integrity: sha512-i0jhxpypyOsW2PpPwIw4xg6EPh7/N3YuiI6P2yL7PynZ8nOv8DkIdoyMkhUP4gALjBfckH8Bj94eIaKMviqW4w==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -11966,7 +13439,7 @@ packages: npmlog: 6.0.2 dev: true - /@lerna/collect-updates/5.6.2: + /@lerna/collect-updates@5.6.2: resolution: {integrity: sha512-DdTK13X6PIsh9HINiMniFeiivAizR/1FBB+hDVe6tOhsXFBfjHMw1xZhXlE+mYIoFmDm1UFK7zvQSexoaxRqFA==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -11977,7 +13450,7 @@ packages: slash: 3.0.0 dev: true - /@lerna/command/5.6.2: + /@lerna/command@5.6.2: resolution: {integrity: sha512-eLVGI9TmxcaGt1M7TXGhhBZoeWOtOedMiH7NuCGHtL6TMJ9k+SCExyx+KpNmE6ImyNOzws6EvYLPLjftiqmoaA==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -11993,7 +13466,7 @@ packages: npmlog: 6.0.2 dev: true - /@lerna/conventional-commits/5.6.2: + /@lerna/conventional-commits@5.6.2: resolution: {integrity: sha512-fPrJpYJhxCgY2uyOCTcAAC6+T6lUAtpEGxLbjWHWTb13oKKEygp9THoFpe6SbAD0fYMb3jeZCZCqNofM62rmuA==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -12009,7 +13482,7 @@ packages: semver: 7.5.4 dev: true - /@lerna/create-symlink/5.6.2: + /@lerna/create-symlink@5.6.2: resolution: {integrity: sha512-0WIs3P6ohPVh2+t5axrLZDE5Dt7fe3Kv0Auj0sBiBd6MmKZ2oS76apIl0Bspdbv8jX8+TRKGv6ib0280D0dtEw==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -12018,7 +13491,7 @@ packages: npmlog: 6.0.2 dev: true - /@lerna/create/5.6.2: + /@lerna/create@5.6.2: resolution: {integrity: sha512-+Y5cMUxMNXjTTU9IHpgRYIwKo39w+blui1P+s+qYlZUSCUAew0xNpOBG8iN0Nc5X9op4U094oIdHxv7Dyz6tWQ==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -12043,7 +13516,7 @@ packages: - supports-color dev: true - /@lerna/describe-ref/5.6.2: + /@lerna/describe-ref@5.6.2: resolution: {integrity: sha512-UqU0N77aT1W8duYGir7R+Sk3jsY/c4lhcCEcnayMpFScMbAp0ETGsW04cYsHK29sgg+ZCc5zEwebBqabWhMhnA==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -12051,7 +13524,7 @@ packages: npmlog: 6.0.2 dev: true - /@lerna/diff/5.6.2: + /@lerna/diff@5.6.2: resolution: {integrity: sha512-aHKzKvUvUI8vOcshC2Za/bdz+plM3r/ycqUrPqaERzp+kc1pYHyPeXezydVdEmgmmwmyKI5hx4+2QNnzOnun2A==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -12061,7 +13534,7 @@ packages: npmlog: 6.0.2 dev: true - /@lerna/exec/5.6.2: + /@lerna/exec@5.6.2: resolution: {integrity: sha512-meZozok5stK7S0oAVn+kdbTmU+kHj9GTXjW7V8kgwG9ld+JJMTH3nKK1L3mEKyk9TFu9vFWyEOF7HNK6yEOoVg==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -12074,7 +13547,7 @@ packages: p-map: 4.0.0 dev: true - /@lerna/filter-options/5.6.2: + /@lerna/filter-options@5.6.2: resolution: {integrity: sha512-4Z0HIhPak2TabTsUqEBQaQeOqgqEt0qyskvsY0oviYvqP/nrJfJBZh4H93jIiNQF59LJCn5Ce3KJJrLExxjlzw==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -12084,7 +13557,7 @@ packages: npmlog: 6.0.2 dev: true - /@lerna/filter-packages/5.6.2: + /@lerna/filter-packages@5.6.2: resolution: {integrity: sha512-el9V2lTEG0Bbz+Omo45hATkRVnChCTJhcTpth19cMJ6mQ4M5H4IgbWCJdFMBi/RpTnOhz9BhJxDbj95kuIvvzw==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -12093,14 +13566,14 @@ packages: npmlog: 6.0.2 dev: true - /@lerna/get-npm-exec-opts/5.6.2: + /@lerna/get-npm-exec-opts@5.6.2: resolution: {integrity: sha512-0RbSDJ+QC9D5UWZJh3DN7mBIU1NhBmdHOE289oHSkjDY+uEjdzMPkEUy+wZ8fCzMLFnnNQkAEqNaOAzZ7dmFLA==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: npmlog: 6.0.2 dev: true - /@lerna/get-packed/5.6.2: + /@lerna/get-packed@5.6.2: resolution: {integrity: sha512-pp5nNDmtrtd21aKHjwwOY5CS7XNIHxINzGa+Jholn1jMDYUtdskpN++ZqYbATGpW831++NJuiuBVyqAWi9xbXg==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -12109,7 +13582,7 @@ packages: tar: 6.1.13 dev: true - /@lerna/github-client/5.6.2: + /@lerna/github-client@5.6.2: resolution: {integrity: sha512-pjALazZoRZtKqfwLBwmW3HPptVhQm54PvA8s3qhCQ+3JkqrZiIFwkkxNZxs3jwzr+aaSOzfhSzCndg0urb0GXA==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -12122,7 +13595,7 @@ packages: - encoding dev: true - /@lerna/gitlab-client/5.6.2: + /@lerna/gitlab-client@5.6.2: resolution: {integrity: sha512-TInJmbrsmYIwUyrRxytjO82KjJbRwm67F7LoZs1shAq6rMvNqi4NxSY9j+hT/939alFmEq1zssoy/caeLXHRfQ==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -12132,12 +13605,12 @@ packages: - encoding dev: true - /@lerna/global-options/5.6.2: + /@lerna/global-options@5.6.2: resolution: {integrity: sha512-kaKELURXTlczthNJskdOvh6GGMyt24qat0xMoJZ8plYMdofJfhz24h1OFcvB/EwCUwP/XV1+ohE5P+vdktbrEg==} engines: {node: ^14.15.0 || >=16.0.0} dev: true - /@lerna/has-npm-version/5.6.2: + /@lerna/has-npm-version@5.6.2: resolution: {integrity: sha512-kXCnSzffmTWsaK0ol30coyCfO8WH26HFbmJjRBzKv7VGkuAIcB6gX2gqRRgNLLlvI+Yrp+JSlpVNVnu15SEH2g==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -12145,7 +13618,7 @@ packages: semver: 7.5.4 dev: true - /@lerna/import/5.6.2: + /@lerna/import@5.6.2: resolution: {integrity: sha512-xQUE49mtcP0z3KUdXBsyvp8rGDz6phuYUoQbhcFRJ7WPcQKzMvtm0XYrER6c2YWEX7QOuDac6tU82P8zTrTBaA==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -12159,7 +13632,7 @@ packages: p-map-series: 2.1.0 dev: true - /@lerna/info/5.6.2: + /@lerna/info@5.6.2: resolution: {integrity: sha512-MPjY5Olj+fiZHgfEdwXUFRKamdEuLr9Ob/qut8JsB/oQSQ4ALdQfnrOcMT8lJIcC2R67EA5yav2lHPBIkezm8A==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -12168,7 +13641,7 @@ packages: envinfo: 7.8.1 dev: true - /@lerna/init/5.6.2: + /@lerna/init@5.6.2: resolution: {integrity: sha512-ahU3/lgF+J8kdJAQysihFJROHthkIDXfHmvhw7AYnzf94HjxGNXj7nz6i3At1/dM/1nQhR+4/uNR1/OU4tTYYQ==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -12180,7 +13653,7 @@ packages: write-json-file: 4.3.0 dev: true - /@lerna/link/5.6.2: + /@lerna/link@5.6.2: resolution: {integrity: sha512-hXxQ4R3z6rUF1v2x62oIzLyeHL96u7ZBhxqYMJrm763D1VMSDcHKF9CjJfc6J9vH5Z2ZbL6CQg50Hw5mUpJbjg==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -12192,7 +13665,7 @@ packages: slash: 3.0.0 dev: true - /@lerna/list/5.6.2: + /@lerna/list@5.6.2: resolution: {integrity: sha512-WjE5O2tQ3TcS+8LqXUaxi0YdldhxUhNihT5+Gg4vzGdIlrPDioO50Zjo9d8jOU7i3LMIk6EzCma0sZr2CVfEGg==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -12202,7 +13675,7 @@ packages: '@lerna/output': 5.6.2 dev: true - /@lerna/listable/5.6.2: + /@lerna/listable@5.6.2: resolution: {integrity: sha512-8Yp49BwkY/5XqVru38Zko+6Wj/sgbwzJfIGEPy3Qu575r1NA/b9eI1gX22aMsEeXUeGOybR7nWT5ewnPQHjqvA==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -12211,7 +13684,7 @@ packages: columnify: 1.6.0 dev: true - /@lerna/log-packed/5.6.2: + /@lerna/log-packed@5.6.2: resolution: {integrity: sha512-O9GODG7tMtWk+2fufn2MOkIDBYMRoKBhYMHshO5Aw/VIsH76DIxpX1koMzWfUngM/C70R4uNAKcVWineX4qzIw==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -12221,7 +13694,7 @@ packages: npmlog: 6.0.2 dev: true - /@lerna/npm-conf/5.6.2: + /@lerna/npm-conf@5.6.2: resolution: {integrity: sha512-gWDPhw1wjXYXphk/PAghTLexO5T6abVFhXb+KOMCeem366mY0F5bM88PiorL73aErTNUoR8n+V4X29NTZzDZpQ==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -12229,7 +13702,7 @@ packages: pify: 5.0.0 dev: true - /@lerna/npm-dist-tag/5.6.2: + /@lerna/npm-dist-tag@5.6.2: resolution: {integrity: sha512-t2RmxV6Eog4acXkUI+EzWuYVbeVVY139pANIWS9qtdajfgp4GVXZi1S8mAIb70yeHdNpCp1mhK0xpCrFH9LvGQ==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -12242,7 +13715,7 @@ packages: - supports-color dev: true - /@lerna/npm-install/5.6.2: + /@lerna/npm-install@5.6.2: resolution: {integrity: sha512-AT226zdEo+uGENd37jwYgdALKJAIJK4pNOfmXWZWzVb9oMOr8I2YSjPYvSYUNG7gOo2YJQU8x5Zd7OShv2924Q==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -12255,7 +13728,7 @@ packages: write-pkg: 4.0.0 dev: true - /@lerna/npm-publish/5.6.2: + /@lerna/npm-publish@5.6.2: resolution: {integrity: sha512-ldSyewCfv9fAeC5xNjL0HKGSUxcC048EJoe/B+KRUmd+IPidvZxMEzRu08lSC/q3V9YeUv9ZvRnxATXOM8CffA==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -12272,7 +13745,7 @@ packages: - supports-color dev: true - /@lerna/npm-run-script/5.6.2: + /@lerna/npm-run-script@5.6.2: resolution: {integrity: sha512-MOQoWNcAyJivM8SYp0zELM7vg/Dj07j4YMdxZkey+S1UO0T4/vKBxb575o16hH4WeNzC3Pd7WBlb7C8dLOfNwQ==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -12281,21 +13754,21 @@ packages: npmlog: 6.0.2 dev: true - /@lerna/otplease/5.6.2: + /@lerna/otplease@5.6.2: resolution: {integrity: sha512-dGS4lzkEQVTMAgji82jp8RK6UK32wlzrBAO4P4iiVHCUTuwNLsY9oeBXvVXSMrosJnl6Hbe0NOvi43mqSucGoA==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: '@lerna/prompt': 5.6.2 dev: true - /@lerna/output/5.6.2: + /@lerna/output@5.6.2: resolution: {integrity: sha512-++d+bfOQwY66yo7q1XuAvRcqtRHCG45e/awP5xQomTZ6R1rhWiZ3whWdc9Z6lF7+UtBB9toSYYffKU/xc3L0yQ==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: npmlog: 6.0.2 dev: true - /@lerna/pack-directory/5.6.2: + /@lerna/pack-directory@5.6.2: resolution: {integrity: sha512-w5Jk5fo+HkN4Le7WMOudTcmAymcf0xPd302TqAQncjXpk0cb8tZbj+5bbNHsGb58GRjOIm5icQbHXooQUxbHhA==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -12311,7 +13784,7 @@ packages: - supports-color dev: true - /@lerna/package-graph/5.6.2: + /@lerna/package-graph@5.6.2: resolution: {integrity: sha512-TmL61qBBvA3Tc4qICDirZzdFFwWOA6qicIXUruLiE2PblRowRmCO1bKrrP6XbDOspzwrkPef6N2F2/5gHQAnkQ==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -12322,7 +13795,7 @@ packages: semver: 7.5.4 dev: true - /@lerna/package/5.6.2: + /@lerna/package@5.6.2: resolution: {integrity: sha512-LaOC8moyM5J9WnRiWZkedjOninSclBOJyPqhif6mHb2kCFX6jAroNYzE8KM4cphu8CunHuhI6Ixzswtv+Dultw==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -12331,14 +13804,14 @@ packages: write-pkg: 4.0.0 dev: true - /@lerna/prerelease-id-from-version/5.6.2: + /@lerna/prerelease-id-from-version@5.6.2: resolution: {integrity: sha512-7gIm9fecWFVNy2kpj/KbH11bRcpyANAwpsft3X5m6J7y7A6FTUscCbEvl3ZNdpQKHNuvnHgCtkm3A5PMSCEgkA==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: semver: 7.5.4 dev: true - /@lerna/profiler/5.6.2: + /@lerna/profiler@5.6.2: resolution: {integrity: sha512-okwkagP5zyRIOYTceu/9/esW7UZFt7lyL6q6ZgpSG3TYC5Ay+FXLtS6Xiha/FQdVdumFqKULDWTGovzUlxcwaw==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -12347,7 +13820,7 @@ packages: upath: 2.0.1 dev: true - /@lerna/project/5.6.2: + /@lerna/project@5.6.2: resolution: {integrity: sha512-kPIMcIy/0DVWM91FPMMFmXyAnCuuLm3NdhnA8NusE//VuY9wC6QC/3OwuCY39b2dbko/fPZheqKeAZkkMH6sGg==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -12366,7 +13839,7 @@ packages: write-json-file: 4.3.0 dev: true - /@lerna/prompt/5.6.2: + /@lerna/prompt@5.6.2: resolution: {integrity: sha512-4hTNmVYADEr0GJTMegWV+GW6n+dzKx1vN9v2ISqyle283Myv930WxuyO0PeYGqTrkneJsyPreCMovuEGCvZ0iQ==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -12374,7 +13847,7 @@ packages: npmlog: 6.0.2 dev: true - /@lerna/publish/5.6.2_nx@15.9.2: + /@lerna/publish@5.6.2(nx@15.9.2): resolution: {integrity: sha512-QaW0GjMJMuWlRNjeDCjmY/vjriGSWgkLS23yu8VKNtV5U3dt5yIKA3DNGV3HgZACuu45kQxzMDsfLzgzbGNtYA==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -12396,7 +13869,7 @@ packages: '@lerna/run-lifecycle': 5.6.2 '@lerna/run-topologically': 5.6.2 '@lerna/validation-error': 5.6.2 - '@lerna/version': 5.6.2_nx@15.9.2 + '@lerna/version': 5.6.2(nx@15.9.2) fs-extra: 9.1.0 libnpmaccess: 6.0.4 npm-package-arg: 8.1.1 @@ -12413,21 +13886,21 @@ packages: - supports-color dev: true - /@lerna/pulse-till-done/5.6.2: + /@lerna/pulse-till-done@5.6.2: resolution: {integrity: sha512-eA/X1RCxU5YGMNZmbgPi+Kyfx1Q3bn4P9jo/LZy+/NRRr1po3ASXP2GJZ1auBh/9A2ELDvvKTOXCVHqczKC6rA==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: npmlog: 6.0.2 dev: true - /@lerna/query-graph/5.6.2: + /@lerna/query-graph@5.6.2: resolution: {integrity: sha512-KRngr96yBP8XYDi9/U62fnGO+ZXqm04Qk6a2HtoTr/ha8QvO1s7Tgm0xs/G7qWXDQHZgunWIbmK/LhxM7eFQrw==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: '@lerna/package-graph': 5.6.2 dev: true - /@lerna/resolve-symlink/5.6.2: + /@lerna/resolve-symlink@5.6.2: resolution: {integrity: sha512-PDQy+7M8JEFtwIVHJgWvSxHkxJf9zXCENkvIWDB+SsoDPhw9+caewt46bTeP5iGm9pOMu3oZukaWo/TvF7sNjg==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -12436,7 +13909,7 @@ packages: read-cmd-shim: 3.0.1 dev: true - /@lerna/rimraf-dir/5.6.2: + /@lerna/rimraf-dir@5.6.2: resolution: {integrity: sha512-jgEfzz7uBUiQKteq3G8MtJiA2D2VoKmZSSY3VSiW/tPOSXYxxSHxEsClQdCeNa6+sYrDNDT8fP6MJ3lPLjDeLA==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -12446,7 +13919,7 @@ packages: rimraf: 3.0.2 dev: true - /@lerna/run-lifecycle/5.6.2: + /@lerna/run-lifecycle@5.6.2: resolution: {integrity: sha512-u9gGgq/50Fm8dvfcc/TSHOCAQvzLD7poVanDMhHYWOAqRDnellJEEmA1K/Yka4vZmySrzluahkry9G6jcREt+g==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -12459,7 +13932,7 @@ packages: - supports-color dev: true - /@lerna/run-topologically/5.6.2: + /@lerna/run-topologically@5.6.2: resolution: {integrity: sha512-QQ/jGOIsVvUg3izShWsd67RlWYh9UOH2yw97Ol1zySX9+JspCMVQrn9eKq1Pk8twQOFhT87LpT/aaxbTBgREPw==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -12467,7 +13940,7 @@ packages: p-queue: 6.6.2 dev: true - /@lerna/run/5.6.2: + /@lerna/run@5.6.2: resolution: {integrity: sha512-c2kJxdFrNg5KOkrhmgwKKUOsfSrGNlFCe26EttufOJ3xfY0VnXlEw9rHOkTgwtu7969rfCdyaVP1qckMrF1Dgw==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -12483,7 +13956,7 @@ packages: p-map: 4.0.0 dev: true - /@lerna/symlink-binary/5.6.2: + /@lerna/symlink-binary@5.6.2: resolution: {integrity: sha512-Cth+miwYyO81WAmrQbPBrLHuF+F0UUc0el5kRXLH6j5zzaRS3kMM68r40M7MmfH8m3GPi7691UARoWFEotW5jw==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -12493,7 +13966,7 @@ packages: p-map: 4.0.0 dev: true - /@lerna/symlink-dependencies/5.6.2: + /@lerna/symlink-dependencies@5.6.2: resolution: {integrity: sha512-dUVNQLEcjVOIQiT9OlSAKt0ykjyJPy8l9i4NJDe2/0XYaUjo8PWsxJ0vrutz27jzi2aZUy07ASmowQZEmnLHAw==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -12505,7 +13978,7 @@ packages: p-map-series: 2.1.0 dev: true - /@lerna/temp-write/5.6.2: + /@lerna/temp-write@5.6.2: resolution: {integrity: sha512-S5ZNVTurSwWBmc9kh5alfSjmO3+BnRT6shYtOlmVIUYqWeYVYA5C1Htj322bbU4CSNCMFK6NQl4qGKL17HMuig==} dependencies: graceful-fs: 4.2.11 @@ -12515,19 +13988,19 @@ packages: uuid: 8.3.2 dev: true - /@lerna/timer/5.6.2: + /@lerna/timer@5.6.2: resolution: {integrity: sha512-AjMOiLc2B+5Nzdd9hNORetAdZ/WK8YNGX/+2ypzM68TMAPfIT5C40hMlSva9Yg4RsBz22REopXgM5s2zQd5ZQA==} engines: {node: ^14.15.0 || >=16.0.0} dev: true - /@lerna/validation-error/5.6.2: + /@lerna/validation-error@5.6.2: resolution: {integrity: sha512-4WlDUHaa+RSJNyJRtX3gVIAPVzjZD2tle8AJ0ZYBfdZnZmG0VlB2pD1FIbOQPK8sY2h5m0cHLRvfLoLncqHvdQ==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: npmlog: 6.0.2 dev: true - /@lerna/version/5.6.2_nx@15.9.2: + /@lerna/version@5.6.2(nx@15.9.2): resolution: {integrity: sha512-odNSR2rTbHW++xMZSQKu/F6Syrd/sUvwDLPaMKktoOSPKmycHt/eWcuQQyACdtc43Iqeu4uQd7PCLsniqOVFrw==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -12545,7 +14018,7 @@ packages: '@lerna/run-topologically': 5.6.2 '@lerna/temp-write': 5.6.2 '@lerna/validation-error': 5.6.2 - '@nrwl/devkit': 15.9.4_nx@15.9.2 + '@nrwl/devkit': 15.9.4(nx@15.9.2) chalk: 4.1.2 dedent: 0.7.0 load-json-file: 6.2.0 @@ -12565,7 +14038,7 @@ packages: - supports-color dev: true - /@lerna/write-log-file/5.6.2: + /@lerna/write-log-file@5.6.2: resolution: {integrity: sha512-J09l18QnWQ3sXIRwuJkjXY3+KwPR2uO5NgbZGE3GXJK1V/LzOBRMvjGAIbuQHXw25uqe7vpLUpB8drtnFrubCQ==} engines: {node: ^14.15.0 || >=16.0.0} dependencies: @@ -12573,18 +14046,18 @@ packages: write-file-atomic: 4.0.2 dev: true - /@lukeed/csprng/1.1.0: + /@lukeed/csprng@1.1.0: resolution: {integrity: sha512-Z7C/xXCiGWsg0KuKsHTKJxbWhpI3Vs5GwLfOean7MGyVFGqdRgBbAjOCh6u4bbjPc/8MJ2pZmK/0DLdCbivLDA==} engines: {node: '>=8'} - /@lukeed/uuid/2.0.1: + /@lukeed/uuid@2.0.1: resolution: {integrity: sha512-qC72D4+CDdjGqJvkFMMEAtancHUQ7/d/tAiHf64z8MopFDmcrtbcJuerDtFceuAfQJ2pDSfCKCtbqoGBNnwg0w==} engines: {node: '>=8'} dependencies: '@lukeed/csprng': 1.1.0 dev: false - /@mailchimp/mailchimp_transactional/1.0.50: + /@mailchimp/mailchimp_transactional@1.0.50: resolution: {integrity: sha512-SaNFseFPSDQlOYM9JTyYY6wauMu6qJ8eExo+jssFyb20ZaVvxKX1eTb3Gm5aW/4aWuxn6nofU+02sCk51//wdw==} engines: {node: '>=10.0.0'} dependencies: @@ -12593,47 +14066,47 @@ packages: - debug dev: false - /@mantine/core/4.2.12_tv5js7grk5cznt6qhc6q2krogq: + /@mantine/core@4.2.12(@babel/core@7.22.11)(@mantine/hooks@4.2.12)(@types/react@17.0.62)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-PZcVUvcSZiZmLR1moKBJFdFIh6a4C+TE2ao91kzTAlH5Qb8t/V3ONbfPk3swHoYr7OSLJQM8vZ7UD5sFDiq0/g==} peerDependencies: '@mantine/hooks': 4.2.12 react: '>=16.8.0' react-dom: '>=16.8.0' dependencies: - '@mantine/hooks': 4.2.12_react@17.0.2 - '@mantine/styles': 4.2.12_hukmla4mqjksqg6hwric6kcruy + '@mantine/hooks': 4.2.12(react@17.0.2) + '@mantine/styles': 4.2.12(@babel/core@7.22.11)(@types/react@17.0.62)(react-dom@17.0.2)(react@17.0.2) '@popperjs/core': 2.11.7 - '@radix-ui/react-scroll-area': 0.1.4_react@17.0.2 + '@radix-ui/react-scroll-area': 0.1.4(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-popper: 2.3.0_qtrwknhowezr6dh25s26nfknpa - react-textarea-autosize: 8.4.1_s55kszw6pq5iqmorlydcdh42pa + react-dom: 17.0.2(react@17.0.2) + react-popper: 2.3.0(@popperjs/core@2.11.7)(react-dom@17.0.2)(react@17.0.2) + react-textarea-autosize: 8.4.1(@types/react@17.0.62)(react@17.0.2) transitivePeerDependencies: - '@babel/core' - '@types/react' dev: false - /@mantine/core/5.10.5_dw37j7nepvponzncdz6mvufjke: + /@mantine/core@5.10.5(@emotion/react@11.10.6)(@mantine/hooks@5.10.5)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-F4tqHSEVM9D6/iSqHfPda+Xl5XgSEPHAAkT01Zwzj4Jnbd10qGrlqr/SFUop2CIcuKYnmra9XltUahUPXBC2BQ==} peerDependencies: '@mantine/hooks': 5.10.5 react: '>=16.8.0' react-dom: '>=16.8.0' dependencies: - '@floating-ui/react': 0.19.2_sfoxds7t5ydpegc3knd667wn6m - '@mantine/hooks': 5.10.5_react@17.0.2 - '@mantine/styles': 5.10.5_wnqqie5qjsmrujys2lfqhfcwxi - '@mantine/utils': 5.10.5_react@17.0.2 - '@radix-ui/react-scroll-area': 1.0.2_sfoxds7t5ydpegc3knd667wn6m + '@floating-ui/react': 0.19.2(react-dom@17.0.2)(react@17.0.2) + '@mantine/hooks': 5.10.5(react@17.0.2) + '@mantine/styles': 5.10.5(@emotion/react@11.10.6)(react-dom@17.0.2)(react@17.0.2) + '@mantine/utils': 5.10.5(react@17.0.2) + '@radix-ui/react-scroll-area': 1.0.2(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-textarea-autosize: 8.3.4_h7fc2el62uaa77gho3xhys6ola + react-dom: 17.0.2(react@17.0.2) + react-textarea-autosize: 8.3.4(@types/react@17.0.53)(react@17.0.2) transitivePeerDependencies: - '@emotion/react' - '@types/react' dev: false - /@mantine/dropzone/5.10.5_uqcojzsz4iurdloxre3kx4xxdq: + /@mantine/dropzone@5.10.5(@mantine/core@5.10.5)(@mantine/hooks@5.10.5)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-tBPBuQvlvesEApECTfmYFQXbS26sAQo8VaYIebTqBy9VIUoVAM9VCKHBLqa3KMKtq+/HjKCJpaa8+Cjn9riqqQ==} peerDependencies: '@mantine/core': 5.10.5 @@ -12641,15 +14114,15 @@ packages: react: '>=16.8.0' react-dom: '>=16.8.0' dependencies: - '@mantine/core': 5.10.5_dw37j7nepvponzncdz6mvufjke - '@mantine/hooks': 5.10.5_react@17.0.2 - '@mantine/utils': 5.10.5_react@17.0.2 + '@mantine/core': 5.10.5(@emotion/react@11.10.6)(@mantine/hooks@5.10.5)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) + '@mantine/hooks': 5.10.5(react@17.0.2) + '@mantine/utils': 5.10.5(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-dropzone: 14.2.3_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) + react-dropzone: 14.2.3(react@17.0.2) dev: false - /@mantine/form/5.10.5_react@17.0.2: + /@mantine/form@5.10.5(react@17.0.2): resolution: {integrity: sha512-0ENh7W/mwbOnIjJlRUoUTZjOtEi7/qoF86k67CVjKqagsA+Wy6cuBF1spPcllMzujepprtqKACb3rVLR+Pxj7Q==} peerDependencies: react: '>=16.8.0' @@ -12659,7 +14132,7 @@ packages: react: 17.0.2 dev: false - /@mantine/hooks/4.2.12_react@17.0.2: + /@mantine/hooks@4.2.12(react@17.0.2): resolution: {integrity: sha512-/2GOsgv1tAUFBXOUV0YBZdDZHj3pHN82Sv1oI/hJMjfIT3ZkGeeiJO8Cw9cBcn76t6caP6Czi3hcuKhjz71O+A==} peerDependencies: react: '>=16.8.0' @@ -12667,7 +14140,7 @@ packages: react: 17.0.2 dev: false - /@mantine/hooks/5.10.5_react@17.0.2: + /@mantine/hooks@5.10.5(react@17.0.2): resolution: {integrity: sha512-hFQp71QZDfivPzfIUOQZfMKLiOL/Cn2EnzacRlbUr55myteTfzYN8YMt+nzniE/6c4IRopFHEAdbKEtfyQc6kg==} peerDependencies: react: '>=16.8.0' @@ -12675,7 +14148,7 @@ packages: react: 17.0.2 dev: false - /@mantine/notifications/5.10.5_uqcojzsz4iurdloxre3kx4xxdq: + /@mantine/notifications@5.10.5(@mantine/core@5.10.5)(@mantine/hooks@5.10.5)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-IzTAXA7Zb9DcI94Mv5O2OinhLmI7fvs/VutDw9uCpp6OHtLuF/XN1d262jrsGhMZT0c4nuUsotSLFZF3GWZwXg==} peerDependencies: '@mantine/core': 5.10.5 @@ -12683,15 +14156,15 @@ packages: react: '>=16.8.0' react-dom: '>=16.8.0' dependencies: - '@mantine/core': 5.10.5_dw37j7nepvponzncdz6mvufjke - '@mantine/hooks': 5.10.5_react@17.0.2 - '@mantine/utils': 5.10.5_react@17.0.2 + '@mantine/core': 5.10.5(@emotion/react@11.10.6)(@mantine/hooks@5.10.5)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) + '@mantine/hooks': 5.10.5(react@17.0.2) + '@mantine/utils': 5.10.5(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-transition-group: 4.4.2_sfoxds7t5ydpegc3knd667wn6m + react-dom: 17.0.2(react@17.0.2) + react-transition-group: 4.4.2(react-dom@17.0.2)(react@17.0.2) dev: false - /@mantine/prism/5.10.5_uqcojzsz4iurdloxre3kx4xxdq: + /@mantine/prism@5.10.5(@mantine/core@5.10.5)(@mantine/hooks@5.10.5)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-xwe3RE6wg0/KuCBH/MTTQIOltBLTELSfUzHa5/66q4aPdgRPnbzOVxiH/ytndDuqJd8MKpyo25M+3nPAtq2O4A==} peerDependencies: '@mantine/core': 5.10.5 @@ -12699,15 +14172,15 @@ packages: react: '>=16.8.0' react-dom: '>=16.8.0' dependencies: - '@mantine/core': 5.10.5_dw37j7nepvponzncdz6mvufjke - '@mantine/hooks': 5.10.5_react@17.0.2 - '@mantine/utils': 5.10.5_react@17.0.2 - prism-react-renderer: 1.3.5_react@17.0.2 + '@mantine/core': 5.10.5(@emotion/react@11.10.6)(@mantine/hooks@5.10.5)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) + '@mantine/hooks': 5.10.5(react@17.0.2) + '@mantine/utils': 5.10.5(react@17.0.2) + prism-react-renderer: 1.3.5(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /@mantine/spotlight/5.10.5_uqcojzsz4iurdloxre3kx4xxdq: + /@mantine/spotlight@5.10.5(@mantine/core@5.10.5)(@mantine/hooks@5.10.5)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-OQkuHxswrapRPcKDVSjE3li9oYYMq1Nwg2zlZzHlpzP7oW1qUhbDIVRc1dOzuT+IO7ifY/zeSuYknli7T29pDA==} peerDependencies: '@mantine/core': 5.10.5 @@ -12715,47 +14188,47 @@ packages: react: '>=16.8.0' react-dom: '>=16.8.0' dependencies: - '@mantine/core': 5.10.5_dw37j7nepvponzncdz6mvufjke - '@mantine/hooks': 5.10.5_react@17.0.2 - '@mantine/utils': 5.10.5_react@17.0.2 + '@mantine/core': 5.10.5(@emotion/react@11.10.6)(@mantine/hooks@5.10.5)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) + '@mantine/hooks': 5.10.5(react@17.0.2) + '@mantine/utils': 5.10.5(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /@mantine/styles/4.2.12_hukmla4mqjksqg6hwric6kcruy: + /@mantine/styles@4.2.12(@babel/core@7.22.11)(@types/react@17.0.62)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-9q1DzW0UNW/ORMGLHfN2XABOSEm0ZQebhNlLD757R6OQouoLuUf9elUwgGOXSyogMlsAYoy84XbJ3ZbbTm4YCA==} peerDependencies: react: '>=16.8.0' react-dom: '>=16.8.0' dependencies: '@emotion/cache': 11.7.1 - '@emotion/react': 11.7.1_e4lj5fgxkgbvbddcv7symwbfbi + '@emotion/react': 11.7.1(@babel/core@7.22.11)(@types/react@17.0.62)(react@17.0.2) '@emotion/serialize': 1.0.2 '@emotion/utils': 1.0.0 clsx: 1.2.1 csstype: 3.0.9 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) transitivePeerDependencies: - '@babel/core' - '@types/react' dev: false - /@mantine/styles/5.10.5_wnqqie5qjsmrujys2lfqhfcwxi: + /@mantine/styles@5.10.5(@emotion/react@11.10.6)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-0NXk8c/XGzuTUkZc6KceF2NaTCMEu5mHR4ru0x+ttb9DGnLpHuGWduTHjSfr4hl6eAJgedD0zauO+VAhDzO9zA==} peerDependencies: '@emotion/react': '>=11.9.0' react: '>=16.8.0' react-dom: '>=16.8.0' dependencies: - '@emotion/react': 11.10.6_h7fc2el62uaa77gho3xhys6ola + '@emotion/react': 11.10.6(@types/react@17.0.53)(react@17.0.2) clsx: 1.1.1 csstype: 3.0.9 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /@mantine/utils/5.10.5_react@17.0.2: + /@mantine/utils@5.10.5(react@17.0.2): resolution: {integrity: sha512-FGMq4dGs5HhDAtI0z46uzxzKKPmZ3h5uKUyKg1ZHoFR1mBtcUMbB6FylFmHqKFRWlJ5IXqX9dwmiVrLYUOfTmA==} peerDependencies: react: '>=16.8.0' @@ -12763,7 +14236,7 @@ packages: react: 17.0.2 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: @@ -12781,7 +14254,7 @@ packages: - supports-color dev: false - /@mdx-js/react/2.3.0_react@17.0.2: + /@mdx-js/react@2.3.0(react@17.0.2): resolution: {integrity: sha512-zQH//gdOmuu7nt2oJR29vFhDv88oGPmVw6BggmrHeMI+xgEkp1B2dX9/bMBSYtK0dyLX/aOmesKS09g222K1/g==} peerDependencies: react: '>=16' @@ -12790,7 +14263,7 @@ packages: '@types/react': 17.0.62 react: 17.0.2 - /@mongodb-js/saslprep/1.1.0: + /@mongodb-js/saslprep@1.1.0: resolution: {integrity: sha512-Xfijy7HvfzzqiOAhAepF4SGN5e9leLkMvg/OPOF97XemjfVCYN/oWa75wnkc6mltMSTwY+XlbhWgUOJmkFspSw==} requiresBuild: true dependencies: @@ -12798,7 +14271,7 @@ packages: dev: false optional: true - /@msgpackr-extract/msgpackr-extract-darwin-arm64/3.0.2: + /@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.2: resolution: {integrity: sha512-9bfjwDxIDWmmOKusUcqdS4Rw+SETlp9Dy39Xui9BEGEk19dDwH0jhipwFzEff/pFg95NKymc6TOTbRKcWeRqyQ==} cpu: [arm64] os: [darwin] @@ -12806,7 +14279,7 @@ packages: dev: false optional: true - /@msgpackr-extract/msgpackr-extract-darwin-x64/3.0.2: + /@msgpackr-extract/msgpackr-extract-darwin-x64@3.0.2: resolution: {integrity: sha512-lwriRAHm1Yg4iDf23Oxm9n/t5Zpw1lVnxYU3HnJPTi2lJRkKTrps1KVgvL6m7WvmhYVt/FIsssWay+k45QHeuw==} cpu: [x64] os: [darwin] @@ -12814,23 +14287,23 @@ packages: dev: false optional: true - /@msgpackr-extract/msgpackr-extract-linux-arm/3.0.2: - resolution: {integrity: sha512-MOI9Dlfrpi2Cuc7i5dXdxPbFIgbDBGgKR5F2yWEa6FVEtSWncfVNKW5AKjImAQ6CZlBK9tympdsZJ2xThBiWWA==} - cpu: [arm] + /@msgpackr-extract/msgpackr-extract-linux-arm64@3.0.2: + resolution: {integrity: sha512-FU20Bo66/f7He9Fp9sP2zaJ1Q8L9uLPZQDub/WlUip78JlPeMbVL8546HbZfcW9LNciEXc8d+tThSJjSC+tmsg==} + cpu: [arm64] os: [linux] requiresBuild: true dev: false optional: true - /@msgpackr-extract/msgpackr-extract-linux-arm64/3.0.2: - resolution: {integrity: sha512-FU20Bo66/f7He9Fp9sP2zaJ1Q8L9uLPZQDub/WlUip78JlPeMbVL8546HbZfcW9LNciEXc8d+tThSJjSC+tmsg==} - cpu: [arm64] + /@msgpackr-extract/msgpackr-extract-linux-arm@3.0.2: + resolution: {integrity: sha512-MOI9Dlfrpi2Cuc7i5dXdxPbFIgbDBGgKR5F2yWEa6FVEtSWncfVNKW5AKjImAQ6CZlBK9tympdsZJ2xThBiWWA==} + cpu: [arm] os: [linux] requiresBuild: true dev: false optional: true - /@msgpackr-extract/msgpackr-extract-linux-x64/3.0.2: + /@msgpackr-extract/msgpackr-extract-linux-x64@3.0.2: resolution: {integrity: sha512-gsWNDCklNy7Ajk0vBBf9jEx04RUxuDQfBse918Ww+Qb9HCPoGzS+XJTLe96iN3BVK7grnLiYghP/M4L8VsaHeA==} cpu: [x64] os: [linux] @@ -12838,7 +14311,7 @@ packages: dev: false optional: true - /@msgpackr-extract/msgpackr-extract-win32-x64/3.0.2: + /@msgpackr-extract/msgpackr-extract-win32-x64@3.0.2: resolution: {integrity: sha512-O+6Gs8UeDbyFpbSh2CPEz/UOrrdWPTBYNblZK5CxxLisYt4kGX3Sc+czffFonyjiGSq3jWLwJS/CCJc7tBr4sQ==} cpu: [x64] os: [win32] @@ -12846,7 +14319,7 @@ packages: dev: false optional: true - /@ndelangen/get-tarball/3.0.9: + /@ndelangen/get-tarball@3.0.9: resolution: {integrity: sha512-9JKTEik4vq+yGosHYhZ1tiH/3WpUS0Nh0kej4Agndhox8pAdWhEx5knFVRcb/ya9knCRCs1rPxNrSXTDdfVqpA==} dependencies: gunzip-maybe: 1.4.2 @@ -12854,7 +14327,7 @@ packages: tar-fs: 2.1.1 dev: true - /@nestjs/axios/2.0.0_qwvj576sbz4hzeal5kp76dqnsi: + /@nestjs/axios@2.0.0(@nestjs/common@10.2.2)(axios@1.3.5)(reflect-metadata@0.1.13)(rxjs@7.8.1): resolution: {integrity: sha512-F6oceoQLEn031uun8NiommeMkRIojQqVryxQy/mK7fx0CI0KbgkJL3SloCQcsOD+agoEnqKJKXZpEvL6FNswJg==} peerDependencies: '@nestjs/common': ^7.0.0 || ^8.0.0 || ^9.0.0 @@ -12862,13 +14335,13 @@ packages: reflect-metadata: ^0.1.12 rxjs: ^6.0.0 || ^7.0.0 dependencies: - '@nestjs/common': 10.2.2_j3td4gnlgk75ora6o6suo62byy + '@nestjs/common': 10.2.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.1.13)(rxjs@7.8.1) axios: 1.3.5 reflect-metadata: 0.1.13 rxjs: 7.8.1 dev: false - /@nestjs/cli/10.1.16: + /@nestjs/cli@10.1.16(@swc/core@1.3.49): resolution: {integrity: sha512-nZ9vs7D0BMOW9XrN7hN7BJl2Z0s+CRFwhDPVmJP2lc50mDsAcnWDLFuttupPc/AknO570Xqoxf1Q2cQ5YSgjpA==} engines: {node: '>= 16'} hasBin: true @@ -12881,15 +14354,16 @@ packages: '@swc/core': optional: true dependencies: - '@angular-devkit/core': 16.2.0_chokidar@3.5.3 - '@angular-devkit/schematics': 16.2.0_chokidar@3.5.3 - '@angular-devkit/schematics-cli': 16.2.0_chokidar@3.5.3 - '@nestjs/schematics': 10.0.2_agrgdhceu4ykhvsul7qhqysi6e + '@angular-devkit/core': 16.2.0(chokidar@3.5.3) + '@angular-devkit/schematics': 16.2.0(chokidar@3.5.3) + '@angular-devkit/schematics-cli': 16.2.0(chokidar@3.5.3) + '@nestjs/schematics': 10.0.2(chokidar@3.5.3)(typescript@5.1.6) + '@swc/core': 1.3.49 chalk: 4.1.2 chokidar: 3.5.3 cli-table3: 0.6.3 commander: 4.1.1 - fork-ts-checker-webpack-plugin: 8.0.0_wlox7xpecxj4rvkt6b6o7frtlu + fork-ts-checker-webpack-plugin: 8.0.0(typescript@5.1.6)(webpack@5.88.2) inquirer: 8.2.6 node-emoji: 1.11.0 ora: 5.4.1 @@ -12901,7 +14375,7 @@ packages: tsconfig-paths: 4.2.0 tsconfig-paths-webpack-plugin: 4.1.0 typescript: 5.1.6 - webpack: 5.88.2 + webpack: 5.88.2(@swc/core@1.3.49) webpack-node-externals: 3.0.0 transitivePeerDependencies: - esbuild @@ -12909,7 +14383,7 @@ packages: - webpack-cli dev: true - /@nestjs/common/10.2.2_j3td4gnlgk75ora6o6suo62byy: + /@nestjs/common@10.2.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.1.13)(rxjs@7.8.1): resolution: {integrity: sha512-TCOJK2K4FDT3GxFfURjngnjBewS/hizKNFSLBXtX4TTQm0dVQOtESnnVdP14sEiPM6suuWlrGnXW9UDqItGWiQ==} peerDependencies: class-transformer: '*' @@ -12930,7 +14404,7 @@ packages: tslib: 2.6.2 uid: 2.0.2 - /@nestjs/common/8.4.7_atc7tu2sld2m3nk4hmwkqn6qde: + /@nestjs/common@8.4.7(reflect-metadata@0.1.13)(rxjs@7.8.1): resolution: {integrity: sha512-m/YsbcBal+gA5CFrDpqXqsSfylo+DIQrkFY3qhVIltsYRfu8ct8J9pqsTO6OPf3mvqdOpFGrV5sBjoyAzOBvsw==} peerDependencies: cache-manager: '*' @@ -12956,40 +14430,7 @@ packages: - debug dev: false - /@nestjs/core/10.2.2_citrzyslfkhhdbz2asyi4zrkay: - resolution: {integrity: sha512-444gApiDCV63Gq7a3WgboNEPBYZt/UcozRhOKEl5FTAXWrZbDoz48e8RXOCFzST1Py0HKUnharMtpb28l7zgJw==} - requiresBuild: true - peerDependencies: - '@nestjs/common': ^10.0.0 - '@nestjs/microservices': ^10.0.0 - '@nestjs/platform-express': ^10.0.0 - '@nestjs/websockets': ^10.0.0 - reflect-metadata: ^0.1.12 - rxjs: ^7.1.0 - peerDependenciesMeta: - '@nestjs/microservices': - optional: true - '@nestjs/platform-express': - optional: true - '@nestjs/websockets': - optional: true - dependencies: - '@nestjs/common': 10.2.2_j3td4gnlgk75ora6o6suo62byy - '@nestjs/platform-express': 10.2.2_h33h3l6i5mruhsbo3bha6vy2fi - '@nestjs/websockets': 10.2.2_k2whfst7erenivdtupi63u2ejy - '@nuxtjs/opencollective': 0.3.2 - fast-safe-stringify: 2.1.1 - iterare: 1.2.1 - path-to-regexp: 3.2.0 - reflect-metadata: 0.1.13 - rxjs: 7.8.1 - tslib: 2.6.2 - uid: 2.0.2 - transitivePeerDependencies: - - encoding - dev: false - - /@nestjs/core/10.2.2_hvzojgbgemkkg4y2oz5vs6hq4y: + /@nestjs/core@10.2.2(@nestjs/common@10.2.2)(@nestjs/platform-express@10.2.2)(@nestjs/websockets@10.2.2)(reflect-metadata@0.1.13)(rxjs@7.8.1): resolution: {integrity: sha512-444gApiDCV63Gq7a3WgboNEPBYZt/UcozRhOKEl5FTAXWrZbDoz48e8RXOCFzST1Py0HKUnharMtpb28l7zgJw==} requiresBuild: true peerDependencies: @@ -13007,7 +14448,9 @@ packages: '@nestjs/websockets': optional: true dependencies: - '@nestjs/common': 10.2.2_j3td4gnlgk75ora6o6suo62byy + '@nestjs/common': 10.2.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/platform-express': 10.2.2(@nestjs/common@10.2.2)(@nestjs/core@10.2.2) + '@nestjs/websockets': 10.2.2(@nestjs/common@10.2.2)(@nestjs/core@10.2.2)(@nestjs/platform-socket.io@10.2.2)(reflect-metadata@0.1.13)(rxjs@7.8.1) '@nuxtjs/opencollective': 0.3.2 fast-safe-stringify: 2.1.1 iterare: 1.2.1 @@ -13018,40 +14461,8 @@ packages: uid: 2.0.2 transitivePeerDependencies: - encoding - dev: false - /@nestjs/core/10.2.2_v4fpnjri37dvafci5vzkvgo4ne: - resolution: {integrity: sha512-444gApiDCV63Gq7a3WgboNEPBYZt/UcozRhOKEl5FTAXWrZbDoz48e8RXOCFzST1Py0HKUnharMtpb28l7zgJw==} - requiresBuild: true - peerDependencies: - '@nestjs/common': ^10.0.0 - '@nestjs/microservices': ^10.0.0 - '@nestjs/platform-express': ^10.0.0 - '@nestjs/websockets': ^10.0.0 - reflect-metadata: ^0.1.12 - rxjs: ^7.1.0 - peerDependenciesMeta: - '@nestjs/microservices': - optional: true - '@nestjs/platform-express': - optional: true - '@nestjs/websockets': - optional: true - dependencies: - '@nestjs/common': 10.2.2_j3td4gnlgk75ora6o6suo62byy - '@nestjs/platform-express': 10.2.2_h33h3l6i5mruhsbo3bha6vy2fi - '@nuxtjs/opencollective': 0.3.2 - fast-safe-stringify: 2.1.1 - iterare: 1.2.1 - path-to-regexp: 3.2.0 - reflect-metadata: 0.1.13 - rxjs: 7.8.1 - tslib: 2.6.2 - uid: 2.0.2 - transitivePeerDependencies: - - encoding - - /@nestjs/graphql/12.0.8_vwvzqo7zbf7canbr2urjqmzihy: + /@nestjs/graphql@12.0.8(@nestjs/common@10.2.2)(@nestjs/core@10.2.2)(class-transformer@0.5.1)(class-validator@0.14.0)(graphql@16.8.0)(reflect-metadata@0.1.13): resolution: {integrity: sha512-odYDHUdLOMCxjC5VSEmF/23r8cY40N1KCwBkWaCmI1IF76Ffe3srWRDv8HS9tcai9eSmOeSWuyLBEg2OSru0cQ==} requiresBuild: true peerDependencies: @@ -13073,23 +14484,23 @@ packages: ts-morph: optional: true dependencies: - '@graphql-tools/merge': 9.0.0_graphql@16.8.0 - '@graphql-tools/schema': 10.0.0_graphql@16.8.0 - '@graphql-tools/utils': 10.0.1_graphql@16.8.0 - '@nestjs/common': 10.2.2_j3td4gnlgk75ora6o6suo62byy - '@nestjs/core': 10.2.2_v4fpnjri37dvafci5vzkvgo4ne - '@nestjs/mapped-types': 2.0.2_vsggjsjyhy2zmnh2hlgw6jrjhe + '@graphql-tools/merge': 9.0.0(graphql@16.8.0) + '@graphql-tools/schema': 10.0.0(graphql@16.8.0) + '@graphql-tools/utils': 10.0.1(graphql@16.8.0) + '@nestjs/common': 10.2.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/core': 10.2.2(@nestjs/common@10.2.2)(@nestjs/platform-express@10.2.2)(@nestjs/websockets@10.2.2)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/mapped-types': 2.0.2(@nestjs/common@10.2.2)(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.1.13) chokidar: 3.5.3 class-transformer: 0.5.1 class-validator: 0.14.0 fast-glob: 3.2.12 graphql: 16.8.0 - graphql-tag: 2.12.6_graphql@16.8.0 - graphql-ws: 5.14.0_graphql@16.8.0 + graphql-tag: 2.12.6(graphql@16.8.0) + graphql-ws: 5.14.0(graphql@16.8.0) lodash: 4.17.21 normalize-path: 3.0.0 reflect-metadata: 0.1.13 - subscriptions-transport-ws: 0.11.0_graphql@16.8.0 + subscriptions-transport-ws: 0.11.0(graphql@16.8.0) tslib: 2.6.0 uuid: 9.0.0 ws: 8.13.0 @@ -13099,17 +14510,17 @@ packages: dev: false optional: true - /@nestjs/jwt/10.1.0_@nestjs+common@10.2.2: + /@nestjs/jwt@10.1.0(@nestjs/common@10.2.2): resolution: {integrity: sha512-iLwCGS25ybUxGS7i5j/Mwuyzvp/WxJftHlm8aLEBv5GV92apz6L1QVjxLdZrqXbzo++C8gdJauhzil8qitY+6w==} peerDependencies: '@nestjs/common': ^8.0.0 || ^9.0.0 || ^10.0.0 dependencies: - '@nestjs/common': 10.2.2_j3td4gnlgk75ora6o6suo62byy + '@nestjs/common': 10.2.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.1.13)(rxjs@7.8.1) '@types/jsonwebtoken': 9.0.2 jsonwebtoken: 9.0.0 dev: false - /@nestjs/mapped-types/2.0.2_vsggjsjyhy2zmnh2hlgw6jrjhe: + /@nestjs/mapped-types@2.0.2(@nestjs/common@10.2.2)(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.1.13): resolution: {integrity: sha512-V0izw6tWs6fTp9+KiiPUbGHWALy563Frn8X6Bm87ANLRuE46iuBMD5acKBDP5lKL/75QFvrzSJT7HkCbB0jTpg==} peerDependencies: '@nestjs/common': ^8.0.0 || ^9.0.0 || ^10.0.0 @@ -13122,30 +14533,30 @@ packages: class-validator: optional: true dependencies: - '@nestjs/common': 10.2.2_j3td4gnlgk75ora6o6suo62byy + '@nestjs/common': 10.2.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.1.13)(rxjs@7.8.1) class-transformer: 0.5.1 class-validator: 0.14.0 reflect-metadata: 0.1.13 dev: false - /@nestjs/passport/10.0.1_kn4ljbedllcoqpuu4ifhphsdsu: + /@nestjs/passport@10.0.1(@nestjs/common@10.2.2)(passport@0.6.0): resolution: {integrity: sha512-hS22LeNj0LByS9toBPkpKyZhyKAXoHACLS1EQrjbAJJEQjhocOskVGwcMwvMlz+ohN+VU804/nMF1Zlya4+TiQ==} peerDependencies: '@nestjs/common': ^8.0.0 || ^9.0.0 || ^10.0.0 passport: ^0.4.0 || ^0.5.0 || ^0.6.0 dependencies: - '@nestjs/common': 10.2.2_j3td4gnlgk75ora6o6suo62byy + '@nestjs/common': 10.2.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.1.13)(rxjs@7.8.1) passport: 0.6.0 dev: false - /@nestjs/platform-express/10.2.2_h33h3l6i5mruhsbo3bha6vy2fi: + /@nestjs/platform-express@10.2.2(@nestjs/common@10.2.2)(@nestjs/core@10.2.2): resolution: {integrity: sha512-g5AeXgPQrVm62JOl9FXk0w3Tq1tD4f6ouGikLYs/Aahy0q/Z2HNP9NjXZYpqcjHrpafPYnc3bfBuUwedKW1oHg==} peerDependencies: '@nestjs/common': ^10.0.0 '@nestjs/core': ^10.0.0 dependencies: - '@nestjs/common': 10.2.2_j3td4gnlgk75ora6o6suo62byy - '@nestjs/core': 10.2.2_v4fpnjri37dvafci5vzkvgo4ne + '@nestjs/common': 10.2.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/core': 10.2.2(@nestjs/common@10.2.2)(@nestjs/platform-express@10.2.2)(@nestjs/websockets@10.2.2)(reflect-metadata@0.1.13)(rxjs@7.8.1) body-parser: 1.20.2 cors: 2.8.5 express: 4.18.2 @@ -13154,15 +14565,15 @@ packages: transitivePeerDependencies: - supports-color - /@nestjs/platform-socket.io/10.2.2_plsgbdyiufqh7g45z4q7fp3f24: + /@nestjs/platform-socket.io@10.2.2(@nestjs/common@10.2.2)(@nestjs/websockets@10.2.2)(rxjs@7.8.1): resolution: {integrity: sha512-63+R9z1e90eJs6z5anzZV+TF5csfVhN8zU2nP2mNi7herSh9cr/4pVSHAO+FN7T/kNIUX6h2bxEthC5v2oz7pA==} peerDependencies: '@nestjs/common': ^10.0.0 '@nestjs/websockets': ^10.0.0 rxjs: ^7.1.0 dependencies: - '@nestjs/common': 10.2.2_j3td4gnlgk75ora6o6suo62byy - '@nestjs/websockets': 10.2.2_k2whfst7erenivdtupi63u2ejy + '@nestjs/common': 10.2.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/websockets': 10.2.2(@nestjs/common@10.2.2)(@nestjs/core@10.2.2)(@nestjs/platform-socket.io@10.2.2)(reflect-metadata@0.1.13)(rxjs@7.8.1) rxjs: 7.8.1 socket.io: 4.7.2 tslib: 2.6.2 @@ -13170,15 +14581,14 @@ packages: - bufferutil - supports-color - utf-8-validate - dev: false - /@nestjs/schematics/10.0.2_agrgdhceu4ykhvsul7qhqysi6e: + /@nestjs/schematics@10.0.2(chokidar@3.5.3)(typescript@5.1.6): resolution: {integrity: sha512-DaZZjymYoIfRqC5W62lnYXIIods1PDY6CGc8+IpRwyinzffjKxZ3DF3exu+mdyvllzkXo9DTXkoX4zOPSJHCkw==} peerDependencies: typescript: '>=4.8.2' dependencies: - '@angular-devkit/core': 16.1.8_chokidar@3.5.3 - '@angular-devkit/schematics': 16.1.8_chokidar@3.5.3 + '@angular-devkit/core': 16.1.8(chokidar@3.5.3) + '@angular-devkit/schematics': 16.1.8(chokidar@3.5.3) comment-json: 4.2.3 jsonc-parser: 3.2.0 pluralize: 8.0.0 @@ -13187,13 +14597,13 @@ packages: - chokidar dev: true - /@nestjs/schematics/10.0.2_typescript@4.9.5: + /@nestjs/schematics@10.0.2(typescript@4.9.5): resolution: {integrity: sha512-DaZZjymYoIfRqC5W62lnYXIIods1PDY6CGc8+IpRwyinzffjKxZ3DF3exu+mdyvllzkXo9DTXkoX4zOPSJHCkw==} peerDependencies: typescript: '>=4.8.2' dependencies: - '@angular-devkit/core': 16.1.8 - '@angular-devkit/schematics': 16.1.8 + '@angular-devkit/core': 16.1.8(chokidar@3.5.3) + '@angular-devkit/schematics': 16.1.8(chokidar@3.5.3) comment-json: 4.2.3 jsonc-parser: 3.2.0 pluralize: 8.0.0 @@ -13202,7 +14612,7 @@ packages: - chokidar dev: true - /@nestjs/swagger/7.1.9_yggpgkps2ewgemp53dklozvzx4: + /@nestjs/swagger@7.1.9(@nestjs/common@10.2.2)(@nestjs/core@10.2.2)(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.1.13): resolution: {integrity: sha512-mKaNlN6uJpLh8itIF1EHK87j8GXFnwW8ldG4pQPqgeaBC8M6E9vH+GdRhxyRgAPrAkay4dL3lSOQS119tGrEHA==} peerDependencies: '@fastify/static': ^6.0.0 @@ -13219,9 +14629,9 @@ packages: class-validator: optional: true dependencies: - '@nestjs/common': 10.2.2_j3td4gnlgk75ora6o6suo62byy - '@nestjs/core': 10.2.2_v4fpnjri37dvafci5vzkvgo4ne - '@nestjs/mapped-types': 2.0.2_vsggjsjyhy2zmnh2hlgw6jrjhe + '@nestjs/common': 10.2.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/core': 10.2.2(@nestjs/common@10.2.2)(@nestjs/platform-express@10.2.2)(@nestjs/websockets@10.2.2)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/mapped-types': 2.0.2(@nestjs/common@10.2.2)(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.1.13) class-transformer: 0.5.1 class-validator: 0.14.0 js-yaml: 4.1.0 @@ -13231,63 +14641,7 @@ packages: swagger-ui-dist: 5.4.2 dev: false - /@nestjs/terminus/10.0.1_fav3sr7ld5p2uwyjvw6t25yci4: - resolution: {integrity: sha512-orQmQFdwN4QC2Oo30BrxEKzKAVeVluWQElgIe16NGvm597VqRH4b1GbKldVg6H8adehd/nR6RdCUyFozRdl2rA==} - peerDependencies: - '@grpc/grpc-js': '*' - '@grpc/proto-loader': '*' - '@mikro-orm/core': '*' - '@mikro-orm/nestjs': '*' - '@nestjs/axios': ^1.0.0 || ^2.0.0 || ^3.0.0 - '@nestjs/common': ^9.0.0 || ^10.0.0 - '@nestjs/core': ^9.0.0 || ^10.0.0 - '@nestjs/microservices': ^9.0.0 || ^10.0.0 - '@nestjs/mongoose': ^9.0.0 || ^10.0.0 - '@nestjs/sequelize': ^9.0.0 || ^10.0.0 - '@nestjs/typeorm': ^9.0.0 || ^10.0.0 - '@prisma/client': '*' - mongoose: '*' - reflect-metadata: 0.1.x - rxjs: 7.x - sequelize: '*' - typeorm: '*' - peerDependenciesMeta: - '@grpc/grpc-js': - optional: true - '@grpc/proto-loader': - optional: true - '@mikro-orm/core': - optional: true - '@mikro-orm/nestjs': - optional: true - '@nestjs/axios': - optional: true - '@nestjs/microservices': - optional: true - '@nestjs/mongoose': - optional: true - '@nestjs/sequelize': - optional: true - '@nestjs/typeorm': - optional: true - '@prisma/client': - optional: true - mongoose: - optional: true - sequelize: - optional: true - typeorm: - optional: true - dependencies: - '@nestjs/common': 10.2.2_j3td4gnlgk75ora6o6suo62byy - '@nestjs/core': 10.2.2_citrzyslfkhhdbz2asyi4zrkay - boxen: 5.1.2 - check-disk-space: 3.4.0 - reflect-metadata: 0.1.13 - rxjs: 7.8.1 - dev: false - - /@nestjs/terminus/10.0.1_tzkr6j3uymzf5crrhzjmiwh6tq: + /@nestjs/terminus@10.0.1(@nestjs/axios@2.0.0)(@nestjs/common@10.2.2)(@nestjs/core@10.2.2)(reflect-metadata@0.1.13)(rxjs@7.8.1): resolution: {integrity: sha512-orQmQFdwN4QC2Oo30BrxEKzKAVeVluWQElgIe16NGvm597VqRH4b1GbKldVg6H8adehd/nR6RdCUyFozRdl2rA==} peerDependencies: '@grpc/grpc-js': '*' @@ -13335,16 +14689,16 @@ packages: typeorm: optional: true dependencies: - '@nestjs/axios': 2.0.0_qwvj576sbz4hzeal5kp76dqnsi - '@nestjs/common': 10.2.2_j3td4gnlgk75ora6o6suo62byy - '@nestjs/core': 10.2.2_v4fpnjri37dvafci5vzkvgo4ne + '@nestjs/axios': 2.0.0(@nestjs/common@10.2.2)(axios@1.3.5)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/common': 10.2.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/core': 10.2.2(@nestjs/common@10.2.2)(@nestjs/platform-express@10.2.2)(@nestjs/websockets@10.2.2)(reflect-metadata@0.1.13)(rxjs@7.8.1) boxen: 5.1.2 check-disk-space: 3.4.0 reflect-metadata: 0.1.13 rxjs: 7.8.1 dev: false - /@nestjs/testing/10.2.2_atmp46a5rgegz5v7qiffjhuro4: + /@nestjs/testing@10.2.2(@nestjs/common@10.2.2)(@nestjs/core@10.2.2)(@nestjs/platform-express@10.2.2): resolution: {integrity: sha512-zczk6gLfxyVz+rxdNkplGZHM7xpKuknbeYZCCY1CppnAsaCNbFDcqtBdYlDy0mAaUFXv9BFcOC6rWPUXg0KZ1Q==} peerDependencies: '@nestjs/common': ^10.0.0 @@ -13357,31 +14711,12 @@ packages: '@nestjs/platform-express': optional: true dependencies: - '@nestjs/common': 10.2.2_j3td4gnlgk75ora6o6suo62byy - '@nestjs/core': 10.2.2_v4fpnjri37dvafci5vzkvgo4ne - '@nestjs/platform-express': 10.2.2_h33h3l6i5mruhsbo3bha6vy2fi + '@nestjs/common': 10.2.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/core': 10.2.2(@nestjs/common@10.2.2)(@nestjs/platform-express@10.2.2)(@nestjs/websockets@10.2.2)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/platform-express': 10.2.2(@nestjs/common@10.2.2)(@nestjs/core@10.2.2) tslib: 2.6.2 - dev: true - - /@nestjs/testing/10.2.2_h33h3l6i5mruhsbo3bha6vy2fi: - resolution: {integrity: sha512-zczk6gLfxyVz+rxdNkplGZHM7xpKuknbeYZCCY1CppnAsaCNbFDcqtBdYlDy0mAaUFXv9BFcOC6rWPUXg0KZ1Q==} - peerDependencies: - '@nestjs/common': ^10.0.0 - '@nestjs/core': ^10.0.0 - '@nestjs/microservices': ^10.0.0 - '@nestjs/platform-express': ^10.0.0 - peerDependenciesMeta: - '@nestjs/microservices': - optional: true - '@nestjs/platform-express': - optional: true - dependencies: - '@nestjs/common': 10.2.2_j3td4gnlgk75ora6o6suo62byy - '@nestjs/core': 10.2.2_hvzojgbgemkkg4y2oz5vs6hq4y - tslib: 2.6.2 - dev: false - /@nestjs/websockets/10.2.2_k2whfst7erenivdtupi63u2ejy: + /@nestjs/websockets@10.2.2(@nestjs/common@10.2.2)(@nestjs/core@10.2.2)(@nestjs/platform-socket.io@10.2.2)(reflect-metadata@0.1.13)(rxjs@7.8.1): resolution: {integrity: sha512-bKTdiGyVazmD1frvl7hzSOqsYOzdi4V4C9lxebbWj3rd5YHJRaZvRxHHGbum7bO61TkA+gqQBWkM76Uk0VL6iA==} peerDependencies: '@nestjs/common': ^10.0.0 @@ -13393,17 +14728,16 @@ packages: '@nestjs/platform-socket.io': optional: true dependencies: - '@nestjs/common': 10.2.2_j3td4gnlgk75ora6o6suo62byy - '@nestjs/core': 10.2.2_citrzyslfkhhdbz2asyi4zrkay - '@nestjs/platform-socket.io': 10.2.2_plsgbdyiufqh7g45z4q7fp3f24 + '@nestjs/common': 10.2.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/core': 10.2.2(@nestjs/common@10.2.2)(@nestjs/platform-express@10.2.2)(@nestjs/websockets@10.2.2)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/platform-socket.io': 10.2.2(@nestjs/common@10.2.2)(@nestjs/websockets@10.2.2)(rxjs@7.8.1) iterare: 1.2.1 object-hash: 3.0.0 reflect-metadata: 0.1.13 rxjs: 7.8.1 tslib: 2.6.2 - dev: false - /@newrelic/aws-sdk/5.0.5_newrelic@9.15.0: + /@newrelic/aws-sdk@5.0.5(newrelic@9.15.0): resolution: {integrity: sha512-Tl4R2rGZfRHb04Ebtb4ErRDfyVzzps+yg2jYf5seRpmXuXtrBWbZKJwd23uUZOi0qTh6Wy4peUaiT+sDo6E1Rw==} engines: {node: '>=14.0.0'} peerDependencies: @@ -13412,7 +14746,7 @@ packages: newrelic: 9.15.0 dev: false - /@newrelic/koa/7.2.0_newrelic@9.15.0: + /@newrelic/koa@7.2.0(newrelic@9.15.0): resolution: {integrity: sha512-3y/CCOLJ6sEPTKyQAmBrBP5CfZ5ak8mWt+7mWjdbblOXQh20LEsrA/KQAh/ROcTh6rV8oxsubLZ3N13LIeIoVQ==} engines: {node: '>=14.0.0'} peerDependencies: @@ -13421,7 +14755,7 @@ packages: newrelic: 9.15.0 dev: false - /@newrelic/native-metrics/9.0.1: + /@newrelic/native-metrics@9.0.1: resolution: {integrity: sha512-ZMCd6xW9PWhrWvg8Ik0oFU+XGFLbqRujh15qu3+7FJRI8163RBOD6SS8tsU0ydG8+LlaPDZQp/ODD4LvBXu5UA==} engines: {node: '>=14', npm: '>=6'} requiresBuild: true @@ -13434,7 +14768,7 @@ packages: dev: false optional: true - /@newrelic/superagent/6.0.0_newrelic@9.15.0: + /@newrelic/superagent@6.0.0(newrelic@9.15.0): resolution: {integrity: sha512-5nClQp9ACd4BvLusAgFHjjKLDgAaC+dKmIsRNOPC82LOLFaoOgxxtbecnDIJ0NWCKQS+WOdmXdgYutwH+e5dsA==} engines: {node: '>=14.0'} peerDependencies: @@ -13443,7 +14777,7 @@ packages: newrelic: 9.15.0 dev: false - /@ngtools/webpack/15.2.5_zqos56hbuiu24z4fwvegrcbdm4: + /@ngtools/webpack@15.2.5(@angular/compiler-cli@15.2.6)(typescript@4.9.5)(webpack@5.76.1): resolution: {integrity: sha512-wD6GY4xghVK+SQL0dy/M3saGx5pqi7+1VHEr+BBI7IUNYGSqPNzylKNxLBgQiTzfkzvbrZ6MhfaMNkhvSCYr5w==} engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} peerDependencies: @@ -13451,45 +14785,45 @@ packages: typescript: '>=4.8.2 <5.0' webpack: ^5.54.0 dependencies: - '@angular/compiler-cli': 15.2.6_54xk3mtsepvzoktlwdjj2rm7na + '@angular/compiler-cli': 15.2.6(@angular/compiler@15.2.6)(typescript@4.9.5) typescript: 4.9.5 - webpack: 5.76.1 + webpack: 5.76.1(@swc/core@1.3.49)(esbuild@0.17.8) dev: true - /@nicolo-ribaudo/eslint-scope-5-internals/5.1.1-v1: + /@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1: resolution: {integrity: sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==} dependencies: eslint-scope: 5.1.1 - /@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.15.0 - /@novu/floating-vue/2.0.3_vue@3.2.47: + /@novu/floating-vue@2.0.3(vue@3.2.47): resolution: {integrity: sha512-ypymfdAx55M30bd6IluQujtxTlZwJk9ZeTzptj5UFixMjE4MqgTmBe4wQ1+tHcwUSFY3R+CoVR+RpOLO3XODqg==} peerDependencies: vue: ^3.2.0 dependencies: '@floating-ui/dom': 0.1.10 vue: 3.2.47 - vue-resize: 2.0.0-alpha.1_vue@3.2.47 + vue-resize: 2.0.0-alpha.1(vue@3.2.47) dev: false - /@novu/stateless/0.12.0: + /@novu/stateless@0.12.0: resolution: {integrity: sha512-2GVX07XtR3owk8Dg/66l+kyUvgYR5+uKMheiFCVRuTCqiDfVFww1G3ixIEs2FGIajtLfDdNyuH+PV25EoqmKVg==} engines: {node: '>=10'} dependencies: @@ -13498,7 +14832,7 @@ packages: lodash.merge: 4.6.2 dev: false - /@novu/stateless/0.15.0: + /@novu/stateless@0.15.0: resolution: {integrity: sha512-NS7n34dlEB48EthLek0NWZXh+nJtbOUVkWdyprGF2f/WCCG/wT+yUtYLOauMffrySpnXEjY9zimyGgIWJQRl0g==} engines: {node: '>=10'} dependencies: @@ -13507,7 +14841,7 @@ packages: lodash.merge: 4.6.2 dev: false - /@novu/stateless/0.16.3: + /@novu/stateless@0.16.3: resolution: {integrity: sha512-9wrqUluSaR9rCdDp4oUWFBwsk6OSM4P+yMaEtFGHrGmSPMcspnvXQaQoARKakuUpCXFvQlPPJq5+yaicv4o/hA==} engines: {node: '>=10'} dependencies: @@ -13516,7 +14850,7 @@ packages: lodash.merge: 4.6.2 dev: false - /@novu/stateless/0.7.2: + /@novu/stateless@0.7.2: resolution: {integrity: sha512-hZPVjtdckROXF4WpcpUJGigA+7Nfz1mM5dIHwuDfh6MZ6cRGOgjQVq2TKhiOjHcu2umcKORem4cuyz47KoSA5w==} engines: {node: '>=10'} dependencies: @@ -13528,7 +14862,7 @@ packages: - debug dev: false - /@npmcli/arborist/5.3.0: + /@npmcli/arborist@5.3.0: resolution: {integrity: sha512-+rZ9zgL1lnbl8Xbb1NQdMjveOMwj4lIYfcDtyJHHi5x4X8jtR6m8SXooJMZy5vmFVZ8w7A2Bnd/oX9eTuU8w5A==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} hasBin: true @@ -13572,7 +14906,7 @@ packages: - supports-color dev: true - /@npmcli/fs/2.1.2: + /@npmcli/fs@2.1.2: resolution: {integrity: sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: @@ -13580,14 +14914,14 @@ packages: semver: 7.5.4 dev: true - /@npmcli/fs/3.1.0: + /@npmcli/fs@3.1.0: resolution: {integrity: sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: semver: 7.5.4 dev: true - /@npmcli/git/3.0.2: + /@npmcli/git@3.0.2: resolution: {integrity: sha512-CAcd08y3DWBJqJDpfuVL0uijlq5oaXaOJEKHKc4wqrjd00gkvTZB+nFuLn+doOOKddaQS9JfqtNoFCO2LCvA3w==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: @@ -13604,7 +14938,7 @@ packages: - bluebird dev: true - /@npmcli/git/4.0.4: + /@npmcli/git@4.0.4: resolution: {integrity: sha512-5yZghx+u5M47LghaybLCkdSyFzV/w4OuH12d96HO389Ik9CDsLaDZJVynSGGVJOLn6gy/k7Dz5XYcplM3uxXRg==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: @@ -13620,7 +14954,7 @@ packages: - bluebird dev: true - /@npmcli/installed-package-contents/1.0.7: + /@npmcli/installed-package-contents@1.0.7: resolution: {integrity: sha512-9rufe0wnJusCQoLpV9ZPKIVP55itrM5BxOXs10DmdbRfgWtHy1LDyskbwRnBghuB0PrF7pNPOqREVtpz4HqzKw==} engines: {node: '>= 10'} hasBin: true @@ -13629,7 +14963,7 @@ packages: npm-normalize-package-bin: 1.0.1 dev: true - /@npmcli/installed-package-contents/2.0.2: + /@npmcli/installed-package-contents@2.0.2: resolution: {integrity: sha512-xACzLPhnfD51GKvTOOuNX2/V4G4mz9/1I2MfDoye9kBM3RYe5g2YbscsaGoTlaWqkxeiapBWyseULVKpSVHtKQ==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} hasBin: true @@ -13638,7 +14972,7 @@ packages: npm-normalize-package-bin: 3.0.0 dev: true - /@npmcli/map-workspaces/2.0.4: + /@npmcli/map-workspaces@2.0.4: resolution: {integrity: sha512-bMo0aAfwhVwqoVM5UzX1DJnlvVvzDCHae821jv48L1EsrYwfOZChlqWYXEtto/+BkBXetPbEWgau++/brh4oVg==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: @@ -13648,7 +14982,7 @@ packages: read-package-json-fast: 2.0.3 dev: true - /@npmcli/metavuln-calculator/3.1.1: + /@npmcli/metavuln-calculator@3.1.1: resolution: {integrity: sha512-n69ygIaqAedecLeVH3KnO39M6ZHiJ2dEv5A7DGvcqCB8q17BGUgW8QaanIkbWUo2aYGZqJaOORTLAlIvKjNDKA==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: @@ -13661,7 +14995,7 @@ packages: - supports-color dev: true - /@npmcli/move-file/2.0.1: + /@npmcli/move-file@2.0.1: resolution: {integrity: sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} deprecated: This functionality has been moved to @npmcli/fs @@ -13670,42 +15004,42 @@ packages: rimraf: 3.0.2 dev: true - /@npmcli/name-from-folder/1.0.1: + /@npmcli/name-from-folder@1.0.1: resolution: {integrity: sha512-qq3oEfcLFwNfEYOQ8HLimRGKlD8WSeGEdtUa7hmzpR8Sa7haL1KVQrvgO6wqMjhWFFVjgtrh1gIxDz+P8sjUaA==} dev: true - /@npmcli/node-gyp/2.0.0: + /@npmcli/node-gyp@2.0.0: resolution: {integrity: sha512-doNI35wIe3bBaEgrlPfdJPaCpUR89pJWep4Hq3aRdh6gKazIVWfs0jHttvSSoq47ZXgC7h73kDsUl8AoIQUB+A==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dev: true - /@npmcli/node-gyp/3.0.0: + /@npmcli/node-gyp@3.0.0: resolution: {integrity: sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dev: true - /@npmcli/package-json/2.0.0: + /@npmcli/package-json@2.0.0: resolution: {integrity: sha512-42jnZ6yl16GzjWSH7vtrmWyJDGVa/LXPdpN2rcUWolFjc9ON2N3uz0qdBbQACfmhuJZ2lbKYtmK5qx68ZPLHMA==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: json-parse-even-better-errors: 2.3.1 dev: true - /@npmcli/promise-spawn/3.0.0: + /@npmcli/promise-spawn@3.0.0: resolution: {integrity: sha512-s9SgS+p3a9Eohe68cSI3fi+hpcZUmXq5P7w0kMlAsWVtR7XbK3ptkZqKT2cK1zLDObJ3sR+8P59sJE0w/KTL1g==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: infer-owner: 1.0.4 dev: true - /@npmcli/promise-spawn/6.0.2: + /@npmcli/promise-spawn@6.0.2: resolution: {integrity: sha512-gGq0NJkIGSwdbUt4yhdF8ZrmkGKVz9vAdVzpOfnom+V8PLSmSOVhZwbNvZZS1EYcJN5hzzKBxmmVVAInM6HQLg==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: which: 3.0.0 dev: true - /@npmcli/run-script/4.2.1: + /@npmcli/run-script@4.2.1: resolution: {integrity: sha512-7dqywvVudPSrRCW5nTHpHgeWnbBtz8cFkOuKrecm6ih+oO9ciydhWt6OF7HlqupRRmB8Q/gECVdB9LMfToJbRg==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: @@ -13719,7 +15053,7 @@ packages: - supports-color dev: true - /@npmcli/run-script/6.0.0: + /@npmcli/run-script@6.0.0: resolution: {integrity: sha512-ql+AbRur1TeOdl1FY+RAwGW9fcr4ZwiVKabdvm93mujGREVuVLbdkXRJDrkTXSdCjaxYydr1wlA2v67jxWG5BQ==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: @@ -13733,98 +15067,98 @@ packages: - supports-color dev: true - /@nrwl/cli/13.10.6_typescript@4.9.5: + /@nrwl/cli@13.10.6(typescript@4.9.5): resolution: {integrity: sha512-gIYriCFaPeAJqO+1gdrDg+Zrflrq3drc5sJMkiIZkoNPNVcRQ/HeqiTskJk5XwHH2wl/jnm9OCFC7qowyTTE4Q==} dependencies: - nx: 13.10.6_typescript@4.9.5 + nx: 13.10.6(typescript@4.9.5) transitivePeerDependencies: - '@swc/helpers' - supports-color - typescript dev: true - /@nrwl/cli/15.9.2_@swc+core@1.3.49: + /@nrwl/cli@15.9.2(@swc/core@1.3.49): resolution: {integrity: sha512-QoCmyrcGakHAYTJaNBbOerRQAmqJHMYGCdqtQidV+aP9p1Dy33XxDELfhd+IYmGqngutXuEWChNpWNhPloLnoA==} dependencies: - nx: 15.9.2_@swc+core@1.3.49 + nx: 15.9.2(@swc/core@1.3.49) transitivePeerDependencies: - '@swc-node/register' - '@swc/core' - debug - /@nrwl/cli/15.9.3_@swc+core@1.3.49: + /@nrwl/cli@15.9.3(@swc/core@1.3.49): resolution: {integrity: sha512-qiAKHkov3iBx6hroPTitUrkRSUZFQqVgNJiF9gXRFC6pNJe9RS4rlmcIaoUFOboi9CnH5jwblNJVcz8YSVYOvA==} dependencies: - nx: 15.9.3_@swc+core@1.3.49 + nx: 15.9.3(@swc/core@1.3.49) transitivePeerDependencies: - '@swc-node/register' - '@swc/core' - debug dev: true - /@nrwl/cli/15.9.4_@swc+core@1.3.49: + /@nrwl/cli@15.9.4(@swc/core@1.3.49): resolution: {integrity: sha512-FoiGFCLpb/r4HXCM3KYqT0xteP+MRV6bIHjz3bdPHIDLmBNQQnRRaV2K47jtJ6zjh1eOU5UHKyDtDDYf80Idpw==} dependencies: - nx: 15.9.4_@swc+core@1.3.49 + nx: 15.9.4(@swc/core@1.3.49) transitivePeerDependencies: - '@swc-node/register' - '@swc/core' - debug dev: true - /@nrwl/devkit/13.10.6_nx@13.10.6: + /@nrwl/devkit@13.10.6(nx@13.10.6): resolution: {integrity: sha512-oxL+r9pGguFwl//iuIyPih8mxFwYjYmPY7K8coPoucLCIwKWAnp1B8T5LEMlZh58VaYEQFaGUnuILdVrK1s4pA==} peerDependencies: nx: '>= 13.10 <= 15' dependencies: ejs: 3.1.9 ignore: 5.2.4 - nx: 13.10.6_typescript@4.9.5 + nx: 13.10.6(typescript@4.9.5) rxjs: 6.6.7 semver: 7.3.4 tslib: 2.6.2 dev: true - /@nrwl/devkit/15.9.2_nx@15.9.2: + /@nrwl/devkit@15.9.2(nx@15.9.2): resolution: {integrity: sha512-2DvTstVZb91m+d4wqUJMBHQ3elxyabdmFE6/3aXmtOGeDxTyXyDzf/1O6JvBBiL8K6XC3ZYchjtxUHgxl/NJ5A==} peerDependencies: nx: '>= 14.1 <= 16' dependencies: ejs: 3.1.9 ignore: 5.2.4 - nx: 15.9.2_@swc+core@1.3.49 + nx: 15.9.2(@swc/core@1.3.49) semver: 7.3.4 tmp: 0.2.1 tslib: 2.6.2 dev: true - /@nrwl/devkit/15.9.4_nx@15.9.2: + /@nrwl/devkit@15.9.4(nx@15.9.2): resolution: {integrity: sha512-mUX1kXTuPMdTzFxIzH+MsSNvdppOmstPDOEtiGFZJTuJ625ki0HhNJILO3N2mJ7MeMrLqIlAiNdvelQaObxYsQ==} peerDependencies: nx: '>= 14.1 <= 16' dependencies: ejs: 3.1.9 ignore: 5.2.4 - nx: 15.9.2_@swc+core@1.3.49 + nx: 15.9.2(@swc/core@1.3.49) semver: 7.3.4 tmp: 0.2.1 tslib: 2.6.2 dev: true - /@nrwl/devkit/15.9.4_nx@15.9.4: + /@nrwl/devkit@15.9.4(nx@15.9.4): resolution: {integrity: sha512-mUX1kXTuPMdTzFxIzH+MsSNvdppOmstPDOEtiGFZJTuJ625ki0HhNJILO3N2mJ7MeMrLqIlAiNdvelQaObxYsQ==} peerDependencies: nx: '>= 14.1 <= 16' dependencies: ejs: 3.1.9 ignore: 5.2.4 - nx: 15.9.4_@swc+core@1.3.49 + nx: 15.9.4(@swc/core@1.3.49) semver: 7.3.4 tmp: 0.2.1 tslib: 2.6.2 dev: true - /@nrwl/eslint-plugin-nx/15.9.4_rmanuyj7qbkvesrwuotu2kcvrq: + /@nrwl/eslint-plugin-nx@15.9.4(@typescript-eslint/parser@5.58.0)(eslint-config-prettier@8.8.0)(eslint@8.38.0)(nx@15.9.2)(typescript@4.9.5): resolution: {integrity: sha512-XWLh3qRnnlIMRRKWfLH3PGc2tXS0iUm+LBiiu6nGiZt3oTG7+V2ialvO272N+CyDTQC2imWD6plgUBk7weG9dQ==} peerDependencies: '@typescript-eslint/parser': ^5.29.0 @@ -13833,12 +15167,12 @@ packages: eslint-config-prettier: optional: true dependencies: - '@nrwl/devkit': 15.9.4_nx@15.9.2 - '@typescript-eslint/parser': 5.58.0_ze6bmax3gcsfve3yrzu6npguhe - '@typescript-eslint/utils': 5.58.0_ze6bmax3gcsfve3yrzu6npguhe + '@nrwl/devkit': 15.9.4(nx@15.9.2) + '@typescript-eslint/parser': 5.58.0(eslint@8.38.0)(typescript@4.9.5) + '@typescript-eslint/utils': 5.58.0(eslint@8.38.0)(typescript@4.9.5) chalk: 4.1.2 confusing-browser-globals: 1.0.11 - eslint-config-prettier: 8.8.0_eslint@8.38.0 + eslint-config-prettier: 8.8.0(eslint@8.38.0) semver: 7.3.4 transitivePeerDependencies: - eslint @@ -13847,15 +15181,15 @@ packages: - typescript dev: true - /@nrwl/jest/13.10.6_nx@13.10.6+ts-node@10.9.1: + /@nrwl/jest@13.10.6(nx@13.10.6)(ts-node@10.9.1): resolution: {integrity: sha512-Mw3+yWQUxMY6ljADV84LaNWWX7w0R53FBem8RGPfRMsxP6YHej3sUAJbZDZVP3XVj5lD2I/k5Y+rbW1aEW4SQg==} dependencies: '@jest/reporters': 27.2.2 '@jest/test-result': 27.2.2 - '@nrwl/devkit': 13.10.6_nx@13.10.6 + '@nrwl/devkit': 13.10.6(nx@13.10.6) chalk: 4.1.0 identity-obj-proxy: 3.0.0 - jest-config: 27.2.2_ts-node@10.9.1 + jest-config: 27.2.2(ts-node@10.9.1) jest-resolve: 27.2.2 jest-util: 27.2.0 resolve.exports: 1.1.0 @@ -13871,18 +15205,18 @@ packages: - utf-8-validate dev: true - /@nrwl/jest/15.9.4_4mszvvnvx7eov4zhuvou3pwege: + /@nrwl/jest@15.9.4(@swc/core@1.3.49)(@types/node@16.11.7)(nx@15.9.2)(ts-node@10.9.1)(typescript@4.9.5): resolution: {integrity: sha512-NI/ERsoqL5E5rHFkW1reLx0lgKtu3pKi8esFaIvBR/bQpygK2FTYTu41WBjwk0GfyFaI1tVxOYeV436UXSBDrQ==} dependencies: '@jest/reporters': 29.5.0 '@jest/test-result': 29.5.0 - '@nrwl/devkit': 15.9.4_nx@15.9.2 - '@nrwl/js': 15.9.4_4gv7sflzg672lecw4yrl35xmly - '@phenomnomnominal/tsquery': 4.1.1_typescript@4.9.5 + '@nrwl/devkit': 15.9.4(nx@15.9.2) + '@nrwl/js': 15.9.4(@swc/core@1.3.49)(nx@15.9.2)(typescript@4.9.5) + '@phenomnomnominal/tsquery': 4.1.1(typescript@4.9.5) chalk: 4.1.2 dotenv: 10.0.0 identity-obj-proxy: 3.0.0 - jest-config: 29.5.0_6m7kcbkkzjz4ln6z66tlzx44we + jest-config: 29.5.0(@types/node@16.11.7)(ts-node@10.9.1) jest-resolve: 29.5.0 jest-util: 29.5.0 resolve.exports: 1.1.0 @@ -13900,22 +15234,22 @@ packages: - typescript dev: true - /@nrwl/js/15.9.4_4gv7sflzg672lecw4yrl35xmly: + /@nrwl/js@15.9.4(@swc/core@1.3.49)(nx@15.9.2)(typescript@4.9.5): resolution: {integrity: sha512-DMJ7qFf/nN5w1WZyxm9JaAPsdfAD+bjLJ8MKA6rtoHcMB3t/BtCZ8lsnsYRUJXFGwuY6aj71bQXQ6F+QQOJY4Q==} dependencies: '@babel/core': 7.22.11 - '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.22.11 - '@babel/plugin-proposal-decorators': 7.21.0_@babel+core@7.22.11 - '@babel/plugin-transform-runtime': 7.21.4_@babel+core@7.22.11 - '@babel/preset-env': 7.22.20_@babel+core@7.22.11 - '@babel/preset-typescript': 7.21.4_@babel+core@7.22.11 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.11) + '@babel/plugin-proposal-decorators': 7.21.0(@babel/core@7.22.11) + '@babel/plugin-transform-runtime': 7.21.4(@babel/core@7.22.11) + '@babel/preset-env': 7.22.20(@babel/core@7.22.11) + '@babel/preset-typescript': 7.21.4(@babel/core@7.22.11) '@babel/runtime': 7.21.0 - '@nrwl/devkit': 15.9.4_nx@15.9.2 - '@nrwl/workspace': 15.9.4_@swc+core@1.3.49 - '@phenomnomnominal/tsquery': 4.1.1_typescript@4.9.5 - babel-plugin-const-enum: 1.2.0_@babel+core@7.22.11 + '@nrwl/devkit': 15.9.4(nx@15.9.2) + '@nrwl/workspace': 15.9.4(@swc/core@1.3.49) + '@phenomnomnominal/tsquery': 4.1.1(typescript@4.9.5) + babel-plugin-const-enum: 1.2.0(@babel/core@7.22.11) babel-plugin-macros: 2.8.0 - babel-plugin-transform-typescript-metadata: 0.3.2_@babel+core@7.22.11 + babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.22.11) chalk: 4.1.2 fast-glob: 3.2.7 fs-extra: 11.1.1 @@ -13935,7 +15269,7 @@ packages: - typescript dev: true - /@nrwl/linter/13.10.6_ewoxgidzof766uxkfmif2dqrpu: + /@nrwl/linter@13.10.6(eslint@8.38.0)(nx@13.10.6)(ts-node@10.9.1)(typescript@4.9.5): resolution: {integrity: sha512-c7gtXu4ewjc6ylp0anAt6eaWWxmqrt0CqBfzEK9vYkETN4/WUcr6Y/nNzpnvvhM9PuCEBH7QTizz/r1imRmLJQ==} peerDependencies: eslint: ^8.0.0 @@ -13943,9 +15277,9 @@ packages: eslint: optional: true dependencies: - '@nrwl/devkit': 13.10.6_nx@13.10.6 - '@nrwl/jest': 13.10.6_nx@13.10.6+ts-node@10.9.1 - '@phenomnomnominal/tsquery': 4.1.1_typescript@4.9.5 + '@nrwl/devkit': 13.10.6(nx@13.10.6) + '@nrwl/jest': 13.10.6(nx@13.10.6)(ts-node@10.9.1) + '@phenomnomnominal/tsquery': 4.1.1(typescript@4.9.5) eslint: 8.38.0 tmp: 0.2.1 tslib: 2.6.2 @@ -13960,7 +15294,7 @@ packages: - utf-8-validate dev: true - /@nrwl/linter/15.9.4_rifl5e35m62sxfy6k2lmajh6ta: + /@nrwl/linter@15.9.4(@swc/core@1.3.49)(eslint@8.38.0)(nx@15.9.2)(typescript@4.9.5): resolution: {integrity: sha512-J8CoccCNhIwzf02/oTpjo8VzrGuzKgOwD4mEnC48doi1FV9/uXT04da671uNHZjO5QRm3ptTzaqwo0sPRDPyuw==} peerDependencies: eslint: ^8.0.0 @@ -13968,9 +15302,9 @@ packages: eslint: optional: true dependencies: - '@nrwl/devkit': 15.9.4_nx@15.9.2 - '@nrwl/js': 15.9.4_4gv7sflzg672lecw4yrl35xmly - '@phenomnomnominal/tsquery': 4.1.1_typescript@4.9.5 + '@nrwl/devkit': 15.9.4(nx@15.9.2) + '@nrwl/js': 15.9.4(@swc/core@1.3.49)(nx@15.9.2)(typescript@4.9.5) + '@phenomnomnominal/tsquery': 4.1.1(typescript@4.9.5) eslint: 8.38.0 tmp: 0.2.1 tslib: 2.5.0 @@ -13984,7 +15318,7 @@ packages: - typescript dev: true - /@nrwl/nx-cloud/15.3.5: + /@nrwl/nx-cloud@15.3.5: resolution: {integrity: sha512-JMKLY0HhdzQ/6jEvfL/EecPPdsdBIM0SyFrWAjikSJAh5MqhpFJWnr6FfTc5P57PJZ+IUNLkJ21VMuoTrA4+4w==} hasBin: true dependencies: @@ -14000,7 +15334,7 @@ packages: - debug dev: true - /@nrwl/nx-darwin-arm64/15.9.2: + /@nrwl/nx-darwin-arm64@15.9.2: resolution: {integrity: sha512-Yv+OVsQt3C/hmWOC+YhJZQlsyph5w1BHfbp4jyCvV1ZXBbb8NdvwxgDHPWXxKPTc1EXuB7aEX3qzxM3/OWEUJg==} engines: {node: '>= 10'} cpu: [arm64] @@ -14008,7 +15342,7 @@ packages: requiresBuild: true optional: true - /@nrwl/nx-darwin-arm64/15.9.3: + /@nrwl/nx-darwin-arm64@15.9.3: resolution: {integrity: sha512-2htJzVa+S/uLg5tj4nbO/tRz2SRMQIpT6EeWMgDGuEKQdpuRLVj2ez9hMpkRn9tl1tBUwR05hbV28DnOLRESVA==} engines: {node: '>= 10'} cpu: [arm64] @@ -14017,7 +15351,7 @@ packages: dev: true optional: true - /@nrwl/nx-darwin-arm64/15.9.4: + /@nrwl/nx-darwin-arm64@15.9.4: resolution: {integrity: sha512-XnvrnT9BJsgThY/4xUcYtE077ERq/img8CkRj7MOOBNOh0/nVcR4LGbBKDHtwE3HPk0ikyS/SxRyNa9msvi3QQ==} engines: {node: '>= 10'} cpu: [arm64] @@ -14026,7 +15360,7 @@ packages: dev: true optional: true - /@nrwl/nx-darwin-x64/15.9.2: + /@nrwl/nx-darwin-x64@15.9.2: resolution: {integrity: sha512-qHfdluHlPzV0UHOwj1ZJ+qNEhzfLGiBuy1cOth4BSzDlvMnkuqBWoprfaXoztzYcus2NSILY1/7b3Jw4DAWmMw==} engines: {node: '>= 10'} cpu: [x64] @@ -14034,7 +15368,7 @@ packages: requiresBuild: true optional: true - /@nrwl/nx-darwin-x64/15.9.3: + /@nrwl/nx-darwin-x64@15.9.3: resolution: {integrity: sha512-p+8UkfC6KTLOX4XRt7NSP8DoTzEgs73+SN0csoXT9VsNO35+F0Z5zMZxpEc7RVo5Wen/4PGh2OWA+8gtgntsJQ==} engines: {node: '>= 10'} cpu: [x64] @@ -14043,7 +15377,7 @@ packages: dev: true optional: true - /@nrwl/nx-darwin-x64/15.9.4: + /@nrwl/nx-darwin-x64@15.9.4: resolution: {integrity: sha512-WKSfSlpVMLchpXkax0geeUNyhvNxwO7qUz/s0/HJWBekt8fizwKDwDj1gP7fOu+YWb/tHiSscbR1km8PtdjhQw==} engines: {node: '>= 10'} cpu: [x64] @@ -14052,7 +15386,7 @@ packages: dev: true optional: true - /@nrwl/nx-linux-arm-gnueabihf/15.9.2: + /@nrwl/nx-linux-arm-gnueabihf@15.9.2: resolution: {integrity: sha512-0GzwbablosnYnnJDCJvAeZv8LlelSrNwUnGhe43saeoZdAew35Ay1E34zBrg/GCGTASuz+knEEYFM+gDD9Mc6A==} engines: {node: '>= 10'} cpu: [arm] @@ -14060,7 +15394,7 @@ packages: requiresBuild: true optional: true - /@nrwl/nx-linux-arm-gnueabihf/15.9.3: + /@nrwl/nx-linux-arm-gnueabihf@15.9.3: resolution: {integrity: sha512-xwW7bZtggrxhFbYvvWWArtcSWwoxWzi/4wNgP3wPbcZFNZiraahVQSpIyJXrS9aajGbdvuDBM8cbDsMj9v7mwg==} engines: {node: '>= 10'} cpu: [arm] @@ -14069,7 +15403,7 @@ packages: dev: true optional: true - /@nrwl/nx-linux-arm-gnueabihf/15.9.4: + /@nrwl/nx-linux-arm-gnueabihf@15.9.4: resolution: {integrity: sha512-a/b4PP7lP/Cgrh0LjC4O2YTt5pyf4DQTGtuE8qlo8o486UiofCtk4QGJX72q80s23L0ejCaKY2ULKx/3zMLjuA==} engines: {node: '>= 10'} cpu: [arm] @@ -14078,7 +15412,7 @@ packages: dev: true optional: true - /@nrwl/nx-linux-arm64-gnu/15.9.2: + /@nrwl/nx-linux-arm64-gnu@15.9.2: resolution: {integrity: sha512-3mFIY7iUTPG45hSIRaM2DmraCy8W6hNoArAGRrTgYw40BIJHtLrW+Rt7DLyvVXaYCvrKugWOKtxC+jG7kpIZVA==} engines: {node: '>= 10'} cpu: [arm64] @@ -14086,7 +15420,7 @@ packages: requiresBuild: true optional: true - /@nrwl/nx-linux-arm64-gnu/15.9.3: + /@nrwl/nx-linux-arm64-gnu@15.9.3: resolution: {integrity: sha512-KNxDL2OAHxhFqztEjv2mNwXD6xrzoUury7NsYZYqlxJUNc3YYBfRSLEatnw491crvMBndbxfGVTWEO9S4YmRuw==} engines: {node: '>= 10'} cpu: [arm64] @@ -14095,7 +15429,7 @@ packages: dev: true optional: true - /@nrwl/nx-linux-arm64-gnu/15.9.4: + /@nrwl/nx-linux-arm64-gnu@15.9.4: resolution: {integrity: sha512-ibBV8fMhSfLVd/2WzcDuUm32BoZsattuKkvMmOoyU6Pzoznc3AqyDjJR4xCIoAn5Rf+Nu1oeQONr5FAtb1Ugow==} engines: {node: '>= 10'} cpu: [arm64] @@ -14104,7 +15438,7 @@ packages: dev: true optional: true - /@nrwl/nx-linux-arm64-musl/15.9.2: + /@nrwl/nx-linux-arm64-musl@15.9.2: resolution: {integrity: sha512-FNBnXEtockwxZa4I3NqggrJp0YIbNokJvt/clrICP+ijOacdUDkv8mJedavobkFsRsNq9gzCbRbUScKymrOLrg==} engines: {node: '>= 10'} cpu: [arm64] @@ -14112,7 +15446,7 @@ packages: requiresBuild: true optional: true - /@nrwl/nx-linux-arm64-musl/15.9.3: + /@nrwl/nx-linux-arm64-musl@15.9.3: resolution: {integrity: sha512-AxoZzfsXH7ZqDE+WrQtRumufIcSIBw4U/LikiDLaWWoGtNpAfKLkD/PHirZiNxHIeGy1Toi4ccMUolXbafLVFw==} engines: {node: '>= 10'} cpu: [arm64] @@ -14121,7 +15455,7 @@ packages: dev: true optional: true - /@nrwl/nx-linux-arm64-musl/15.9.4: + /@nrwl/nx-linux-arm64-musl@15.9.4: resolution: {integrity: sha512-iIjvVYd7+uM4jVD461+PvU5XTALgSvJOODUaMRGOoDl0KlMuTe6pQZlw0eXjl5rcTd6paKaVFWT5j6awr8kj7w==} engines: {node: '>= 10'} cpu: [arm64] @@ -14130,7 +15464,7 @@ packages: dev: true optional: true - /@nrwl/nx-linux-x64-gnu/15.9.2: + /@nrwl/nx-linux-x64-gnu@15.9.2: resolution: {integrity: sha512-gHWsP5lbe4FNQCa1Q/VLxIuik+BqAOcSzyPjdUa4gCDcbxPa8xiE57PgXB5E1XUzOWNnDTlXa/Ll07/TIuKuog==} engines: {node: '>= 10'} cpu: [x64] @@ -14138,7 +15472,7 @@ packages: requiresBuild: true optional: true - /@nrwl/nx-linux-x64-gnu/15.9.3: + /@nrwl/nx-linux-x64-gnu@15.9.3: resolution: {integrity: sha512-P8AOPRufvV4a5cSczNsw84zFAI7NgAiEBTybYcyymdNJmo0iArJXEmvj/G4mB20O8VCsCkwqMYAu6nQEnES1Kw==} engines: {node: '>= 10'} cpu: [x64] @@ -14147,7 +15481,7 @@ packages: dev: true optional: true - /@nrwl/nx-linux-x64-gnu/15.9.4: + /@nrwl/nx-linux-x64-gnu@15.9.4: resolution: {integrity: sha512-q4OyH72mdrE4KellBWtwpr5EwfxHKNoFP9//7FAILO68ROh0rpMd7YQMlTB7T04UEUHjKEEsFGTlVXIee3Viwg==} engines: {node: '>= 10'} cpu: [x64] @@ -14156,7 +15490,7 @@ packages: dev: true optional: true - /@nrwl/nx-linux-x64-musl/15.9.2: + /@nrwl/nx-linux-x64-musl@15.9.2: resolution: {integrity: sha512-EaFUukCbmoHsYECX2AS4pxXH933yesBFVvBgD38DkoFDxDoJMVt6JqYwm+d5R7S4R2P9U3l++aurljQTRq567Q==} engines: {node: '>= 10'} cpu: [x64] @@ -14164,7 +15498,7 @@ packages: requiresBuild: true optional: true - /@nrwl/nx-linux-x64-musl/15.9.3: + /@nrwl/nx-linux-x64-musl@15.9.3: resolution: {integrity: sha512-4ZYDp7T319+xbw7Z7KVtRefzaXJipZfgrM49r+Y1FAfYDc8y18zvKz3slK26wfWz+EUZwKsa/DfA2KmyRG3DvQ==} engines: {node: '>= 10'} cpu: [x64] @@ -14173,7 +15507,7 @@ packages: dev: true optional: true - /@nrwl/nx-linux-x64-musl/15.9.4: + /@nrwl/nx-linux-x64-musl@15.9.4: resolution: {integrity: sha512-67+/XNMR1CgLPyeGX8jqSG6l8yYD0iiwUgcu1Vaxq6N05WwnqVisIW8XzLSRUtKt4WyVQgOWk3aspImpMVOG3Q==} engines: {node: '>= 10'} cpu: [x64] @@ -14182,7 +15516,7 @@ packages: dev: true optional: true - /@nrwl/nx-win32-arm64-msvc/15.9.2: + /@nrwl/nx-win32-arm64-msvc@15.9.2: resolution: {integrity: sha512-PGAe7QMr51ivx1X3avvs8daNlvv1wGo3OFrobjlu5rSyjC1Y3qHwT9+wdlwzNZ93FIqWOq09s+rE5gfZRfpdAg==} engines: {node: '>= 10'} cpu: [arm64] @@ -14190,7 +15524,7 @@ packages: requiresBuild: true optional: true - /@nrwl/nx-win32-arm64-msvc/15.9.3: + /@nrwl/nx-win32-arm64-msvc@15.9.3: resolution: {integrity: sha512-UhgxIPgTZBKN1oxlLPSklkSzVL3hA4lAiVc9A0Utumpbp0ob/Xx+2vHzg3cnmNH3jWkZ+9OsC2dKyeMB6gAbSw==} engines: {node: '>= 10'} cpu: [arm64] @@ -14199,7 +15533,7 @@ packages: dev: true optional: true - /@nrwl/nx-win32-arm64-msvc/15.9.4: + /@nrwl/nx-win32-arm64-msvc@15.9.4: resolution: {integrity: sha512-2rEsq3eOGVCYpYJn2tTJkOGNJm/U8rP/FmqtZXYa6VJv/00XP3Gl00IXFEDaYV6rZo7SWqLxtEPUbjK5LwPzZA==} engines: {node: '>= 10'} cpu: [arm64] @@ -14208,7 +15542,7 @@ packages: dev: true optional: true - /@nrwl/nx-win32-x64-msvc/15.9.2: + /@nrwl/nx-win32-x64-msvc@15.9.2: resolution: {integrity: sha512-Q8onNzhuAZ0l9DNkm8D4Z1AEIzJr8JiT4L2fVBLYrV/R75C2HS3q7lzvfo6oqMY6mXge1cFPcrTtg3YXBQaSWA==} engines: {node: '>= 10'} cpu: [x64] @@ -14216,7 +15550,7 @@ packages: requiresBuild: true optional: true - /@nrwl/nx-win32-x64-msvc/15.9.3: + /@nrwl/nx-win32-x64-msvc@15.9.3: resolution: {integrity: sha512-gdnvqURKnu0EQGOFJ6NUKq6wSB+viNb7Z8qtKhzSmFwVjT8akOnLWn7ZhL9v28TAjLM7/s1Mwvmz/IMj1PGlcQ==} engines: {node: '>= 10'} cpu: [x64] @@ -14225,7 +15559,7 @@ packages: dev: true optional: true - /@nrwl/nx-win32-x64-msvc/15.9.4: + /@nrwl/nx-win32-x64-msvc@15.9.4: resolution: {integrity: sha512-bogVju4Z/hy1jbppqaTNbmV1R4Kg0R5fKxXAXC2LaL7FL0dup31wPumdV+mXttXBNOBDjV8V/Oz1ZqdmxpOJUw==} engines: {node: '>= 10'} cpu: [x64] @@ -14234,57 +15568,50 @@ packages: dev: true optional: true - /@nrwl/tao/13.10.6_typescript@4.9.5: + /@nrwl/tao@13.10.6(typescript@4.9.5): resolution: {integrity: sha512-KPdroDsc0OMnVpY8zWN6jZAro0DuN4xHBMd/L4/W242mU7XRbDUFJL3VIHYyqpHeIToi90fMu+PDBDesiS2nMg==} hasBin: true dependencies: - nx: 13.10.6_typescript@4.9.5 + nx: 13.10.6(typescript@4.9.5) transitivePeerDependencies: - '@swc/helpers' - supports-color - typescript dev: true - /@nrwl/tao/15.9.2: + /@nrwl/tao@15.9.2(@swc/core@1.3.49): resolution: {integrity: sha512-+LqNC37w9c6q6Ukdpf0z0tt1PQFNi4gwhHpJvkYQiKRETHjyrrlyqTNEPEyA7PI62RuYC6VrpVw2gzI7ufqZEA==} hasBin: true dependencies: - nx: 15.9.2_@swc+core@1.3.49 - - /@nrwl/tao/15.9.2_@swc+core@1.3.49: - resolution: {integrity: sha512-+LqNC37w9c6q6Ukdpf0z0tt1PQFNi4gwhHpJvkYQiKRETHjyrrlyqTNEPEyA7PI62RuYC6VrpVw2gzI7ufqZEA==} - hasBin: true - dependencies: - nx: 15.9.2_@swc+core@1.3.49 + nx: 15.9.2(@swc/core@1.3.49) transitivePeerDependencies: - '@swc-node/register' - '@swc/core' - debug - dev: true - /@nrwl/tao/15.9.3_@swc+core@1.3.49: + /@nrwl/tao@15.9.3(@swc/core@1.3.49): resolution: {integrity: sha512-NcjFCbuMa53C3fBrK7qLUImUBySyr9EVwmiZuAv9sZZtm4eILK8w3qihjrB4FFUuLjPU/SViriYXi+hF2tbP4w==} hasBin: true dependencies: - nx: 15.9.3_@swc+core@1.3.49 + nx: 15.9.3(@swc/core@1.3.49) transitivePeerDependencies: - '@swc-node/register' - '@swc/core' - debug dev: true - /@nrwl/tao/15.9.4_@swc+core@1.3.49: + /@nrwl/tao@15.9.4(@swc/core@1.3.49): resolution: {integrity: sha512-m90iz8UsXx1rgPm1dxsBQjSrCViWYZIrp8bpwjSCW24j3kifyilYSXGuKaRwZwUn7eNmH/kZcI9/8qeGIPF4Sg==} hasBin: true dependencies: - nx: 15.9.4_@swc+core@1.3.49 + nx: 15.9.4(@swc/core@1.3.49) transitivePeerDependencies: - '@swc-node/register' - '@swc/core' - debug dev: true - /@nrwl/workspace/13.10.6_436jpmx3has2zen3bhgulcyrsy: + /@nrwl/workspace@13.10.6(eslint@8.38.0)(prettier@2.8.7)(ts-node@10.9.1)(typescript@4.9.5): resolution: {integrity: sha512-BtAlkNdf+cxcq65Trpo+ob5ez7fVDVTUGnlIyIPQ33p5Ge4sp9/0zTlUTBSJRusyLYAIHhpRTGf7w/WcV063/Q==} peerDependencies: prettier: ^2.5.1 @@ -14292,9 +15619,9 @@ packages: prettier: optional: true dependencies: - '@nrwl/devkit': 13.10.6_nx@13.10.6 - '@nrwl/jest': 13.10.6_nx@13.10.6+ts-node@10.9.1 - '@nrwl/linter': 13.10.6_ewoxgidzof766uxkfmif2dqrpu + '@nrwl/devkit': 13.10.6(nx@13.10.6) + '@nrwl/jest': 13.10.6(nx@13.10.6)(ts-node@10.9.1) + '@nrwl/linter': 13.10.6(eslint@8.38.0)(nx@13.10.6)(ts-node@10.9.1)(typescript@4.9.5) '@parcel/watcher': 2.0.4 chalk: 4.1.0 chokidar: 3.5.3 @@ -14309,7 +15636,7 @@ packages: ignore: 5.2.4 minimatch: 3.0.4 npm-run-path: 4.0.1 - nx: 13.10.6_typescript@4.9.5 + nx: 13.10.6(typescript@4.9.5) open: 8.4.2 prettier: 2.8.7 rxjs: 6.6.7 @@ -14330,10 +15657,10 @@ packages: - utf-8-validate dev: true - /@nrwl/workspace/15.9.4_@swc+core@1.3.49: + /@nrwl/workspace@15.9.4(@swc/core@1.3.49): resolution: {integrity: sha512-CvF6Bv0WetYD4eurTiLKyGz3LOLoEVur81RMvpijPeM2tKOhG3DrgX+x55a5NVbXimTU2hJcxk7GSGEtZmJvZg==} dependencies: - '@nrwl/devkit': 15.9.4_nx@15.9.4 + '@nrwl/devkit': 15.9.4(nx@15.9.4) '@parcel/watcher': 2.0.4 chalk: 4.1.2 chokidar: 3.5.3 @@ -14346,7 +15673,7 @@ packages: ignore: 5.2.4 minimatch: 3.0.5 npm-run-path: 4.0.1 - nx: 15.9.4_@swc+core@1.3.49 + nx: 15.9.4(@swc/core@1.3.49) open: 8.4.2 rxjs: 6.6.7 tmp: 0.2.1 @@ -14359,7 +15686,7 @@ packages: - debug dev: true - /@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 @@ -14370,20 +15697,20 @@ packages: transitivePeerDependencies: - encoding - /@octokit/auth-token/2.5.0: + /@octokit/auth-token@2.5.0: resolution: {integrity: sha512-r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g==} dependencies: '@octokit/types': 6.41.0 dev: true - /@octokit/auth-token/3.0.3: + /@octokit/auth-token@3.0.3: resolution: {integrity: sha512-/aFM2M4HVDBT/jjDBa84sJniv1t9Gm/rLkalaz9htOm+L+8JMj1k9w0CkUdcxNyNxZPlTxKPVko+m1VlM58ZVA==} engines: {node: '>= 14'} dependencies: '@octokit/types': 9.0.0 dev: true - /@octokit/core/3.6.0: + /@octokit/core@3.6.0: resolution: {integrity: sha512-7RKRKuA4xTjMhY+eG3jthb3hlZCsOwg3rztWh75Xc+ShDWOfDDATWbeZpAHBNRpm4Tv9WgBMOy1zEJYXG6NJ7Q==} dependencies: '@octokit/auth-token': 2.5.0 @@ -14397,7 +15724,7 @@ packages: - encoding dev: true - /@octokit/core/4.2.0: + /@octokit/core@4.2.0: resolution: {integrity: sha512-AgvDRUg3COpR82P7PBdGZF/NNqGmtMq2NiPqeSsDIeCfYFOZ9gddqWNQHnFdEUf+YwOj4aZYmJnlPp7OXmDIDg==} engines: {node: '>= 14'} dependencies: @@ -14412,7 +15739,7 @@ packages: - encoding dev: true - /@octokit/endpoint/6.0.12: + /@octokit/endpoint@6.0.12: resolution: {integrity: sha512-lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA==} dependencies: '@octokit/types': 6.41.0 @@ -14420,7 +15747,7 @@ packages: universal-user-agent: 6.0.0 dev: true - /@octokit/endpoint/7.0.5: + /@octokit/endpoint@7.0.5: resolution: {integrity: sha512-LG4o4HMY1Xoaec87IqQ41TQ+glvIeTKqfjkCEmt5AIwDZJwQeVZFIEYXrYY6yLwK+pAScb9Gj4q+Nz2qSw1roA==} engines: {node: '>= 14'} dependencies: @@ -14429,7 +15756,7 @@ packages: universal-user-agent: 6.0.0 dev: true - /@octokit/graphql/4.8.0: + /@octokit/graphql@4.8.0: resolution: {integrity: sha512-0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg==} dependencies: '@octokit/request': 5.6.3 @@ -14439,7 +15766,7 @@ packages: - encoding dev: true - /@octokit/graphql/5.0.5: + /@octokit/graphql@5.0.5: resolution: {integrity: sha512-Qwfvh3xdqKtIznjX9lz2D458r7dJPP8l6r4GQkIdWQouZwHQK0mVT88uwiU2bdTU2OtT1uOlKpRciUWldpG0yQ==} engines: {node: '>= 14'} dependencies: @@ -14450,26 +15777,26 @@ packages: - encoding dev: true - /@octokit/openapi-types/12.11.0: + /@octokit/openapi-types@12.11.0: resolution: {integrity: sha512-VsXyi8peyRq9PqIz/tpqiL2w3w80OgVMwBHltTml3LmVvXiphgeqmY9mvBw9Wu7e0QWk/fqD37ux8yP5uVekyQ==} dev: true - /@octokit/openapi-types/16.0.0: + /@octokit/openapi-types@16.0.0: resolution: {integrity: sha512-JbFWOqTJVLHZSUUoF4FzAZKYtqdxWu9Z5m2QQnOyEa04fOFljvyh7D3GYKbfuaSWisqehImiVIMG4eyJeP5VEA==} dev: true - /@octokit/plugin-enterprise-compatibility/1.3.0: + /@octokit/plugin-enterprise-compatibility@1.3.0: resolution: {integrity: sha512-h34sMGdEOER/OKrZJ55v26ntdHb9OPfR1fwOx6Q4qYyyhWA104o11h9tFxnS/l41gED6WEI41Vu2G2zHDVC5lQ==} dependencies: '@octokit/request-error': 2.1.0 '@octokit/types': 6.41.0 dev: true - /@octokit/plugin-enterprise-rest/6.0.1: + /@octokit/plugin-enterprise-rest@6.0.1: resolution: {integrity: sha512-93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw==} dev: true - /@octokit/plugin-paginate-rest/2.21.3_@octokit+core@3.6.0: + /@octokit/plugin-paginate-rest@2.21.3(@octokit/core@3.6.0): resolution: {integrity: sha512-aCZTEf0y2h3OLbrgKkrfFdjRL6eSOo8komneVQJnYecAxIej7Bafor2xhuDJOIFau4pk0i/P28/XgtbyPF0ZHw==} peerDependencies: '@octokit/core': '>=2' @@ -14478,7 +15805,7 @@ packages: '@octokit/types': 6.41.0 dev: true - /@octokit/plugin-paginate-rest/6.0.0_@octokit+core@4.2.0: + /@octokit/plugin-paginate-rest@6.0.0(@octokit/core@4.2.0): resolution: {integrity: sha512-Sq5VU1PfT6/JyuXPyt04KZNVsFOSBaYOAq2QRZUwzVlI10KFvcbUo8lR258AAQL1Et60b0WuVik+zOWKLuDZxw==} engines: {node: '>= 14'} peerDependencies: @@ -14488,7 +15815,7 @@ packages: '@octokit/types': 9.0.0 dev: true - /@octokit/plugin-request-log/1.0.4_@octokit+core@3.6.0: + /@octokit/plugin-request-log@1.0.4(@octokit/core@3.6.0): resolution: {integrity: sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==} peerDependencies: '@octokit/core': '>=3' @@ -14496,7 +15823,7 @@ packages: '@octokit/core': 3.6.0 dev: true - /@octokit/plugin-request-log/1.0.4_@octokit+core@4.2.0: + /@octokit/plugin-request-log@1.0.4(@octokit/core@4.2.0): resolution: {integrity: sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==} peerDependencies: '@octokit/core': '>=3' @@ -14504,7 +15831,7 @@ packages: '@octokit/core': 4.2.0 dev: true - /@octokit/plugin-rest-endpoint-methods/5.16.2_@octokit+core@3.6.0: + /@octokit/plugin-rest-endpoint-methods@5.16.2(@octokit/core@3.6.0): resolution: {integrity: sha512-8QFz29Fg5jDuTPXVtey05BLm7OB+M8fnvE64RNegzX7U+5NUXcOcnpTIK0YfSHBg8gYd0oxIq3IZTe9SfPZiRw==} peerDependencies: '@octokit/core': '>=3' @@ -14514,7 +15841,7 @@ packages: deprecation: 2.3.1 dev: true - /@octokit/plugin-rest-endpoint-methods/7.0.1_@octokit+core@4.2.0: + /@octokit/plugin-rest-endpoint-methods@7.0.1(@octokit/core@4.2.0): resolution: {integrity: sha512-pnCaLwZBudK5xCdrR823xHGNgqOzRnJ/mpC/76YPpNP7DybdsJtP7mdOwh+wYZxK5jqeQuhu59ogMI4NRlBUvA==} engines: {node: '>= 14'} peerDependencies: @@ -14525,14 +15852,14 @@ packages: deprecation: 2.3.1 dev: true - /@octokit/plugin-retry/3.0.9: + /@octokit/plugin-retry@3.0.9: resolution: {integrity: sha512-r+fArdP5+TG6l1Rv/C9hVoty6tldw6cE2pRHNGmFPdyfrc696R6JjrQ3d7HdVqGwuzfyrcaLAKD7K8TX8aehUQ==} dependencies: '@octokit/types': 6.41.0 bottleneck: 2.19.5 dev: true - /@octokit/plugin-throttling/3.7.0_@octokit+core@3.6.0: + /@octokit/plugin-throttling@3.7.0(@octokit/core@3.6.0): resolution: {integrity: sha512-qrKT1Yl/KuwGSC6/oHpLBot3ooC9rq0/ryDYBCpkRtoj+R8T47xTMDT6Tk2CxWopFota/8Pi/2SqArqwC0JPow==} peerDependencies: '@octokit/core': ^3.5.0 @@ -14542,7 +15869,7 @@ packages: bottleneck: 2.19.5 dev: true - /@octokit/request-error/2.1.0: + /@octokit/request-error@2.1.0: resolution: {integrity: sha512-1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg==} dependencies: '@octokit/types': 6.41.0 @@ -14550,7 +15877,7 @@ packages: once: 1.4.0 dev: true - /@octokit/request-error/3.0.3: + /@octokit/request-error@3.0.3: resolution: {integrity: sha512-crqw3V5Iy2uOU5Np+8M/YexTlT8zxCfI+qu+LxUB7SZpje4Qmx3mub5DfEKSO8Ylyk0aogi6TYdf6kxzh2BguQ==} engines: {node: '>= 14'} dependencies: @@ -14559,7 +15886,7 @@ packages: once: 1.4.0 dev: true - /@octokit/request/5.6.3: + /@octokit/request@5.6.3: resolution: {integrity: sha512-bFJl0I1KVc9jYTe9tdGGpAMPy32dLBXXo1dS/YwSCTL/2nd9XeHsY616RE3HPXDVk+a+dBuzyz5YdlXwcDTr2A==} dependencies: '@octokit/endpoint': 6.0.12 @@ -14572,7 +15899,7 @@ packages: - encoding dev: true - /@octokit/request/6.2.3: + /@octokit/request@6.2.3: resolution: {integrity: sha512-TNAodj5yNzrrZ/VxP+H5HiYaZep0H3GU0O7PaF+fhDrt8FPrnkei9Aal/txsN/1P7V3CPiThG0tIvpPDYUsyAA==} engines: {node: '>= 14'} dependencies: @@ -14586,47 +15913,47 @@ packages: - encoding dev: true - /@octokit/rest/18.12.0: + /@octokit/rest@18.12.0: resolution: {integrity: sha512-gDPiOHlyGavxr72y0guQEhLsemgVjwRePayJ+FcKc2SJqKUbxbkvf5kAZEWA/MKvsfYlQAMVzNJE3ezQcxMJ2Q==} dependencies: '@octokit/core': 3.6.0 - '@octokit/plugin-paginate-rest': 2.21.3_@octokit+core@3.6.0 - '@octokit/plugin-request-log': 1.0.4_@octokit+core@3.6.0 - '@octokit/plugin-rest-endpoint-methods': 5.16.2_@octokit+core@3.6.0 + '@octokit/plugin-paginate-rest': 2.21.3(@octokit/core@3.6.0) + '@octokit/plugin-request-log': 1.0.4(@octokit/core@3.6.0) + '@octokit/plugin-rest-endpoint-methods': 5.16.2(@octokit/core@3.6.0) transitivePeerDependencies: - encoding dev: true - /@octokit/rest/19.0.7: + /@octokit/rest@19.0.7: resolution: {integrity: sha512-HRtSfjrWmWVNp2uAkEpQnuGMJsu/+dBr47dRc5QVgsCbnIc1+GFEaoKBWkYG+zjrsHpSqcAElMio+n10c0b5JA==} engines: {node: '>= 14'} dependencies: '@octokit/core': 4.2.0 - '@octokit/plugin-paginate-rest': 6.0.0_@octokit+core@4.2.0 - '@octokit/plugin-request-log': 1.0.4_@octokit+core@4.2.0 - '@octokit/plugin-rest-endpoint-methods': 7.0.1_@octokit+core@4.2.0 + '@octokit/plugin-paginate-rest': 6.0.0(@octokit/core@4.2.0) + '@octokit/plugin-request-log': 1.0.4(@octokit/core@4.2.0) + '@octokit/plugin-rest-endpoint-methods': 7.0.1(@octokit/core@4.2.0) transitivePeerDependencies: - encoding dev: true - /@octokit/types/6.41.0: + /@octokit/types@6.41.0: resolution: {integrity: sha512-eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg==} dependencies: '@octokit/openapi-types': 12.11.0 dev: true - /@octokit/types/9.0.0: + /@octokit/types@9.0.0: resolution: {integrity: sha512-LUewfj94xCMH2rbD5YJ+6AQ4AVjFYTgpp6rboWM5T7N3IsIF65SBEOVcYMGAEzO/kKNiNaW4LoWtoThOhH06gw==} dependencies: '@octokit/openapi-types': 16.0.0 dev: true - /@opentelemetry/api/1.4.1: + /@opentelemetry/api@1.4.1: resolution: {integrity: sha512-O2yRJce1GOc6PAy3QxFM4NzFiWzvScDC1/5ihYBL6BUEVdq0XMWN01sppE+H6bBXbaFYipjwFLEWLg5PaSOThA==} engines: {node: '>=8.0.0'} dev: false - /@parcel/watcher/2.0.4: + /@parcel/watcher@2.0.4: resolution: {integrity: sha512-cTDi+FUDBIUOBKEtj+nhiJ71AZVlkAsQFuGQTun5tV9mwQBQgZvhCzG+URPQc8myeN32yRVZEfVAPCs1RW+Jvg==} engines: {node: '>= 10.0.0'} requiresBuild: true @@ -14634,7 +15961,7 @@ packages: node-addon-api: 3.2.1 node-gyp-build: 4.6.0 - /@parse/node-apn/5.2.3: + /@parse/node-apn@5.2.3: resolution: {integrity: sha512-uBUTTbzk0YyMOcE5qTcNdit5v1BdaECCRSQYbMGU/qY1eHwBaqeWOYd8rwi2Caga3K7IZyQGhpvL4/56H+uvrQ==} engines: {node: '>= 12'} dependencies: @@ -14646,7 +15973,7 @@ packages: - supports-color dev: false - /@phenomnomnominal/tsquery/4.1.1_typescript@4.9.5: + /@phenomnomnominal/tsquery@4.1.1(typescript@4.9.5): resolution: {integrity: sha512-jjMmK1tnZbm1Jq5a7fBliM4gQwjxMU7TFoRNwIyzwlO+eHPRCFv/Nv+H/Gi1jc3WR7QURG8D5d0Tn12YGrUqBQ==} peerDependencies: typescript: ^3 || ^4 @@ -14655,13 +15982,13 @@ packages: typescript: 4.9.5 dev: true - /@pkgjs/parseargs/0.11.0: + /@pkgjs/parseargs@0.11.0: resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} engines: {node: '>=14'} requiresBuild: true optional: true - /@pkgr/utils/2.3.1: + /@pkgr/utils@2.3.1: resolution: {integrity: sha512-wfzX8kc1PMyUILA+1Z/EqoE4UCXGy0iRGMhPwdfae1+f0OXlLqCk+By+aMzgJBzR9AzS4CDizioG6Ss1gvAFJw==} engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} dependencies: @@ -14673,54 +16000,15 @@ packages: tslib: 2.6.2 dev: true - /@plunk/node/2.0.0: + /@plunk/node@2.0.0: resolution: {integrity: sha512-53lgots3fWGAo1QdS18BdEpJl7A29O1F9rYVn/7DfJ07SpJ1ZlzUeeWGVrWGL7PRRZb4a9Tw7Tt8Wnw0Xorhjg==} dependencies: - native-fetch: 4.0.2_undici@5.23.0 + native-fetch: 4.0.2(undici@5.23.0) tslib: 2.5.0 undici: 5.23.0 dev: false - /@pmmmwh/react-refresh-webpack-plugin/0.5.10_kwexxzmt7sjpqjleraytwi4jvu: - resolution: {integrity: sha512-j0Ya0hCFZPd4x40qLzbhGsh9TMtdb+CJQiso+WxLOPNasohq9cc5SNUcwsZaRH6++Xh91Xkm/xHCkuIiIu0LUA==} - engines: {node: '>= 10.13'} - peerDependencies: - '@types/webpack': 4.x || 5.x - react-refresh: '>=0.10.0 <1.0.0' - sockjs-client: ^1.4.0 - type-fest: '>=0.17.0 <4.0.0' - webpack: '>=4.43.0 <6.0.0' - webpack-dev-server: 3.x || 4.x - webpack-hot-middleware: 2.x - webpack-plugin-serve: 0.x || 1.x - peerDependenciesMeta: - '@types/webpack': - optional: true - sockjs-client: - optional: true - type-fest: - optional: true - webpack-dev-server: - optional: true - webpack-hot-middleware: - optional: true - webpack-plugin-serve: - optional: true - dependencies: - ansi-html-community: 0.0.8 - common-path-prefix: 3.0.0 - core-js-pure: 3.30.0 - error-stack-parser: 2.1.4 - find-up: 5.0.0 - html-entities: 2.3.3 - loader-utils: 2.0.4 - react-refresh: 0.11.0 - schema-utils: 3.3.0 - source-map: 0.7.4 - webpack: 5.78.0_u5c4qderjagc6tepfyiby6xhau - webpack-dev-server: 4.11.1_webpack@5.78.0 - - /@pmmmwh/react-refresh-webpack-plugin/0.5.10_u6erfrjwlwtxmtcht2oxrgpjdy: + /@pmmmwh/react-refresh-webpack-plugin@0.5.10(react-refresh@0.11.0)(webpack-dev-server@4.11.1)(webpack@5.78.0): resolution: {integrity: sha512-j0Ya0hCFZPd4x40qLzbhGsh9TMtdb+CJQiso+WxLOPNasohq9cc5SNUcwsZaRH6++Xh91Xkm/xHCkuIiIu0LUA==} engines: {node: '>= 10.13'} peerDependencies: @@ -14756,10 +16044,10 @@ packages: react-refresh: 0.11.0 schema-utils: 3.3.0 source-map: 0.7.4 - webpack: 5.78.0_w67ycjwq2niq3jlxgktvf5aow4 - dev: true + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) + webpack-dev-server: 4.11.1(webpack@5.78.0) - /@pmmmwh/react-refresh-webpack-plugin/0.5.10_wik2mtfr6ctscewm36ogu5s3j4: + /@pmmmwh/react-refresh-webpack-plugin@0.5.10(react-refresh@0.14.0)(webpack-dev-server@4.11.1)(webpack@5.78.0): resolution: {integrity: sha512-j0Ya0hCFZPd4x40qLzbhGsh9TMtdb+CJQiso+WxLOPNasohq9cc5SNUcwsZaRH6++Xh91Xkm/xHCkuIiIu0LUA==} engines: {node: '>= 10.13'} peerDependencies: @@ -14795,11 +16083,11 @@ packages: react-refresh: 0.14.0 schema-utils: 3.3.0 source-map: 0.7.4 - webpack: 5.78.0_u5c4qderjagc6tepfyiby6xhau - webpack-dev-server: 4.11.1_webpack@5.78.0 + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) + webpack-dev-server: 4.11.1(webpack@5.78.0) dev: true - /@pnpm/cli-meta/5.0.0: + /@pnpm/cli-meta@5.0.0: resolution: {integrity: sha512-sI6G+fJ73e79tYehFulbHJDtMj8t5w38G0Pe+gncle+lP0gtBlofvVzgfqhJxjlqq+OGvSdsUIbgOYWvGhOmng==} engines: {node: '>=16.14'} dependencies: @@ -14807,31 +16095,31 @@ packages: load-json-file: 6.2.0 dev: true - /@pnpm/cli-utils/2.0.6_@pnpm+logger@5.0.0: + /@pnpm/cli-utils@2.0.6(@pnpm/logger@5.0.0): resolution: {integrity: sha512-T9IM4JqJGcgZ1BA2ShCUxq25s0dgWIRmUbpP141uSav0h64bPWwWaRVaDvkkCaWY75mjGOkQ77/hRouinsJYBQ==} engines: {node: '>=16.14'} peerDependencies: '@pnpm/logger': ^5.0.0 dependencies: '@pnpm/cli-meta': 5.0.0 - '@pnpm/config': 18.3.0_@pnpm+logger@5.0.0 - '@pnpm/default-reporter': 12.2.0_@pnpm+logger@5.0.0 + '@pnpm/config': 18.3.0(@pnpm/logger@5.0.0) + '@pnpm/default-reporter': 12.2.0(@pnpm/logger@5.0.0) '@pnpm/error': 5.0.0 '@pnpm/logger': 5.0.0 - '@pnpm/manifest-utils': 5.0.0_@pnpm+logger@5.0.0 - '@pnpm/package-is-installable': 8.0.1_@pnpm+logger@5.0.0 + '@pnpm/manifest-utils': 5.0.0(@pnpm/logger@5.0.0) + '@pnpm/package-is-installable': 8.0.1(@pnpm/logger@5.0.0) '@pnpm/read-project-manifest': 5.0.0 '@pnpm/types': 9.0.0 chalk: 4.1.2 load-json-file: 6.2.0 dev: true - /@pnpm/config.env-replace/1.1.0: + /@pnpm/config.env-replace@1.1.0: resolution: {integrity: sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==} engines: {node: '>=12.22.0'} dev: true - /@pnpm/config/18.3.0_@pnpm+logger@5.0.0: + /@pnpm/config@18.3.0(@pnpm/logger@5.0.0): resolution: {integrity: sha512-JNJ2Lz4XLtmyX3OWQM4aG3Y/no0aXJuuAUHL31rLd7D75u+jTT8dvH9oXYy0F+rkbadjQ5SdI4z+k2VJrbm0pg==} engines: {node: '>=16.14'} dependencies: @@ -14841,7 +16129,7 @@ packages: '@pnpm/git-utils': 1.0.0 '@pnpm/matcher': 5.0.0 '@pnpm/npm-conf': 2.1.1 - '@pnpm/pnpmfile': 5.0.6_@pnpm+logger@5.0.0 + '@pnpm/pnpmfile': 5.0.6(@pnpm/logger@5.0.0) '@pnpm/read-project-manifest': 5.0.0 '@pnpm/types': 9.0.0 camelcase: 6.3.0 @@ -14852,7 +16140,7 @@ packages: normalize-registry-url: 2.0.0 path-absolute: 1.0.1 path-name: 1.0.0 - ramda: /@pnpm/ramda/0.28.1 + ramda: /@pnpm/ramda@0.28.1 read-ini-file: 4.0.0 realpath-missing: 1.1.0 which: 3.0.0 @@ -14860,12 +16148,12 @@ packages: - '@pnpm/logger' dev: true - /@pnpm/constants/7.0.0: + /@pnpm/constants@7.0.0: resolution: {integrity: sha512-YA2EO2+uKrDWhtEhsbLdArJwQBr1n5VpCJzz+cLLQ98gbSKCOHAR8qwbn1wChcZitTVAr0HVyxO146nL/wujXg==} engines: {node: '>=16.14'} dev: true - /@pnpm/core-loggers/9.0.0_@pnpm+logger@5.0.0: + /@pnpm/core-loggers@9.0.0(@pnpm/logger@5.0.0): resolution: {integrity: sha512-QLKZBrcf/LGQIZAM+cxd31/LYVZwA38xKow/n/KvSqMcYpNBLwcpAyp6kM+kwI2+QGcmHxlJ3blsRhKh+oMLhQ==} engines: {node: '>=16.14'} peerDependencies: @@ -14875,7 +16163,7 @@ packages: '@pnpm/types': 9.0.0 dev: true - /@pnpm/dedupe.issues-renderer/1.0.0: + /@pnpm/dedupe.issues-renderer@1.0.0: resolution: {integrity: sha512-vlo2t1ERLH3vsL1PtlCue6qfpWofN2Pt2bvGIPtN6Y4siCZVwjy9GU3yXJk1wS2+a7qj9plPiobebadJgV/VHw==} engines: {node: '>=16.14'} dependencies: @@ -14884,19 +16172,19 @@ packages: chalk: 4.1.2 dev: true - /@pnpm/dedupe.types/1.0.0: + /@pnpm/dedupe.types@1.0.0: resolution: {integrity: sha512-WGZ5E7aMPwaM+WMFYszTCP3Sms/gE0nLgI37gFnNbaKgAh5R7GojSHCxLgXqjiz0Jwx+Qi9BmdDgN1cJs5XBsg==} engines: {node: '>=16.14'} dev: true - /@pnpm/default-reporter/12.2.0_@pnpm+logger@5.0.0: + /@pnpm/default-reporter@12.2.0(@pnpm/logger@5.0.0): resolution: {integrity: sha512-bK2GlAY3QBroSOYHVYJSS2FRDnp4eU8ZvrHChhglKBP1ISw/hFL3xD2ozNgzY3tyxTryO7Bybu7DbEtvq2LPYg==} engines: {node: '>=16.14'} peerDependencies: '@pnpm/logger': ^5.0.0 dependencies: - '@pnpm/config': 18.3.0_@pnpm+logger@5.0.0 - '@pnpm/core-loggers': 9.0.0_@pnpm+logger@5.0.0 + '@pnpm/config': 18.3.0(@pnpm/logger@5.0.0) + '@pnpm/core-loggers': 9.0.0(@pnpm/logger@5.0.0) '@pnpm/dedupe.issues-renderer': 1.0.0 '@pnpm/dedupe.types': 1.0.0 '@pnpm/error': 5.0.0 @@ -14909,7 +16197,7 @@ packages: normalize-path: 3.0.0 pretty-bytes: 5.6.0 pretty-ms: 7.0.1 - ramda: /@pnpm/ramda/0.28.1 + ramda: /@pnpm/ramda@0.28.1 right-pad: 1.0.1 rxjs: 7.8.1 semver: 7.5.4 @@ -14918,14 +16206,14 @@ packages: strip-ansi: 6.0.1 dev: true - /@pnpm/error/5.0.0: + /@pnpm/error@5.0.0: resolution: {integrity: sha512-8Bezq6YSSorPyaiQIr3lWF7hTIuatBTPWVCO7rbgJAGw4pq6t3DmLoN2K3EznVHMBIaqEBmkfB1lkKvXaJIVbw==} engines: {node: '>=16.14'} dependencies: '@pnpm/constants': 7.0.0 dev: true - /@pnpm/fetcher-base/14.0.0: + /@pnpm/fetcher-base@14.0.0: resolution: {integrity: sha512-jcRmjlkL4RAKeZWwWwE8fREZtMrdPXYHnl8upgmaBzTDEyXBiztQGqiRO6swGxCRWgycJPo+uUpuPJHF3uQsSg==} engines: {node: '>=16.14'} dependencies: @@ -14934,28 +16222,28 @@ packages: '@types/ssri': 7.1.1 dev: true - /@pnpm/filter-workspace-packages/7.0.6_@pnpm+logger@5.0.0: + /@pnpm/filter-workspace-packages@7.0.6(@pnpm/logger@5.0.0): resolution: {integrity: sha512-SQDAQc0lceXN3Wi2AlS/mxK8vWpnRQmeawUab+S8jCp8AuBaGn8ntqqI2roqHtptGA1V/8tlpl7b4hXuaFzzeQ==} engines: {node: '>=16.14'} dependencies: '@pnpm/error': 5.0.0 - '@pnpm/find-workspace-packages': 6.0.6_@pnpm+logger@5.0.0 + '@pnpm/find-workspace-packages': 6.0.6(@pnpm/logger@5.0.0) '@pnpm/matcher': 5.0.0 '@pnpm/workspace.pkgs-graph': 2.0.4 - execa: /safe-execa/0.1.2 + execa: /safe-execa@0.1.2 find-up: 5.0.0 is-subdir: 1.2.0 micromatch: 4.0.5 - ramda: /@pnpm/ramda/0.28.1 + ramda: /@pnpm/ramda@0.28.1 transitivePeerDependencies: - '@pnpm/logger' dev: true - /@pnpm/find-workspace-packages/6.0.6_@pnpm+logger@5.0.0: + /@pnpm/find-workspace-packages@6.0.6(@pnpm/logger@5.0.0): resolution: {integrity: sha512-pvWUkU7jvDTR7pQphTaoMcgTpCJR9YIiLGdjer5oRKTK1BfSwX9V85YF63o/hB3KXkPOEIJGTBD8rRSS9jgRlQ==} engines: {node: '>=16.14'} dependencies: - '@pnpm/cli-utils': 2.0.6_@pnpm+logger@5.0.0 + '@pnpm/cli-utils': 2.0.6(@pnpm/logger@5.0.0) '@pnpm/constants': 7.0.0 '@pnpm/fs.find-packages': 2.0.0 '@pnpm/types': 9.0.0 @@ -14965,7 +16253,7 @@ packages: - '@pnpm/logger' dev: true - /@pnpm/fs.find-packages/2.0.0: + /@pnpm/fs.find-packages@2.0.0: resolution: {integrity: sha512-D6BjajcUygM3/HzZ824bXwPFOgx8fTUcWLPr2c5WlutpFJiMT81Krfe2fHgIVR8PR4Sed5iLPSchOAw/f2zD5A==} engines: {node: '>=16.14'} dependencies: @@ -14976,21 +16264,21 @@ packages: p-filter: 2.1.0 dev: true - /@pnpm/git-utils/1.0.0: + /@pnpm/git-utils@1.0.0: resolution: {integrity: sha512-lUI+XrzOJN4zdPGOGnFUrmtXAXpXi8wD8OI0nWOZmlh+raqbLzC3VkXu1zgaduOK6YonOcnQW88O+ojav1rAdA==} engines: {node: '>=16.14'} dependencies: - execa: /safe-execa/0.1.2 + execa: /safe-execa@0.1.2 dev: true - /@pnpm/graceful-fs/3.0.0: + /@pnpm/graceful-fs@3.0.0: resolution: {integrity: sha512-72kkqIL2sacOVr6Y6B6xDGjRC4QgTLeIGkw/5XYyeMgMeL9mDE0lonZEOL9JuLS0XPOXQoyDtRCSmUrzAA57LQ==} engines: {node: '>=16.14'} dependencies: graceful-fs: 4.2.11 dev: true - /@pnpm/hooks.types/1.0.0: + /@pnpm/hooks.types@1.0.0: resolution: {integrity: sha512-TITt4Rr1PUZOkhVvMwg4t/pmicX488KlkDnAxiBH2QoNeGDisDn1ZljrZLv2iOXyfZvF7Nbnh9tywtvtCqkp6g==} engines: {node: '>=16.14'} dependencies: @@ -14998,14 +16286,14 @@ packages: '@pnpm/types': 9.0.0 dev: true - /@pnpm/lockfile-types/5.0.0: + /@pnpm/lockfile-types@5.0.0: resolution: {integrity: sha512-2M82hciNNIczVtWmQF3eSXPFVWvGWBvq+vssBkSIP0tZW/izYyvkUf2NN8ktNrB/w0jDCVEzujC6RXiRR9b1bg==} engines: {node: '>=16.14'} dependencies: '@pnpm/types': 9.0.0 dev: true - /@pnpm/logger/5.0.0: + /@pnpm/logger@5.0.0: resolution: {integrity: sha512-YfcB2QrX+Wx1o6LD1G2Y2fhDhOix/bAY/oAnMpHoNLsKkWIRbt1oKLkIFvxBMzLwAEPqnYWguJrYC+J6i4ywbw==} engines: {node: '>=12.17'} dependencies: @@ -15013,32 +16301,32 @@ packages: ndjson: 2.0.0 dev: true - /@pnpm/manifest-utils/5.0.0_@pnpm+logger@5.0.0: + /@pnpm/manifest-utils@5.0.0(@pnpm/logger@5.0.0): resolution: {integrity: sha512-LzUkqn6tEXFeQ3V5W41eKgusDEqJY3pskB7bcLDDJttt9wVRNntTDXmRYa6EhPy3yEYl9v+mEfoiHdZ0RdbWrg==} engines: {node: '>=16.14'} dependencies: - '@pnpm/core-loggers': 9.0.0_@pnpm+logger@5.0.0 + '@pnpm/core-loggers': 9.0.0(@pnpm/logger@5.0.0) '@pnpm/error': 5.0.0 '@pnpm/types': 9.0.0 transitivePeerDependencies: - '@pnpm/logger' dev: true - /@pnpm/matcher/5.0.0: + /@pnpm/matcher@5.0.0: resolution: {integrity: sha512-uh+JBmW8XHGwz9x0K0Ok+TtMiu3ghEaqHHm7dqIubitBP8y9Y0LLP6D2fxWblogjpVzSlH3DpDR1Vicuhw9/cQ==} engines: {node: '>=16.14'} dependencies: escape-string-regexp: 4.0.0 dev: true - /@pnpm/network.ca-file/1.0.2: + /@pnpm/network.ca-file@1.0.2: resolution: {integrity: sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==} engines: {node: '>=12.22.0'} dependencies: graceful-fs: 4.2.10 dev: true - /@pnpm/npm-conf/2.1.1: + /@pnpm/npm-conf@2.1.1: resolution: {integrity: sha512-yfRcuupmxxeDOSxvw4g+wFCrGiPD0L32f5WMzqMXp7Rl93EOCdFiDcaSNnZ10Up9GdNqkj70UTa8hfhPFphaZA==} engines: {node: '>=12'} dependencies: @@ -15047,7 +16335,7 @@ packages: config-chain: 1.1.13 dev: true - /@pnpm/npm-package-arg/1.0.0: + /@pnpm/npm-package-arg@1.0.0: resolution: {integrity: sha512-oQYP08exi6mOPdAZZWcNIGS+KKPsnNwUBzSuAEGWuCcqwMAt3k/WVCqVIXzBxhO5sP2b43og69VHmPj6IroKqw==} engines: {node: '>=14.6'} dependencies: @@ -15056,29 +16344,29 @@ packages: validate-npm-package-name: 4.0.0 dev: true - /@pnpm/package-is-installable/8.0.1_@pnpm+logger@5.0.0: + /@pnpm/package-is-installable@8.0.1(@pnpm/logger@5.0.0): resolution: {integrity: sha512-3XkJj+r/65QKXzBiXjEGQE7EiKE9q6pP3IOxv2tvr/mIWIiGiF4yg/PNNBDTDKQ524MdH1Yi6VcsE93omYCl9Q==} engines: {node: '>=16.14'} peerDependencies: '@pnpm/logger': ^5.0.0 dependencies: - '@pnpm/core-loggers': 9.0.0_@pnpm+logger@5.0.0 + '@pnpm/core-loggers': 9.0.0(@pnpm/logger@5.0.0) '@pnpm/error': 5.0.0 '@pnpm/logger': 5.0.0 '@pnpm/types': 9.0.0 detect-libc: 2.0.1 - execa: /safe-execa/0.1.2 + execa: /safe-execa@0.1.2 mem: 8.1.1 semver: 7.5.4 dev: true - /@pnpm/pnpmfile/5.0.6_@pnpm+logger@5.0.0: + /@pnpm/pnpmfile@5.0.6(@pnpm/logger@5.0.0): resolution: {integrity: sha512-J5RjkpjinJopUBwgSSkLTzonpyrmtMPq4x41ct5OBK685vVdvnrFabkoeYmi6I6XcO2k1SOKad5ds1r5Z/vd6A==} engines: {node: '>=16.14'} peerDependencies: '@pnpm/logger': ^5.0.0 dependencies: - '@pnpm/core-loggers': 9.0.0_@pnpm+logger@5.0.0 + '@pnpm/core-loggers': 9.0.0(@pnpm/logger@5.0.0) '@pnpm/error': 5.0.0 '@pnpm/hooks.types': 1.0.0 '@pnpm/lockfile-types': 5.0.0 @@ -15089,11 +16377,11 @@ packages: path-absolute: 1.0.1 dev: true - /@pnpm/ramda/0.28.1: + /@pnpm/ramda@0.28.1: resolution: {integrity: sha512-zcAG+lvU0fMziNeGXpPyCyCJYp5ZVrPElEE4t14jAmViaihohocZ+dDkcRIyAomox8pQsuZnv1EyHR+pOhmUWw==} dev: true - /@pnpm/read-project-manifest/5.0.0: + /@pnpm/read-project-manifest@5.0.0: resolution: {integrity: sha512-ACsUTn6ZkJ7hG9jZaNso6KvmkesnpUUp+MgoliJVQa7Agbw+uN6RAdWSg291Ct5M/WPvUUSxE6lvIOOR/q+MEw==} engines: {node: '>=16.14'} dependencies: @@ -15112,7 +16400,7 @@ packages: strip-bom: 4.0.0 dev: true - /@pnpm/render-peer-issues/4.0.0: + /@pnpm/render-peer-issues@4.0.0: resolution: {integrity: sha512-NZWoeKAcXkqMOhXss9LBY7PVaD73zYrvd1Qub/cx3KgZaxlrUs5zKVUpzAZN3QhVVxRKZndpZhAzhGnNBCyilQ==} engines: {node: '>=16.14'} dependencies: @@ -15122,21 +16410,21 @@ packages: cli-columns: 4.0.0 dev: true - /@pnpm/resolve-workspace-range/5.0.1: + /@pnpm/resolve-workspace-range@5.0.1: resolution: {integrity: sha512-yQ0pMthlw8rTgS/C9hrjne+NEnnSNevCjtdodd7i15I59jMBYciHifZ/vjg0NY+Jl+USTc3dBE+0h/4tdYjMKg==} engines: {node: '>=16.14'} dependencies: semver: 7.5.4 dev: true - /@pnpm/resolver-base/10.0.0: + /@pnpm/resolver-base@10.0.0: resolution: {integrity: sha512-BWZFv1XPHjt2bvKH6+Ltj9tkN0hQELrznZ2sScbDwVFOje+Eadq6Z1pASo9L09v+rF6F4Bd/npq10cM3/+ERjw==} engines: {node: '>=16.14'} dependencies: '@pnpm/types': 9.0.0 dev: true - /@pnpm/store-controller-types/15.0.0: + /@pnpm/store-controller-types@15.0.0: resolution: {integrity: sha512-Tx0LOEeEmJkXxZAr/5bgv596V0aE0D5prhV0FMaTE6nZPwDx+3wogNbYv5N+aldqrriE91W9+qYqOErA1IGHiA==} engines: {node: '>=16.14'} dependencies: @@ -15145,33 +16433,33 @@ packages: '@pnpm/types': 9.0.0 dev: true - /@pnpm/text.comments-parser/2.0.0: + /@pnpm/text.comments-parser@2.0.0: resolution: {integrity: sha512-DRWtTmmxQQtuWHf1xPt9bqzCSq8d0MQF5x1kdpCDMLd7xk3nP4To2/OGkPrb8MKbrWsgCNDwXyKCFlEKrAg7fg==} engines: {node: '>=16.14'} dependencies: strip-comments-strings: 1.2.0 dev: true - /@pnpm/types/9.0.0: + /@pnpm/types@9.0.0: resolution: {integrity: sha512-+nNqpNvqb1u3WW/cHDo7tGjqJBWWe4GAHEdELrz4QMQwGAtG/1GF6NMc0cewdwgU2k67CI3JHGu4quZJnMEUJg==} engines: {node: '>=16.14'} dev: true - /@pnpm/util.lex-comparator/1.0.0: + /@pnpm/util.lex-comparator@1.0.0: resolution: {integrity: sha512-3aBQPHntVgk5AweBWZn+1I/fqZ9krK/w01197aYVkAJQGftb+BVWgEepxY5GChjSW12j52XX+CmfynYZ/p0DFQ==} engines: {node: '>=12.22.0'} dev: true - /@pnpm/workspace.pkgs-graph/2.0.4: + /@pnpm/workspace.pkgs-graph@2.0.4: resolution: {integrity: sha512-zagrdMslmNZJmJGmKvKda+wEp37ZYxOOuRplrwWx/FAeKOCuw7cGPbJjoMunCYY4Qzjwwb4BKBVrujmzYD9ohA==} engines: {node: '>=16.14'} dependencies: '@pnpm/npm-package-arg': 1.0.0 '@pnpm/resolve-workspace-range': 5.0.1 - ramda: /@pnpm/ramda/0.28.1 + ramda: /@pnpm/ramda@0.28.1 dev: true - /@pnpm/write-project-manifest/5.0.0: + /@pnpm/write-project-manifest@5.0.0: resolution: {integrity: sha512-PASOBuYpkQ98H7ywykN7sh1annYrMO0IGAhBt3prljuk55XQiZfrwhd08u3otAE03Np36h3PtYzJPrXCAyOBew==} engines: {node: '>=16.14'} dependencies: @@ -15182,92 +16470,91 @@ packages: write-yaml-file: 4.2.0 dev: true - /@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.7: + /@popperjs/core@2.11.7: resolution: {integrity: sha512-Cr4OjIkipTtcXKjAsm8agyleBuDHvxzeBoa1v543lbv1YaIwQjESsVcmjiWiPEbC1FIeHOG/Op9kdCmAmiS3Kw==} 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 - /@radix-ui/number/0.1.0: + /@radix-ui/number@0.1.0: resolution: {integrity: sha512-rpf6QiOWLHAkM4FEMYu9i+5Jr8cKT893+R4mPpcdsy4LD7omr9JfdOqj/h/xPA5+EcVrpMMlU6rrRYpUB5UI8g==} dependencies: '@babel/runtime': 7.21.0 dev: false - /@radix-ui/number/1.0.0: + /@radix-ui/number@1.0.0: resolution: {integrity: sha512-Ofwh/1HX69ZfJRiRBMTy7rgjAzHmwe4kW9C9Y99HTRUcYLUuVT0KESFj15rPjRgKJs20GPq8Bm5aEDJ8DuA3vA==} dependencies: '@babel/runtime': 7.21.0 dev: false - /@radix-ui/number/1.0.1: + /@radix-ui/number@1.0.1: resolution: {integrity: sha512-T5gIdVO2mmPW3NNhjNgEP3cqMXjXL9UbO0BzWcXfvdBs+BohbQxvd/K5hSVKmn9/lbTdsQVKbUcP5WLCwvUbBg==} dependencies: '@babel/runtime': 7.21.0 - /@radix-ui/primitive/0.1.0: + /@radix-ui/primitive@0.1.0: resolution: {integrity: sha512-tqxZKybwN5Fa3VzZry4G6mXAAb9aAqKmPtnVbZpL0vsBwvOHTBwsjHVPXylocYLwEtBY9SCe665bYnNB515uoA==} dependencies: '@babel/runtime': 7.21.0 dev: false - /@radix-ui/primitive/1.0.0: + /@radix-ui/primitive@1.0.0: resolution: {integrity: sha512-3e7rn8FDMin4CgeL7Z/49smCA3rFYY3Ha2rUQ7HRWFadS5iCRw08ZgVT1LaNTCNqgvrUiyczLflrVrF0SRQtNA==} dependencies: '@babel/runtime': 7.21.0 dev: false - /@radix-ui/primitive/1.0.1: + /@radix-ui/primitive@1.0.1: resolution: {integrity: sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw==} dependencies: '@babel/runtime': 7.21.0 - /@radix-ui/react-arrow/1.0.3_ktlmga7inmpnhh4xu7kimj7cou: + /@radix-ui/react-arrow@1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==} peerDependencies: '@types/react': '*' @@ -15281,13 +16568,13 @@ packages: optional: true dependencies: '@babel/runtime': 7.21.0 - '@radix-ui/react-primitive': 1.0.3_ktlmga7inmpnhh4xu7kimj7cou + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) '@types/react': 17.0.53 '@types/react-dom': 17.0.19 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) - /@radix-ui/react-collection/1.0.3_ktlmga7inmpnhh4xu7kimj7cou: + /@radix-ui/react-collection@1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==} peerDependencies: '@types/react': '*' @@ -15301,16 +16588,16 @@ packages: optional: true dependencies: '@babel/runtime': 7.21.0 - '@radix-ui/react-compose-refs': 1.0.1_h7fc2el62uaa77gho3xhys6ola - '@radix-ui/react-context': 1.0.1_h7fc2el62uaa77gho3xhys6ola - '@radix-ui/react-primitive': 1.0.3_ktlmga7inmpnhh4xu7kimj7cou - '@radix-ui/react-slot': 1.0.2_h7fc2el62uaa77gho3xhys6ola + '@radix-ui/react-compose-refs': 1.0.1(@types/react@17.0.53)(react@17.0.2) + '@radix-ui/react-context': 1.0.1(@types/react@17.0.53)(react@17.0.2) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) + '@radix-ui/react-slot': 1.0.2(@types/react@17.0.53)(react@17.0.2) '@types/react': 17.0.53 '@types/react-dom': 17.0.19 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) - /@radix-ui/react-compose-refs/0.1.0_react@17.0.2: + /@radix-ui/react-compose-refs@0.1.0(react@17.0.2): resolution: {integrity: sha512-eyclbh+b77k+69Dk72q3694OHrn9B3QsoIRx7ywX341U9RK1ThgQjMFZoPtmZNQTksXHLNEiefR8hGVeFyInGg==} peerDependencies: react: ^16.8 || ^17.0 @@ -15319,7 +16606,7 @@ packages: react: 17.0.2 dev: false - /@radix-ui/react-compose-refs/1.0.0_react@17.0.2: + /@radix-ui/react-compose-refs@1.0.0(react@17.0.2): resolution: {integrity: sha512-0KaSv6sx787/hK3eF53iOkiSLwAGlFMx5lotrqD2pTjB18KbybKoEIgkNZTKC60YECDQTKGTRcDBILwZVqVKvA==} peerDependencies: react: ^16.8 || ^17.0 || ^18.0 @@ -15328,7 +16615,7 @@ packages: react: 17.0.2 dev: false - /@radix-ui/react-compose-refs/1.0.1_h7fc2el62uaa77gho3xhys6ola: + /@radix-ui/react-compose-refs@1.0.1(@types/react@17.0.53)(react@17.0.2): resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==} peerDependencies: '@types/react': '*' @@ -15341,7 +16628,7 @@ packages: '@types/react': 17.0.53 react: 17.0.2 - /@radix-ui/react-context/0.1.1_react@17.0.2: + /@radix-ui/react-context@0.1.1(react@17.0.2): resolution: {integrity: sha512-PkyVX1JsLBioeu0jB9WvRpDBBLtLZohVDT3BB5CTSJqActma8S8030P57mWZb4baZifMvN7KKWPAA40UmWKkQg==} peerDependencies: react: ^16.8 || ^17.0 @@ -15350,7 +16637,7 @@ packages: react: 17.0.2 dev: false - /@radix-ui/react-context/1.0.0_react@17.0.2: + /@radix-ui/react-context@1.0.0(react@17.0.2): resolution: {integrity: sha512-1pVM9RfOQ+n/N5PJK33kRSKsr1glNxomxONs5c49MliinBY6Yw2Q995qfBUUo0/Mbg05B/sGA0gkgPI7kmSHBg==} peerDependencies: react: ^16.8 || ^17.0 || ^18.0 @@ -15359,7 +16646,7 @@ packages: react: 17.0.2 dev: false - /@radix-ui/react-context/1.0.1_h7fc2el62uaa77gho3xhys6ola: + /@radix-ui/react-context@1.0.1(@types/react@17.0.53)(react@17.0.2): resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==} peerDependencies: '@types/react': '*' @@ -15372,7 +16659,7 @@ packages: '@types/react': 17.0.53 react: 17.0.2 - /@radix-ui/react-direction/1.0.0_react@17.0.2: + /@radix-ui/react-direction@1.0.0(react@17.0.2): resolution: {integrity: sha512-2HV05lGUgYcA6xgLQ4BKPDmtL+QbIZYH5fCOTAOOcJ5O0QbWS3i9lKaurLzliYUDhORI2Qr3pyjhJh44lKA3rQ==} peerDependencies: react: ^16.8 || ^17.0 || ^18.0 @@ -15381,7 +16668,7 @@ packages: react: 17.0.2 dev: false - /@radix-ui/react-direction/1.0.1_h7fc2el62uaa77gho3xhys6ola: + /@radix-ui/react-direction@1.0.1(@types/react@17.0.53)(react@17.0.2): resolution: {integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==} peerDependencies: '@types/react': '*' @@ -15394,7 +16681,7 @@ packages: '@types/react': 17.0.53 react: 17.0.2 - /@radix-ui/react-dismissable-layer/1.0.4_ktlmga7inmpnhh4xu7kimj7cou: + /@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-7UpBa/RKMoHJYjie1gkF1DlK8l1fdU/VKDpoS3rCCo8YBJR294GwcEHyxHw72yvphJ7ld0AXEcSLAzY2F/WyCg==} peerDependencies: '@types/react': '*' @@ -15409,16 +16696,16 @@ packages: dependencies: '@babel/runtime': 7.21.0 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1_h7fc2el62uaa77gho3xhys6ola - '@radix-ui/react-primitive': 1.0.3_ktlmga7inmpnhh4xu7kimj7cou - '@radix-ui/react-use-callback-ref': 1.0.1_h7fc2el62uaa77gho3xhys6ola - '@radix-ui/react-use-escape-keydown': 1.0.3_h7fc2el62uaa77gho3xhys6ola + '@radix-ui/react-compose-refs': 1.0.1(@types/react@17.0.53)(react@17.0.2) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@17.0.53)(react@17.0.2) + '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@17.0.53)(react@17.0.2) '@types/react': 17.0.53 '@types/react-dom': 17.0.19 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) - /@radix-ui/react-focus-guards/1.0.1_h7fc2el62uaa77gho3xhys6ola: + /@radix-ui/react-focus-guards@1.0.1(@types/react@17.0.53)(react@17.0.2): resolution: {integrity: sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==} peerDependencies: '@types/react': '*' @@ -15431,7 +16718,7 @@ packages: '@types/react': 17.0.53 react: 17.0.2 - /@radix-ui/react-focus-scope/1.0.3_ktlmga7inmpnhh4xu7kimj7cou: + /@radix-ui/react-focus-scope@1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-upXdPfqI4islj2CslyfUBNlaJCPybbqRHAi1KER7Isel9Q2AtSJ0zRBZv8mWQiFXD2nyAJ4BhC3yXgZ6kMBSrQ==} peerDependencies: '@types/react': '*' @@ -15445,15 +16732,15 @@ packages: optional: true dependencies: '@babel/runtime': 7.21.0 - '@radix-ui/react-compose-refs': 1.0.1_h7fc2el62uaa77gho3xhys6ola - '@radix-ui/react-primitive': 1.0.3_ktlmga7inmpnhh4xu7kimj7cou - '@radix-ui/react-use-callback-ref': 1.0.1_h7fc2el62uaa77gho3xhys6ola + '@radix-ui/react-compose-refs': 1.0.1(@types/react@17.0.53)(react@17.0.2) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@17.0.53)(react@17.0.2) '@types/react': 17.0.53 '@types/react-dom': 17.0.19 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) - /@radix-ui/react-id/1.0.1_h7fc2el62uaa77gho3xhys6ola: + /@radix-ui/react-id@1.0.1(@types/react@17.0.53)(react@17.0.2): resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==} peerDependencies: '@types/react': '*' @@ -15463,11 +16750,11 @@ packages: optional: true dependencies: '@babel/runtime': 7.21.0 - '@radix-ui/react-use-layout-effect': 1.0.1_h7fc2el62uaa77gho3xhys6ola + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@17.0.53)(react@17.0.2) '@types/react': 17.0.53 react: 17.0.2 - /@radix-ui/react-popper/1.1.2_ktlmga7inmpnhh4xu7kimj7cou: + /@radix-ui/react-popper@1.1.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-1CnGGfFi/bbqtJZZ0P/NQY20xdG3E0LALJaLUEoKwPLwl6PPPfbeiCqMVQnhoFRAxjJj4RpBRJzDmUgsex2tSg==} peerDependencies: '@types/react': '*' @@ -15481,22 +16768,22 @@ packages: optional: true dependencies: '@babel/runtime': 7.21.0 - '@floating-ui/react-dom': 2.0.2_sfoxds7t5ydpegc3knd667wn6m - '@radix-ui/react-arrow': 1.0.3_ktlmga7inmpnhh4xu7kimj7cou - '@radix-ui/react-compose-refs': 1.0.1_h7fc2el62uaa77gho3xhys6ola - '@radix-ui/react-context': 1.0.1_h7fc2el62uaa77gho3xhys6ola - '@radix-ui/react-primitive': 1.0.3_ktlmga7inmpnhh4xu7kimj7cou - '@radix-ui/react-use-callback-ref': 1.0.1_h7fc2el62uaa77gho3xhys6ola - '@radix-ui/react-use-layout-effect': 1.0.1_h7fc2el62uaa77gho3xhys6ola - '@radix-ui/react-use-rect': 1.0.1_h7fc2el62uaa77gho3xhys6ola - '@radix-ui/react-use-size': 1.0.1_h7fc2el62uaa77gho3xhys6ola + '@floating-ui/react-dom': 2.0.2(react-dom@17.0.2)(react@17.0.2) + '@radix-ui/react-arrow': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@17.0.53)(react@17.0.2) + '@radix-ui/react-context': 1.0.1(@types/react@17.0.53)(react@17.0.2) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@17.0.53)(react@17.0.2) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@17.0.53)(react@17.0.2) + '@radix-ui/react-use-rect': 1.0.1(@types/react@17.0.53)(react@17.0.2) + '@radix-ui/react-use-size': 1.0.1(@types/react@17.0.53)(react@17.0.2) '@radix-ui/rect': 1.0.1 '@types/react': 17.0.53 '@types/react-dom': 17.0.19 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) - /@radix-ui/react-portal/1.0.3_ktlmga7inmpnhh4xu7kimj7cou: + /@radix-ui/react-portal@1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-xLYZeHrWoPmA5mEKEfZZevoVRK/Q43GfzRXkWV6qawIWWK8t6ifIiLQdd7rmQ4Vk1bmI21XhqF9BN3jWf+phpA==} peerDependencies: '@types/react': '*' @@ -15510,59 +16797,59 @@ packages: optional: true dependencies: '@babel/runtime': 7.21.0 - '@radix-ui/react-primitive': 1.0.3_ktlmga7inmpnhh4xu7kimj7cou + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) '@types/react': 17.0.53 '@types/react-dom': 17.0.19 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) - /@radix-ui/react-presence/0.1.2_react@17.0.2: + /@radix-ui/react-presence@0.1.2(react@17.0.2): resolution: {integrity: sha512-3BRlFZraooIUfRlyN+b/Xs5hq1lanOOo/+3h6Pwu2GMFjkGKKa4Rd51fcqGqnVlbr3jYg+WLuGyAV4KlgqwrQw==} peerDependencies: react: '>=16.8' dependencies: '@babel/runtime': 7.21.0 - '@radix-ui/react-compose-refs': 0.1.0_react@17.0.2 - '@radix-ui/react-use-layout-effect': 0.1.0_react@17.0.2 + '@radix-ui/react-compose-refs': 0.1.0(react@17.0.2) + '@radix-ui/react-use-layout-effect': 0.1.0(react@17.0.2) react: 17.0.2 dev: false - /@radix-ui/react-presence/1.0.0_sfoxds7t5ydpegc3knd667wn6m: + /@radix-ui/react-presence@1.0.0(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-A+6XEvN01NfVWiKu38ybawfHsBjWum42MRPnEuqPsBZ4eV7e/7K321B5VgYMPv3Xx5An6o1/l9ZuDBgmcmWK3w==} peerDependencies: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: '@babel/runtime': 7.21.0 - '@radix-ui/react-compose-refs': 1.0.0_react@17.0.2 - '@radix-ui/react-use-layout-effect': 1.0.0_react@17.0.2 + '@radix-ui/react-compose-refs': 1.0.0(react@17.0.2) + '@radix-ui/react-use-layout-effect': 1.0.0(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /@radix-ui/react-primitive/0.1.4_react@17.0.2: + /@radix-ui/react-primitive@0.1.4(react@17.0.2): resolution: {integrity: sha512-6gSl2IidySupIMJFjYnDIkIWRyQdbu/AHK7rbICPani+LW4b0XdxBXc46og/iZvuwW8pjCS8I2SadIerv84xYA==} peerDependencies: react: ^16.8 || ^17.0 dependencies: '@babel/runtime': 7.21.0 - '@radix-ui/react-slot': 0.1.2_react@17.0.2 + '@radix-ui/react-slot': 0.1.2(react@17.0.2) react: 17.0.2 dev: false - /@radix-ui/react-primitive/1.0.1_sfoxds7t5ydpegc3knd667wn6m: + /@radix-ui/react-primitive@1.0.1(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-fHbmislWVkZaIdeF6GZxF0A/NH/3BjrGIYj+Ae6eTmTCr7EB0RQAAVEiqsXK6p3/JcRqVSBQoceZroj30Jj3XA==} peerDependencies: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: '@babel/runtime': 7.21.0 - '@radix-ui/react-slot': 1.0.1_react@17.0.2 + '@radix-ui/react-slot': 1.0.1(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /@radix-ui/react-primitive/1.0.3_ktlmga7inmpnhh4xu7kimj7cou: + /@radix-ui/react-primitive@1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==} peerDependencies: '@types/react': '*' @@ -15576,13 +16863,13 @@ packages: optional: true dependencies: '@babel/runtime': 7.21.0 - '@radix-ui/react-slot': 1.0.2_h7fc2el62uaa77gho3xhys6ola + '@radix-ui/react-slot': 1.0.2(@types/react@17.0.53)(react@17.0.2) '@types/react': 17.0.53 '@types/react-dom': 17.0.19 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) - /@radix-ui/react-roving-focus/1.0.4_ktlmga7inmpnhh4xu7kimj7cou: + /@radix-ui/react-roving-focus@1.0.4(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ==} peerDependencies: '@types/react': '*' @@ -15597,20 +16884,20 @@ packages: dependencies: '@babel/runtime': 7.21.0 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3_ktlmga7inmpnhh4xu7kimj7cou - '@radix-ui/react-compose-refs': 1.0.1_h7fc2el62uaa77gho3xhys6ola - '@radix-ui/react-context': 1.0.1_h7fc2el62uaa77gho3xhys6ola - '@radix-ui/react-direction': 1.0.1_h7fc2el62uaa77gho3xhys6ola - '@radix-ui/react-id': 1.0.1_h7fc2el62uaa77gho3xhys6ola - '@radix-ui/react-primitive': 1.0.3_ktlmga7inmpnhh4xu7kimj7cou - '@radix-ui/react-use-callback-ref': 1.0.1_h7fc2el62uaa77gho3xhys6ola - '@radix-ui/react-use-controllable-state': 1.0.1_h7fc2el62uaa77gho3xhys6ola + '@radix-ui/react-collection': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@17.0.53)(react@17.0.2) + '@radix-ui/react-context': 1.0.1(@types/react@17.0.53)(react@17.0.2) + '@radix-ui/react-direction': 1.0.1(@types/react@17.0.53)(react@17.0.2) + '@radix-ui/react-id': 1.0.1(@types/react@17.0.53)(react@17.0.2) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@17.0.53)(react@17.0.2) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@17.0.53)(react@17.0.2) '@types/react': 17.0.53 '@types/react-dom': 17.0.19 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) - /@radix-ui/react-scroll-area/0.1.4_react@17.0.2: + /@radix-ui/react-scroll-area@0.1.4(react@17.0.2): resolution: {integrity: sha512-QHxRsjy+hsHwQYJ9cCNgSJ5+6ioZu1KhwD1UOXoHNciuFGMX08v+uJPKXIz+ySv03Rx6cOz6f/Fk5aPHRMFi/A==} peerDependencies: react: ^16.8 || ^17.0 @@ -15618,17 +16905,17 @@ packages: '@babel/runtime': 7.21.0 '@radix-ui/number': 0.1.0 '@radix-ui/primitive': 0.1.0 - '@radix-ui/react-compose-refs': 0.1.0_react@17.0.2 - '@radix-ui/react-context': 0.1.1_react@17.0.2 - '@radix-ui/react-presence': 0.1.2_react@17.0.2 - '@radix-ui/react-primitive': 0.1.4_react@17.0.2 - '@radix-ui/react-use-callback-ref': 0.1.0_react@17.0.2 - '@radix-ui/react-use-direction': 0.1.0_react@17.0.2 - '@radix-ui/react-use-layout-effect': 0.1.0_react@17.0.2 + '@radix-ui/react-compose-refs': 0.1.0(react@17.0.2) + '@radix-ui/react-context': 0.1.1(react@17.0.2) + '@radix-ui/react-presence': 0.1.2(react@17.0.2) + '@radix-ui/react-primitive': 0.1.4(react@17.0.2) + '@radix-ui/react-use-callback-ref': 0.1.0(react@17.0.2) + '@radix-ui/react-use-direction': 0.1.0(react@17.0.2) + '@radix-ui/react-use-layout-effect': 0.1.0(react@17.0.2) react: 17.0.2 dev: false - /@radix-ui/react-scroll-area/1.0.2_sfoxds7t5ydpegc3knd667wn6m: + /@radix-ui/react-scroll-area@1.0.2(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-k8VseTxI26kcKJaX0HPwkvlNBPTs56JRdYzcZ/vzrNUkDlvXBy8sMc7WvCpYzZkHgb+hd72VW9MqkqecGtuNgg==} peerDependencies: react: ^16.8 || ^17.0 || ^18.0 @@ -15637,18 +16924,18 @@ packages: '@babel/runtime': 7.21.0 '@radix-ui/number': 1.0.0 '@radix-ui/primitive': 1.0.0 - '@radix-ui/react-compose-refs': 1.0.0_react@17.0.2 - '@radix-ui/react-context': 1.0.0_react@17.0.2 - '@radix-ui/react-direction': 1.0.0_react@17.0.2 - '@radix-ui/react-presence': 1.0.0_sfoxds7t5ydpegc3knd667wn6m - '@radix-ui/react-primitive': 1.0.1_sfoxds7t5ydpegc3knd667wn6m - '@radix-ui/react-use-callback-ref': 1.0.0_react@17.0.2 - '@radix-ui/react-use-layout-effect': 1.0.0_react@17.0.2 + '@radix-ui/react-compose-refs': 1.0.0(react@17.0.2) + '@radix-ui/react-context': 1.0.0(react@17.0.2) + '@radix-ui/react-direction': 1.0.0(react@17.0.2) + '@radix-ui/react-presence': 1.0.0(react-dom@17.0.2)(react@17.0.2) + '@radix-ui/react-primitive': 1.0.1(react-dom@17.0.2)(react@17.0.2) + '@radix-ui/react-use-callback-ref': 1.0.0(react@17.0.2) + '@radix-ui/react-use-layout-effect': 1.0.0(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /@radix-ui/react-select/1.2.2_ktlmga7inmpnhh4xu7kimj7cou: + /@radix-ui/react-select@1.2.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-zI7McXr8fNaSrUY9mZe4x/HC0jTLY9fWNhO1oLWYMQGDXuV4UCivIGTxwioSzO0ZCYX9iSLyWmAh/1TOmX3Cnw==} peerDependencies: '@types/react': '*' @@ -15664,31 +16951,31 @@ packages: '@babel/runtime': 7.21.0 '@radix-ui/number': 1.0.1 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3_ktlmga7inmpnhh4xu7kimj7cou - '@radix-ui/react-compose-refs': 1.0.1_h7fc2el62uaa77gho3xhys6ola - '@radix-ui/react-context': 1.0.1_h7fc2el62uaa77gho3xhys6ola - '@radix-ui/react-direction': 1.0.1_h7fc2el62uaa77gho3xhys6ola - '@radix-ui/react-dismissable-layer': 1.0.4_ktlmga7inmpnhh4xu7kimj7cou - '@radix-ui/react-focus-guards': 1.0.1_h7fc2el62uaa77gho3xhys6ola - '@radix-ui/react-focus-scope': 1.0.3_ktlmga7inmpnhh4xu7kimj7cou - '@radix-ui/react-id': 1.0.1_h7fc2el62uaa77gho3xhys6ola - '@radix-ui/react-popper': 1.1.2_ktlmga7inmpnhh4xu7kimj7cou - '@radix-ui/react-portal': 1.0.3_ktlmga7inmpnhh4xu7kimj7cou - '@radix-ui/react-primitive': 1.0.3_ktlmga7inmpnhh4xu7kimj7cou - '@radix-ui/react-slot': 1.0.2_h7fc2el62uaa77gho3xhys6ola - '@radix-ui/react-use-callback-ref': 1.0.1_h7fc2el62uaa77gho3xhys6ola - '@radix-ui/react-use-controllable-state': 1.0.1_h7fc2el62uaa77gho3xhys6ola - '@radix-ui/react-use-layout-effect': 1.0.1_h7fc2el62uaa77gho3xhys6ola - '@radix-ui/react-use-previous': 1.0.1_h7fc2el62uaa77gho3xhys6ola - '@radix-ui/react-visually-hidden': 1.0.3_ktlmga7inmpnhh4xu7kimj7cou + '@radix-ui/react-collection': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@17.0.53)(react@17.0.2) + '@radix-ui/react-context': 1.0.1(@types/react@17.0.53)(react@17.0.2) + '@radix-ui/react-direction': 1.0.1(@types/react@17.0.53)(react@17.0.2) + '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) + '@radix-ui/react-focus-guards': 1.0.1(@types/react@17.0.53)(react@17.0.2) + '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) + '@radix-ui/react-id': 1.0.1(@types/react@17.0.53)(react@17.0.2) + '@radix-ui/react-popper': 1.1.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) + '@radix-ui/react-portal': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) + '@radix-ui/react-slot': 1.0.2(@types/react@17.0.53)(react@17.0.2) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@17.0.53)(react@17.0.2) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@17.0.53)(react@17.0.2) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@17.0.53)(react@17.0.2) + '@radix-ui/react-use-previous': 1.0.1(@types/react@17.0.53)(react@17.0.2) + '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) '@types/react': 17.0.53 '@types/react-dom': 17.0.19 aria-hidden: 1.2.3 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-remove-scroll: 2.5.5_h7fc2el62uaa77gho3xhys6ola + react-dom: 17.0.2(react@17.0.2) + react-remove-scroll: 2.5.5(@types/react@17.0.53)(react@17.0.2) - /@radix-ui/react-separator/1.0.3_ktlmga7inmpnhh4xu7kimj7cou: + /@radix-ui/react-separator@1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-itYmTy/kokS21aiV5+Z56MZB54KrhPgn6eHDKkFeOLR34HMN2s8PaN47qZZAGnvupcjxHaFZnW4pQEh0BvvVuw==} peerDependencies: '@types/react': '*' @@ -15702,33 +16989,33 @@ packages: optional: true dependencies: '@babel/runtime': 7.21.0 - '@radix-ui/react-primitive': 1.0.3_ktlmga7inmpnhh4xu7kimj7cou + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) '@types/react': 17.0.53 '@types/react-dom': 17.0.19 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) - /@radix-ui/react-slot/0.1.2_react@17.0.2: + /@radix-ui/react-slot@0.1.2(react@17.0.2): resolution: {integrity: sha512-ADkqfL+agEzEguU3yS26jfB50hRrwf7U4VTwAOZEmi/g+ITcBWe12yM46ueS/UCIMI9Py+gFUaAdxgxafFvY2Q==} peerDependencies: react: ^16.8 || ^17.0 dependencies: '@babel/runtime': 7.21.0 - '@radix-ui/react-compose-refs': 0.1.0_react@17.0.2 + '@radix-ui/react-compose-refs': 0.1.0(react@17.0.2) react: 17.0.2 dev: false - /@radix-ui/react-slot/1.0.1_react@17.0.2: + /@radix-ui/react-slot@1.0.1(react@17.0.2): resolution: {integrity: sha512-avutXAFL1ehGvAXtPquu0YK5oz6ctS474iM3vNGQIkswrVhdrS52e3uoMQBzZhNRAIE0jBnUyXWNmSjGHhCFcw==} peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: '@babel/runtime': 7.21.0 - '@radix-ui/react-compose-refs': 1.0.0_react@17.0.2 + '@radix-ui/react-compose-refs': 1.0.0(react@17.0.2) react: 17.0.2 dev: false - /@radix-ui/react-slot/1.0.2_h7fc2el62uaa77gho3xhys6ola: + /@radix-ui/react-slot@1.0.2(@types/react@17.0.53)(react@17.0.2): resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==} peerDependencies: '@types/react': '*' @@ -15738,11 +17025,11 @@ packages: optional: true dependencies: '@babel/runtime': 7.21.0 - '@radix-ui/react-compose-refs': 1.0.1_h7fc2el62uaa77gho3xhys6ola + '@radix-ui/react-compose-refs': 1.0.1(@types/react@17.0.53)(react@17.0.2) '@types/react': 17.0.53 react: 17.0.2 - /@radix-ui/react-toggle-group/1.0.4_ktlmga7inmpnhh4xu7kimj7cou: + /@radix-ui/react-toggle-group@1.0.4(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-Uaj/M/cMyiyT9Bx6fOZO0SAG4Cls0GptBWiBmBxofmDbNVnYYoyRWj/2M/6VCi/7qcXFWnHhRUfdfZFvvkuu8A==} peerDependencies: '@types/react': '*' @@ -15757,18 +17044,18 @@ packages: dependencies: '@babel/runtime': 7.21.0 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-context': 1.0.1_h7fc2el62uaa77gho3xhys6ola - '@radix-ui/react-direction': 1.0.1_h7fc2el62uaa77gho3xhys6ola - '@radix-ui/react-primitive': 1.0.3_ktlmga7inmpnhh4xu7kimj7cou - '@radix-ui/react-roving-focus': 1.0.4_ktlmga7inmpnhh4xu7kimj7cou - '@radix-ui/react-toggle': 1.0.3_ktlmga7inmpnhh4xu7kimj7cou - '@radix-ui/react-use-controllable-state': 1.0.1_h7fc2el62uaa77gho3xhys6ola + '@radix-ui/react-context': 1.0.1(@types/react@17.0.53)(react@17.0.2) + '@radix-ui/react-direction': 1.0.1(@types/react@17.0.53)(react@17.0.2) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) + '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) + '@radix-ui/react-toggle': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@17.0.53)(react@17.0.2) '@types/react': 17.0.53 '@types/react-dom': 17.0.19 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) - /@radix-ui/react-toggle/1.0.3_ktlmga7inmpnhh4xu7kimj7cou: + /@radix-ui/react-toggle@1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-Pkqg3+Bc98ftZGsl60CLANXQBBQ4W3mTFS9EJvNxKMZ7magklKV69/id1mlAlOFDDfHvlCms0fx8fA4CMKDJHg==} peerDependencies: '@types/react': '*' @@ -15783,14 +17070,14 @@ packages: dependencies: '@babel/runtime': 7.21.0 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-primitive': 1.0.3_ktlmga7inmpnhh4xu7kimj7cou - '@radix-ui/react-use-controllable-state': 1.0.1_h7fc2el62uaa77gho3xhys6ola + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@17.0.53)(react@17.0.2) '@types/react': 17.0.53 '@types/react-dom': 17.0.19 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) - /@radix-ui/react-toolbar/1.0.4_ktlmga7inmpnhh4xu7kimj7cou: + /@radix-ui/react-toolbar@1.0.4(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-tBgmM/O7a07xbaEkYJWYTXkIdU/1pW4/KZORR43toC/4XWyBCURK0ei9kMUdp+gTPPKBgYLxXmRSH1EVcIDp8Q==} peerDependencies: '@types/react': '*' @@ -15805,18 +17092,18 @@ packages: dependencies: '@babel/runtime': 7.21.0 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-context': 1.0.1_h7fc2el62uaa77gho3xhys6ola - '@radix-ui/react-direction': 1.0.1_h7fc2el62uaa77gho3xhys6ola - '@radix-ui/react-primitive': 1.0.3_ktlmga7inmpnhh4xu7kimj7cou - '@radix-ui/react-roving-focus': 1.0.4_ktlmga7inmpnhh4xu7kimj7cou - '@radix-ui/react-separator': 1.0.3_ktlmga7inmpnhh4xu7kimj7cou - '@radix-ui/react-toggle-group': 1.0.4_ktlmga7inmpnhh4xu7kimj7cou + '@radix-ui/react-context': 1.0.1(@types/react@17.0.53)(react@17.0.2) + '@radix-ui/react-direction': 1.0.1(@types/react@17.0.53)(react@17.0.2) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) + '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) + '@radix-ui/react-separator': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) + '@radix-ui/react-toggle-group': 1.0.4(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) '@types/react': 17.0.53 '@types/react-dom': 17.0.19 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) - /@radix-ui/react-use-callback-ref/0.1.0_react@17.0.2: + /@radix-ui/react-use-callback-ref@0.1.0(react@17.0.2): resolution: {integrity: sha512-Va041McOFFl+aV+sejvl0BS2aeHx86ND9X/rVFmEFQKTXCp6xgUK0NGUAGcgBlIjnJSbMYPGEk1xKSSlVcN2Aw==} peerDependencies: react: ^16.8 || ^17.0 @@ -15825,7 +17112,7 @@ packages: react: 17.0.2 dev: false - /@radix-ui/react-use-callback-ref/1.0.0_react@17.0.2: + /@radix-ui/react-use-callback-ref@1.0.0(react@17.0.2): resolution: {integrity: sha512-GZtyzoHz95Rhs6S63D2t/eqvdFCm7I+yHMLVQheKM7nBD8mbZIt+ct1jz4536MDnaOGKIxynJ8eHTkVGVVkoTg==} peerDependencies: react: ^16.8 || ^17.0 || ^18.0 @@ -15834,7 +17121,7 @@ packages: react: 17.0.2 dev: false - /@radix-ui/react-use-callback-ref/1.0.1_h7fc2el62uaa77gho3xhys6ola: + /@radix-ui/react-use-callback-ref@1.0.1(@types/react@17.0.53)(react@17.0.2): resolution: {integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==} peerDependencies: '@types/react': '*' @@ -15847,7 +17134,7 @@ packages: '@types/react': 17.0.53 react: 17.0.2 - /@radix-ui/react-use-controllable-state/1.0.1_h7fc2el62uaa77gho3xhys6ola: + /@radix-ui/react-use-controllable-state@1.0.1(@types/react@17.0.53)(react@17.0.2): resolution: {integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==} peerDependencies: '@types/react': '*' @@ -15857,11 +17144,11 @@ packages: optional: true dependencies: '@babel/runtime': 7.21.0 - '@radix-ui/react-use-callback-ref': 1.0.1_h7fc2el62uaa77gho3xhys6ola + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@17.0.53)(react@17.0.2) '@types/react': 17.0.53 react: 17.0.2 - /@radix-ui/react-use-direction/0.1.0_react@17.0.2: + /@radix-ui/react-use-direction@0.1.0(react@17.0.2): resolution: {integrity: sha512-NajpY/An9TCPSfOVkgWIdXJV+VuWl67PxB6kOKYmtNAFHvObzIoh8o0n9sAuwSAyFCZVq211FEf9gvVDRhOyiA==} peerDependencies: react: ^16.8 || ^17.0 @@ -15870,7 +17157,7 @@ packages: react: 17.0.2 dev: false - /@radix-ui/react-use-escape-keydown/1.0.3_h7fc2el62uaa77gho3xhys6ola: + /@radix-ui/react-use-escape-keydown@1.0.3(@types/react@17.0.53)(react@17.0.2): resolution: {integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==} peerDependencies: '@types/react': '*' @@ -15880,11 +17167,11 @@ packages: optional: true dependencies: '@babel/runtime': 7.21.0 - '@radix-ui/react-use-callback-ref': 1.0.1_h7fc2el62uaa77gho3xhys6ola + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@17.0.53)(react@17.0.2) '@types/react': 17.0.53 react: 17.0.2 - /@radix-ui/react-use-layout-effect/0.1.0_react@17.0.2: + /@radix-ui/react-use-layout-effect@0.1.0(react@17.0.2): resolution: {integrity: sha512-+wdeS51Y+E1q1Wmd+1xSSbesZkpVj4jsg0BojCbopWvgq5iBvixw5vgemscdh58ep98BwUbsFYnrywFhV9yrVg==} peerDependencies: react: ^16.8 || ^17.0 @@ -15893,7 +17180,7 @@ packages: react: 17.0.2 dev: false - /@radix-ui/react-use-layout-effect/1.0.0_react@17.0.2: + /@radix-ui/react-use-layout-effect@1.0.0(react@17.0.2): resolution: {integrity: sha512-6Tpkq+R6LOlmQb1R5NNETLG0B4YP0wc+klfXafpUCj6JGyaUc8il7/kUZ7m59rGbXGczE9Bs+iz2qloqsZBduQ==} peerDependencies: react: ^16.8 || ^17.0 || ^18.0 @@ -15902,7 +17189,7 @@ packages: react: 17.0.2 dev: false - /@radix-ui/react-use-layout-effect/1.0.1_h7fc2el62uaa77gho3xhys6ola: + /@radix-ui/react-use-layout-effect@1.0.1(@types/react@17.0.53)(react@17.0.2): resolution: {integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==} peerDependencies: '@types/react': '*' @@ -15915,7 +17202,7 @@ packages: '@types/react': 17.0.53 react: 17.0.2 - /@radix-ui/react-use-previous/1.0.1_h7fc2el62uaa77gho3xhys6ola: + /@radix-ui/react-use-previous@1.0.1(@types/react@17.0.53)(react@17.0.2): resolution: {integrity: sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==} peerDependencies: '@types/react': '*' @@ -15928,7 +17215,7 @@ packages: '@types/react': 17.0.53 react: 17.0.2 - /@radix-ui/react-use-rect/1.0.1_h7fc2el62uaa77gho3xhys6ola: + /@radix-ui/react-use-rect@1.0.1(@types/react@17.0.53)(react@17.0.2): resolution: {integrity: sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==} peerDependencies: '@types/react': '*' @@ -15942,7 +17229,7 @@ packages: '@types/react': 17.0.53 react: 17.0.2 - /@radix-ui/react-use-size/1.0.1_h7fc2el62uaa77gho3xhys6ola: + /@radix-ui/react-use-size@1.0.1(@types/react@17.0.53)(react@17.0.2): resolution: {integrity: sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==} peerDependencies: '@types/react': '*' @@ -15952,11 +17239,11 @@ packages: optional: true dependencies: '@babel/runtime': 7.21.0 - '@radix-ui/react-use-layout-effect': 1.0.1_h7fc2el62uaa77gho3xhys6ola + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@17.0.53)(react@17.0.2) '@types/react': 17.0.53 react: 17.0.2 - /@radix-ui/react-visually-hidden/1.0.3_ktlmga7inmpnhh4xu7kimj7cou: + /@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==} peerDependencies: '@types/react': '*' @@ -15970,18 +17257,18 @@ packages: optional: true dependencies: '@babel/runtime': 7.21.0 - '@radix-ui/react-primitive': 1.0.3_ktlmga7inmpnhh4xu7kimj7cou + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) '@types/react': 17.0.53 '@types/react-dom': 17.0.19 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) - /@radix-ui/rect/1.0.1: + /@radix-ui/rect@1.0.1: resolution: {integrity: sha512-fyrgCaedtvMg9NK3en0pnOYJdtfwxUcNolezkNPUsoX57X8oQk+NkqcvzHXD2uKNij6GXmWU9NDru2IWjrO4BQ==} dependencies: '@babel/runtime': 7.21.0 - /@rc-component/portal/1.1.1_sfoxds7t5ydpegc3knd667wn6m: + /@rc-component/portal@1.1.1(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-m8w3dFXX0H6UkJ4wtfrSwhe2/6M08uz24HHrF8pWfAXPwA9hwCuTE5per/C86KwNLouRpwFGcr7LfpHaa1F38g==} engines: {node: '>=8.x'} peerDependencies: @@ -15990,27 +17277,27 @@ packages: dependencies: '@babel/runtime': 7.21.0 classnames: 2.3.2 - rc-util: 5.29.3_sfoxds7t5ydpegc3knd667wn6m + rc-util: 5.29.3(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /@react-email/render/0.0.5: + /@react-email/render@0.0.5: resolution: {integrity: sha512-EE9mCvR3lXeZEJaldCEaEc4msCwPQwZfXbhuPVl3SpRsiHiMK0wNm2X39vVpqzCzxrm0wljCoLruT7Klp9DZAw==} engines: {node: '>=16.0.0'} dependencies: html-to-text: 9.0.3 pretty: 2.0.0 react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 + react-dom: 18.2.0(react@18.2.0) dev: false - /@remix-run/router/1.5.0: + /@remix-run/router@1.5.0: resolution: {integrity: sha512-bkUDCp8o1MvFO+qxkODcbhSqRa6P2GXgrGZVpt0dCXNW2HCSCqYI0ZoAqEOSAjRWmmlKcYgFvN4B4S+zo/f8kg==} engines: {node: '>=14'} dev: false - /@rollup/plugin-babel/5.3.1_lnssqozl4dgplk3xebfs3yicbq: + /@rollup/plugin-babel@5.3.1(@babel/core@7.22.11)(rollup@2.79.1): resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==} engines: {node: '>= 10.0.0'} peerDependencies: @@ -16023,10 +17310,10 @@ packages: dependencies: '@babel/core': 7.22.11 '@babel/helper-module-imports': 7.22.15 - '@rollup/pluginutils': 3.1.0_rollup@2.79.1 + '@rollup/pluginutils': 3.1.0(rollup@2.79.1) rollup: 2.79.1 - /@rollup/plugin-json/6.0.0_rollup@3.20.2: + /@rollup/plugin-json@6.0.0(rollup@3.20.2): resolution: {integrity: sha512-i/4C5Jrdr1XUarRhVu27EEwjt4GObltD7c+MkCIpO2QIbojw8MUs+CCTqOphQi3Qtg1FLmYt+l+6YeoIf51J7w==} engines: {node: '>=14.0.0'} peerDependencies: @@ -16035,17 +17322,17 @@ packages: rollup: optional: true dependencies: - '@rollup/pluginutils': 5.0.2_rollup@3.20.2 + '@rollup/pluginutils': 5.0.2(rollup@3.20.2) rollup: 3.20.2 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.3.1 @@ -16053,7 +17340,7 @@ packages: resolve: 1.22.2 rollup: 2.79.1 - /@rollup/plugin-node-resolve/15.0.2_rollup@3.20.2: + /@rollup/plugin-node-resolve@15.0.2(rollup@3.20.2): resolution: {integrity: sha512-Y35fRGUjC3FaurG722uhUuG8YHOJRJQbI6/CkbRkdPotSpDj9NtIN85z1zrcyDcCQIW4qp5mgG72U+gJ0TAFEg==} engines: {node: '>=14.0.0'} peerDependencies: @@ -16062,7 +17349,7 @@ packages: rollup: optional: true dependencies: - '@rollup/pluginutils': 5.0.2_rollup@3.20.2 + '@rollup/pluginutils': 5.0.2(rollup@3.20.2) '@types/resolve': 1.20.2 deepmerge: 4.3.1 is-builtin-module: 3.2.1 @@ -16071,13 +17358,13 @@ packages: rollup: 3.20.2 dev: true - /@rollup/plugin-node-resolve/6.1.0_rollup@3.20.2: + /@rollup/plugin-node-resolve@6.1.0(rollup@3.20.2): resolution: {integrity: sha512-Cv7PDIvxdE40SWilY5WgZpqfIUEaDxFxs89zCAHjqyRwlTSuql4M5hjIuc5QYJkOH0/vyiyNXKD72O+LhRipGA==} engines: {node: '>= 8.0.0'} peerDependencies: rollup: ^1.20.0 dependencies: - '@rollup/pluginutils': 3.1.0_rollup@3.20.2 + '@rollup/pluginutils': 3.1.0(rollup@3.20.2) '@types/resolve': 0.0.8 builtin-modules: 3.3.0 is-module: 1.0.0 @@ -16085,16 +17372,16 @@ packages: rollup: 3.20.2 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 - /@rollup/plugin-replace/5.0.2_rollup@3.20.2: + /@rollup/plugin-replace@5.0.2(rollup@3.20.2): resolution: {integrity: sha512-M9YXNekv/C/iHHK+cvORzfRYfPbq0RDD8r0G+bMiTXjNGKulPnCT9O3Ss46WfhI6ZOCgApOP7xAdmCQJ+U2LAA==} engines: {node: '>=14.0.0'} peerDependencies: @@ -16103,12 +17390,12 @@ packages: rollup: optional: true dependencies: - '@rollup/pluginutils': 5.0.2_rollup@3.20.2 + '@rollup/pluginutils': 5.0.2(rollup@3.20.2) magic-string: 0.27.0 rollup: 3.20.2 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: @@ -16119,7 +17406,7 @@ packages: picomatch: 2.3.1 rollup: 2.79.1 - /@rollup/pluginutils/3.1.0_rollup@3.20.2: + /@rollup/pluginutils@3.1.0(rollup@3.20.2): resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} engines: {node: '>= 8.0.0'} peerDependencies: @@ -16131,7 +17418,7 @@ packages: rollup: 3.20.2 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: @@ -16139,7 +17426,7 @@ packages: picomatch: 2.3.1 dev: true - /@rollup/pluginutils/5.0.2_rollup@3.20.2: + /@rollup/pluginutils@5.0.2(rollup@3.20.2): resolution: {integrity: sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==} engines: {node: '>=14.0.0'} peerDependencies: @@ -16154,10 +17441,10 @@ packages: rollup: 3.20.2 dev: true - /@rushstack/eslint-patch/1.2.0: + /@rushstack/eslint-patch@1.2.0: resolution: {integrity: sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==} - /@samverschueren/stream-to-observable/0.3.1_rxjs@6.6.7: + /@samverschueren/stream-to-observable@0.3.1(rxjs@6.6.7): resolution: {integrity: sha512-c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ==} engines: {node: '>=6'} peerDependencies: @@ -16169,24 +17456,24 @@ packages: zen-observable: optional: true dependencies: - any-observable: 0.3.0_rxjs@6.6.7 + any-observable: 0.3.0(rxjs@6.6.7) rxjs: 6.6.7 transitivePeerDependencies: - zenObservable dev: true - /@schematics/angular/15.2.5: + /@schematics/angular@15.2.5: resolution: {integrity: sha512-YN0A5bzuqEmLdwbcQRop9TFj0QVxTC/XCL0K5DfDymVBS2j09NMyLLVc6TDOs+J/fMQr5EwiT149ikzqiUmAcw==} engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} dependencies: - '@angular-devkit/core': 15.2.5 + '@angular-devkit/core': 15.2.5(chokidar@3.5.3) '@angular-devkit/schematics': 15.2.5 jsonc-parser: 3.2.0 transitivePeerDependencies: - chokidar dev: true - /@segment/analytics-core/1.2.3: + /@segment/analytics-core@1.2.3: resolution: {integrity: sha512-/B4f4Hxmwd9WpEba/ChYkUwhILz5cPhG4Sto03IlLc8vbV7gAOCGH021EKvU3Wv70WlRK6EgJkuDLPnRl2a2aA==} dependencies: '@lukeed/uuid': 2.0.1 @@ -16194,7 +17481,7 @@ packages: tslib: 2.6.2 dev: false - /@segment/analytics-next/1.51.3: + /@segment/analytics-next@1.51.3: resolution: {integrity: sha512-c22GDz6rrhliIsgtLQjEcRiZdqb70+0hEyfTI6YpRXZzEXBwdJybO5ZCD7NRlVFHf/qXp1qcjHuQ5xyOGr2lJg==} dependencies: '@lukeed/uuid': 2.0.1 @@ -16213,13 +17500,13 @@ packages: - supports-color dev: false - /@segment/analytics.js-video-plugins/0.2.1: + /@segment/analytics.js-video-plugins@0.2.1: resolution: {integrity: sha512-lZwCyEXT4aaHBLNK433okEKdxGAuyrVmop4BpQqQSJuRz0DglPZgd9B/XjiiWs1UyOankg2aNYMN3VcS8t4eSQ==} dependencies: unfetch: 3.1.2 dev: false - /@segment/facade/3.4.10: + /@segment/facade@3.4.10: resolution: {integrity: sha512-xVQBbB/lNvk/u8+ey0kC/+g8pT3l0gCT8O2y9Z+StMMn3KAFAQ9w8xfgef67tJybktOKKU7pQGRPolRM1i1pdA==} dependencies: '@segment/isodate-traverse': 1.1.1 @@ -16228,24 +17515,24 @@ packages: obj-case: 0.2.1 dev: false - /@segment/isodate-traverse/1.1.1: + /@segment/isodate-traverse@1.1.1: resolution: {integrity: sha512-+G6e1SgAUkcq0EDMi+SRLfT48TNlLPF3QnSgFGVs0V9F3o3fq/woQ2rHFlW20W0yy5NnCUH0QGU3Am2rZy/E3w==} dependencies: '@segment/isodate': 1.0.3 dev: false - /@segment/isodate/1.0.3: + /@segment/isodate@1.0.3: resolution: {integrity: sha512-BtanDuvJqnACFkeeYje7pWULVv8RgZaqKHWwGFnL/g/TH/CcZjkIVTfGDp/MAxmilYHUkrX70SqwnYSTNEaN7A==} dev: false - /@segment/loosely-validate-event/2.0.0: + /@segment/loosely-validate-event@2.0.0: resolution: {integrity: sha512-ZMCSfztDBqwotkl848ODgVcAmN4OItEWDCkshcKz0/W6gGSQayuuCtWV/MlodFivAZD793d6UgANd6wCXUfrIw==} dependencies: component-type: 1.2.1 join-component: 1.1.0 dev: false - /@segment/tsub/1.0.1: + /@segment/tsub@1.0.1: resolution: {integrity: sha512-rUpvlj/rRfOolk5rjwyrsbl0qzGLsaYgFNEiOSrwrWDryDPq1ZGdo+3Eb+E8+EC0yZOAO4F1DjJfLtaSifpx7w==} hasBin: true dependencies: @@ -16257,21 +17544,21 @@ packages: - supports-color dev: false - /@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 - /@selderee/plugin-htmlparser2/0.11.0: + /@selderee/plugin-htmlparser2@0.11.0: resolution: {integrity: sha512-P33hHGdldxGabLFjPPpaTxVolMrzrcegejx+0GxjrIb9Zv48D8yAIA/QTDR2dFl7Uz7urX8aX6+5bCZslr+gWQ==} dependencies: domhandler: 5.0.3 selderee: 0.11.0 dev: false - /@semantic-release/commit-analyzer/9.0.2_semantic-release@19.0.5: + /@semantic-release/commit-analyzer@9.0.2(semantic-release@19.0.5): resolution: {integrity: sha512-E+dr6L+xIHZkX4zNMe6Rnwg4YQrWNXK+rNsvwOPpdFppvZO1olE2fIgWhv89TkQErygevbjsZFSIxp+u6w2e5g==} engines: {node: '>=14.17'} peerDependencies: @@ -16280,7 +17567,7 @@ packages: conventional-changelog-angular: 5.0.13 conventional-commits-filter: 2.0.7 conventional-commits-parser: 3.2.4 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) import-from: 4.0.0 lodash: 4.17.21 micromatch: 4.0.5 @@ -16289,12 +17576,12 @@ packages: - supports-color dev: true - /@semantic-release/error/3.0.0: + /@semantic-release/error@3.0.0: resolution: {integrity: sha512-5hiM4Un+tpl4cKw3lV4UgzJj+SmfNIDCLLw0TepzQxz9ZGV5ixnqkzIVF+3tp0ZHgcMKE+VNGHJjEeyFG2dcSw==} engines: {node: '>=14.17'} dev: true - /@semantic-release/github/8.0.7_semantic-release@19.0.5: + /@semantic-release/github@8.0.7(semantic-release@19.0.5): resolution: {integrity: sha512-VtgicRIKGvmTHwm//iqTh/5NGQwsncOMR5vQK9pMT92Aem7dv37JFKKRuulUsAnUOIlO4G8wH3gPiBAA0iW0ww==} engines: {node: '>=14.17'} peerDependencies: @@ -16304,7 +17591,7 @@ packages: '@semantic-release/error': 3.0.0 aggregate-error: 3.1.0 bottleneck: 2.19.5 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) dir-glob: 3.0.1 fs-extra: 11.1.1 globby: 11.1.0 @@ -16322,7 +17609,7 @@ packages: - supports-color dev: true - /@semantic-release/npm/9.0.2_semantic-release@19.0.5: + /@semantic-release/npm@9.0.2(semantic-release@19.0.5): resolution: {integrity: sha512-zgsynF6McdzxPnFet+a4iO9HpAlARXOM5adz7VGVCvj0ne8wtL2ZOQoDV2wZPDmdEotDIbVeJjafhelZjs9j6g==} engines: {node: '>=16 || ^14.17'} peerDependencies: @@ -16344,7 +17631,7 @@ packages: tempy: 1.0.1 dev: true - /@semantic-release/release-notes-generator/10.0.3_semantic-release@19.0.5: + /@semantic-release/release-notes-generator@10.0.3(semantic-release@19.0.5): resolution: {integrity: sha512-k4x4VhIKneOWoBGHkx0qZogNjCldLPRiAjnIpMnlUh6PtaWXp/T+C9U7/TaNDDtgDa5HMbHl4WlREdxHio6/3w==} engines: {node: '>=14.17'} peerDependencies: @@ -16354,7 +17641,7 @@ packages: conventional-changelog-writer: 5.0.1 conventional-commits-filter: 2.0.7 conventional-commits-parser: 3.2.4 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) get-stream: 6.0.1 import-from: 4.0.0 into-stream: 6.0.0 @@ -16365,7 +17652,7 @@ packages: - supports-color dev: true - /@sendgrid/client/7.7.0: + /@sendgrid/client@7.7.0: resolution: {integrity: sha512-SxH+y8jeAQSnDavrTD0uGDXYIIkFylCo+eDofVmZLQ0f862nnqbC3Vd1ej6b7Le7lboyzQF6F7Fodv02rYspuA==} engines: {node: 6.* || 8.* || >=10.*} dependencies: @@ -16374,13 +17661,13 @@ packages: transitivePeerDependencies: - debug - /@sendgrid/helpers/7.7.0: + /@sendgrid/helpers@7.7.0: resolution: {integrity: sha512-3AsAxfN3GDBcXoZ/y1mzAAbKzTtUZ5+ZrHOmWQ279AuaFXUNCh9bPnRpN504bgveTqoW+11IzPg3I0WVgDINpw==} engines: {node: '>= 6.0.0'} dependencies: deepmerge: 4.3.1 - /@sendgrid/mail/7.7.0: + /@sendgrid/mail@7.7.0: resolution: {integrity: sha512-5+nApPE9wINBvHSUxwOxkkQqM/IAAaBYoP9hw7WwgDNQPxraruVqHizeTitVtKGiqWCKm2mnjh4XGN3fvFLqaw==} engines: {node: 6.* || 8.* || >=10.*} dependencies: @@ -16389,7 +17676,7 @@ packages: transitivePeerDependencies: - debug - /@sendinblue/client/3.3.1: + /@sendinblue/client@3.3.1: resolution: {integrity: sha512-5xNGeT5gKD5XOvl5vHk682wvjJxRPnH3nc2vOZIaDX9XKuhoMaYXyEdqlP0R/Z6gEZiHhzpZxzrdiwlngGzsgw==} dependencies: '@types/bluebird': 3.5.38 @@ -16399,7 +17686,7 @@ packages: request: 2.88.2 dev: false - /@sentry-internal/tracing/7.47.0: + /@sentry-internal/tracing@7.47.0: resolution: {integrity: sha512-udpHnCzF8DQsWf0gQwd0XFGp6Y8MOiwnl8vGt2ohqZGS3m1+IxoRLXsSkD8qmvN6KKDnwbaAvYnK0z0L+AW95g==} engines: {node: '>=8'} dependencies: @@ -16409,7 +17696,7 @@ packages: tslib: 1.14.1 dev: false - /@sentry-internal/tracing/7.66.0: + /@sentry-internal/tracing@7.66.0: resolution: {integrity: sha512-3vCgC2hC3T45pn53yTDVcRpHoJTBxelDPPZVsipAbZnoOVPkj7n6dNfDhj3I3kwWCBPahPkXmE+R4xViR8VqJg==} engines: {node: '>=8'} dependencies: @@ -16419,7 +17706,7 @@ packages: tslib: 2.6.2 dev: false - /@sentry/browser/7.47.0: + /@sentry/browser@7.47.0: resolution: {integrity: sha512-L0t07kS/G1UGVZ9fpD6HLuaX8vVBqAGWgu+1uweXthYozu/N7ZAsakjU/Ozu6FSXj1mO3NOJZhOn/goIZLSj5A==} engines: {node: '>=8'} dependencies: @@ -16431,7 +17718,7 @@ packages: tslib: 1.14.1 dev: false - /@sentry/core/7.47.0: + /@sentry/core@7.47.0: resolution: {integrity: sha512-EFhZhKdMu7wKmWYZwbgTi8FNZ7Fq+HdlXiZWNz51Bqe3pHmfAkdHtAEs0Buo0v623MKA0CA4EjXIazGUM34XTg==} engines: {node: '>=8'} dependencies: @@ -16440,7 +17727,7 @@ packages: tslib: 1.14.1 dev: false - /@sentry/core/7.66.0: + /@sentry/core@7.66.0: resolution: {integrity: sha512-WMAEPN86NeCJ1IT48Lqiz4MS5gdDjBwP4M63XP4msZn9aujSf2Qb6My5uT87AJr9zBtgk8MyJsuHr35F0P3q1w==} engines: {node: '>=8'} dependencies: @@ -16449,7 +17736,7 @@ packages: tslib: 2.6.2 dev: false - /@sentry/hub/7.47.0: + /@sentry/hub@7.47.0: resolution: {integrity: sha512-pPu1SkUqCJjFuW3a73RADy/B51nzd5brTIrBE4zVL1FYm4JVzkzbtItSGtR6tosB1Ftkr3E2eLryEzeEsuppsw==} engines: {node: '>=8'} dependencies: @@ -16459,7 +17746,7 @@ packages: tslib: 1.14.1 dev: false - /@sentry/node/7.47.0: + /@sentry/node@7.47.0: resolution: {integrity: sha512-LTg2r5EV9yh4GLYDF+ViSltR9LLj/pcvk8YhANJcMO3Fp//xh8njcdU0FC2yNthUREawYDzAsVzLyCYJfV0H1A==} engines: {node: '>=8'} dependencies: @@ -16475,7 +17762,7 @@ packages: - supports-color dev: false - /@sentry/node/7.66.0: + /@sentry/node@7.66.0: resolution: {integrity: sha512-PxqIqLr4Sh5xcDfECiBQ4PuZ7v8yTgLhaRkruWrZPYxQrcJFPkwbFkw/IskzVnhT2VwXUmeWEIlRMQKBJ0t83A==} engines: {node: '>=8'} dependencies: @@ -16491,7 +17778,7 @@ packages: - supports-color dev: false - /@sentry/react/7.47.0_react@17.0.2: + /@sentry/react@7.47.0(react@17.0.2): resolution: {integrity: sha512-Qy6OnlE8FivKOLo0YE7tkr+G5fLmEOkpPxj179wbY/N8kp/ALkqbVdcOrZW7AL6HCc0lphhj+0SB+tpwoPEsiQ==} engines: {node: '>=8'} peerDependencies: @@ -16505,7 +17792,7 @@ packages: tslib: 1.14.1 dev: false - /@sentry/replay/7.47.0: + /@sentry/replay@7.47.0: resolution: {integrity: sha512-BFpVZVmwlezZ83y0L43TCTJY142Fxh+z+qZSwTag5HlhmIpBKw/WKg06ajOhrYJbCBkhHmeOvyKkxX0jnc39ZA==} engines: {node: '>=12'} dependencies: @@ -16514,24 +17801,24 @@ packages: '@sentry/utils': 7.47.0 dev: false - /@sentry/tracing/7.47.0: + /@sentry/tracing@7.47.0: resolution: {integrity: sha512-hJCpKdekwaFNbCVXxfCz5IxfSEJIKnkPmRSVHITOm5VhKwq2e5kmy4Rn6bzSETwJFSDE8LGbR/3eSfGTqw37XA==} engines: {node: '>=8'} dependencies: '@sentry-internal/tracing': 7.47.0 dev: false - /@sentry/types/7.47.0: + /@sentry/types@7.47.0: resolution: {integrity: sha512-GxXocplN0j1+uczovHrfkykl9wvkamDtWxlPUQgyGlbLGZn+UH1Y79D4D58COaFWGEZdSNKr62gZAjfEYu9nQA==} engines: {node: '>=8'} dev: false - /@sentry/types/7.66.0: + /@sentry/types@7.66.0: resolution: {integrity: sha512-uUMSoSiar6JhuD8p7ON/Ddp4JYvrVd2RpwXJRPH1A4H4Bd4DVt1mKJy1OLG6HdeQv39XyhB1lPZckKJg4tATPw==} engines: {node: '>=8'} dev: false - /@sentry/utils/7.47.0: + /@sentry/utils@7.47.0: resolution: {integrity: sha512-A89SaOLp6XeZfByeYo2C8Ecye/YAtk/gENuyOUhQEdMulI6mZdjqtHAp7pTMVgkBc/YNARVuoa+kR/IdRrTPkQ==} engines: {node: '>=8'} dependencies: @@ -16539,7 +17826,7 @@ packages: tslib: 1.14.1 dev: false - /@sentry/utils/7.66.0: + /@sentry/utils@7.66.0: resolution: {integrity: sha512-9GYUVgXjK66uXXcLXVMXVzlptqMtq1eJENCuDeezQiEFrNA71KkLDg00wESp+LL+bl3wpVTBApArpbF6UEG5hQ==} engines: {node: '>=8'} dependencies: @@ -16547,55 +17834,55 @@ packages: tslib: 2.6.2 dev: false - /@sigstore/protobuf-specs/0.1.0: + /@sigstore/protobuf-specs@0.1.0: resolution: {integrity: sha512-a31EnjuIDSX8IXBUib3cYLDRlPMU36AWX4xS8ysLaNu4ZzUesDiPt83pgrW2X1YLMe5L2HbDyaKK5BrL4cNKaQ==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dev: true - /@sinclair/typebox/0.24.51: + /@sinclair/typebox@0.24.51: resolution: {integrity: sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==} - /@sinclair/typebox/0.25.24: + /@sinclair/typebox@0.25.24: resolution: {integrity: sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==} - /@sinonjs/commons/1.8.6: + /@sinonjs/commons@1.8.6: resolution: {integrity: sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==} dependencies: type-detect: 4.0.8 - /@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/6.0.1: + /@sinonjs/fake-timers@6.0.1: resolution: {integrity: sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==} dependencies: '@sinonjs/commons': 1.8.6 - /@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.6 - /@sinonjs/samsam/5.3.1: + /@sinonjs/samsam@5.3.1: resolution: {integrity: sha512-1Hc0b1TtyfBu8ixF/tpfSHTVWKwCBLY4QJbkgnE7HcwyvT2xArDxb4K7dMgqRm3szI+LJbzmW/s4xxEhv6hwDg==} dependencies: '@sinonjs/commons': 1.8.6 lodash.get: 4.4.2 type-detect: 4.0.8 - /@sinonjs/text-encoding/0.7.2: + /@sinonjs/text-encoding@0.7.2: resolution: {integrity: sha512-sXXKG+uL9IrKqViTtao2Ws6dy0znu9sOaP1di/jKGW1M6VssO8vlpXCQcpZ+jisQ1tTFAC5Jo/EOzFbggBagFQ==} - /@smithy/abort-controller/2.0.3: + /@smithy/abort-controller@2.0.3: resolution: {integrity: sha512-LbQ4fdsVuQC3/18Z/uia5wnk9fk8ikfHl3laYCEGhboEMJ/6oVk3zhydqljMxBCftHGUv7yUrTnZ6EAQhOf+PA==} engines: {node: '>=14.0.0'} dependencies: @@ -16603,20 +17890,20 @@ packages: tslib: 2.6.2 dev: false - /@smithy/chunked-blob-reader-native/2.0.0: + /@smithy/chunked-blob-reader-native@2.0.0: resolution: {integrity: sha512-HM8V2Rp1y8+1343tkZUKZllFhEQPNmpNdgFAncbTsxkZ18/gqjk23XXv3qGyXWp412f3o43ZZ1UZHVcHrpRnCQ==} dependencies: '@smithy/util-base64': 2.0.0 tslib: 2.6.2 dev: false - /@smithy/chunked-blob-reader/2.0.0: + /@smithy/chunked-blob-reader@2.0.0: resolution: {integrity: sha512-k+J4GHJsMSAIQPChGBrjEmGS+WbPonCXesoqP9fynIqjn7rdOThdH8FAeCmokP9mxTYKQAKoHCLPzNlm6gh7Wg==} dependencies: tslib: 2.6.2 dev: false - /@smithy/config-resolver/2.0.3: + /@smithy/config-resolver@2.0.3: resolution: {integrity: sha512-E+fsc6BOzFOc6U6y9ogRH8Pw2HF1NVW14AAYy7l3OTXYWuYxHb/fzDZaA0FvD/dXyFoMy7AV1rYZsGzD4bMKzw==} engines: {node: '>=14.0.0'} dependencies: @@ -16626,7 +17913,7 @@ packages: tslib: 2.6.2 dev: false - /@smithy/credential-provider-imds/2.0.3: + /@smithy/credential-provider-imds@2.0.3: resolution: {integrity: sha512-2e85iLgSuiGQ8BBFkot88kuv6sT5DHvkDO8FDvGwNunn2ybf24HhEkaWCMxK4pUeHtnA2dMa3hZbtfmJ7KJQig==} engines: {node: '>=14.0.0'} dependencies: @@ -16637,7 +17924,7 @@ packages: tslib: 2.6.2 dev: false - /@smithy/eventstream-codec/2.0.3: + /@smithy/eventstream-codec@2.0.3: resolution: {integrity: sha512-3l/uKZBsV/6uMe2qXvh1C8ut/w6JHKgy7ic7N2QPR1SSuNWKNQBX0iVBqJpPtQz0UDeQYM4cNmwDBX+hw74EEw==} dependencies: '@aws-crypto/crc32': 3.0.0 @@ -16646,7 +17933,7 @@ packages: tslib: 2.6.2 dev: false - /@smithy/eventstream-serde-browser/2.0.3: + /@smithy/eventstream-serde-browser@2.0.3: resolution: {integrity: sha512-RwQeTFnc6nOP6iGjdnMFgDG8QtneHKptrVZxjc+be4KIoXGPyF3QAourxnrClxTl+MACXYUaCg6bWCozqfHMOw==} engines: {node: '>=14.0.0'} dependencies: @@ -16655,7 +17942,7 @@ packages: tslib: 2.6.2 dev: false - /@smithy/eventstream-serde-config-resolver/2.0.3: + /@smithy/eventstream-serde-config-resolver@2.0.3: resolution: {integrity: sha512-J8QzPnarBiJaPw5DBsZ5O2GHjfPHhCmKV5iVzdcAFt0PD81UWNL9HMwAKx99mY5WWPCaFKvb1yBeN2g/v4uA2w==} engines: {node: '>=14.0.0'} dependencies: @@ -16663,7 +17950,7 @@ packages: tslib: 2.6.2 dev: false - /@smithy/eventstream-serde-node/2.0.3: + /@smithy/eventstream-serde-node@2.0.3: resolution: {integrity: sha512-085r0AHMhwVF99rlAy8RVMhXMkxay4SdSwRdDUIe4MXQ6r2957BVpm3BcoxRpjcGgnoCldRc9tCRa0TclvUS5w==} engines: {node: '>=14.0.0'} dependencies: @@ -16672,7 +17959,7 @@ packages: tslib: 2.6.2 dev: false - /@smithy/eventstream-serde-universal/2.0.3: + /@smithy/eventstream-serde-universal@2.0.3: resolution: {integrity: sha512-51nLy47MmU9Nb4dwlwsmP1XJViP72kuLtIqTeDeRSe5Ah4xfSP/df11roEhzUmE/rUYEkErj64RHkseeuFkCgg==} engines: {node: '>=14.0.0'} dependencies: @@ -16681,7 +17968,7 @@ packages: tslib: 2.6.2 dev: false - /@smithy/fetch-http-handler/2.0.3: + /@smithy/fetch-http-handler@2.0.3: resolution: {integrity: sha512-0if2hyn+tDkyK9Tg1bXpo3IMUaezz/FKlaUTwTey3m87hF8gb7a0nKaST4NURE2eUVimViGCB7SH3/i4wFXALg==} dependencies: '@smithy/protocol-http': 2.0.3 @@ -16691,7 +17978,7 @@ packages: tslib: 2.6.2 dev: false - /@smithy/hash-blob-browser/2.0.3: + /@smithy/hash-blob-browser@2.0.3: resolution: {integrity: sha512-YQywO2eGG4x3klQZ+R7G8X3oCgrzQaCNC3zYq7kcGibE2Z+q9Lzt3prYiODUwAihDJTCG09xHq1p9IW+z/fp+Q==} dependencies: '@smithy/chunked-blob-reader': 2.0.0 @@ -16700,7 +17987,7 @@ packages: tslib: 2.6.2 dev: false - /@smithy/hash-node/2.0.3: + /@smithy/hash-node@2.0.3: resolution: {integrity: sha512-wtN9eiRKEiryXrPbWQ7Acu0D3Uk65+PowtTqOslViMZNcKNlYHsxOP1S9rb2klnzA3yY1WSPO1tG78pjhRlvrQ==} engines: {node: '>=14.0.0'} dependencies: @@ -16710,7 +17997,7 @@ packages: tslib: 2.6.2 dev: false - /@smithy/hash-stream-node/2.0.3: + /@smithy/hash-stream-node@2.0.3: resolution: {integrity: sha512-rFUhbuynRMd1DlYewqXRog2bZIMaDL3sNTAK7fg+7DngPpus7hiIGuXn3tJNnCiqiNuxVrhi/ffWpwt21+8DtA==} engines: {node: '>=14.0.0'} dependencies: @@ -16719,21 +18006,21 @@ packages: tslib: 2.6.2 dev: false - /@smithy/invalid-dependency/2.0.3: + /@smithy/invalid-dependency@2.0.3: resolution: {integrity: sha512-GtmVXD/s+OZlFG1o3HfUI55aBJZXX5/iznAQkgjRGf8prYoO8GvSZLDWHXJp91arybaJxYd133oJORGf4YxGAg==} dependencies: '@smithy/types': 2.2.0 tslib: 2.6.2 dev: false - /@smithy/is-array-buffer/2.0.0: + /@smithy/is-array-buffer@2.0.0: resolution: {integrity: sha512-z3PjFjMyZNI98JFRJi/U0nGoLWMSJlDjAW4QUX2WNZLas5C0CmVV6LJ01JI0k90l7FvpmixjWxPFmENSClQ7ug==} engines: {node: '>=14.0.0'} dependencies: tslib: 2.6.2 dev: false - /@smithy/md5-js/2.0.3: + /@smithy/md5-js@2.0.3: resolution: {integrity: sha512-pYnD2US3SioMynHytq4n2BsB5L6uJ7pWKxl9sQqvWwYJXcT3VSnJ0/9adbVcWE+GrMRlGO4CpRg9SIKpdQYR+Q==} dependencies: '@smithy/types': 2.2.0 @@ -16741,7 +18028,7 @@ packages: tslib: 2.6.2 dev: false - /@smithy/middleware-content-length/2.0.3: + /@smithy/middleware-content-length@2.0.3: resolution: {integrity: sha512-2FiZ5vu2+iMRL8XWNaREUqqNHjtBubaY9Jb2b3huZ9EbgrXsJfCszK6PPidHTLe+B4T7AISqdF4ZSp9VPXuelg==} engines: {node: '>=14.0.0'} dependencies: @@ -16750,7 +18037,7 @@ packages: tslib: 2.6.2 dev: false - /@smithy/middleware-endpoint/2.0.3: + /@smithy/middleware-endpoint@2.0.3: resolution: {integrity: sha512-gNleUHhu5OKk/nrA6WbpLUk/Wk2hcyCvaw7sZiKMazs+zdzWb0kYzynRf675uCWolbvlw9BvkrVaSJo5TRz+Mg==} engines: {node: '>=14.0.0'} dependencies: @@ -16761,7 +18048,7 @@ packages: tslib: 2.6.2 dev: false - /@smithy/middleware-retry/2.0.3: + /@smithy/middleware-retry@2.0.3: resolution: {integrity: sha512-BpfaUwgOh8LpWP/x6KBb5IdBmd5+tEpTKIjDt7LWi3IVOYmRX5DjQo1eCEUqlKS1nxws/T7+/IyzvgBq8gF9rw==} engines: {node: '>=14.0.0'} dependencies: @@ -16774,7 +18061,7 @@ packages: uuid: 8.3.2 dev: false - /@smithy/middleware-serde/2.0.3: + /@smithy/middleware-serde@2.0.3: resolution: {integrity: sha512-5BxuOKL7pXqesvtunniDlvYQXVr7UJEF5nFVoK6+5chf5wplLA8IZWAn3NUcGq/f1u01w2m2q7atCoA6ftRLKA==} engines: {node: '>=14.0.0'} dependencies: @@ -16782,14 +18069,14 @@ packages: tslib: 2.6.2 dev: false - /@smithy/middleware-stack/2.0.0: + /@smithy/middleware-stack@2.0.0: resolution: {integrity: sha512-31XC1xNF65nlbc16yuh3wwTudmqs6qy4EseQUGF8A/p2m/5wdd/cnXJqpniy/XvXVwkHPz/GwV36HqzHtIKATQ==} engines: {node: '>=14.0.0'} dependencies: tslib: 2.6.2 dev: false - /@smithy/node-config-provider/2.0.3: + /@smithy/node-config-provider@2.0.3: resolution: {integrity: sha512-dYSVxOQMqtdmSOBW/J4RPvSYE4KKdGLgFHDJQGNsGo1d3y9IoNLwE32lT7doWwV0ryntlm4QZZwhfb3gISrTtA==} engines: {node: '>=14.0.0'} dependencies: @@ -16799,7 +18086,7 @@ packages: tslib: 2.6.2 dev: false - /@smithy/node-http-handler/2.0.3: + /@smithy/node-http-handler@2.0.3: resolution: {integrity: sha512-wUO78aa0VVJVz54Lr1Nw6FYnkatbvh2saHgkT8fdtNWc7I/osaPMUJnRkBmTZZ5w+BIQ1rvr9dbGyYBTlRg2+Q==} engines: {node: '>=14.0.0'} dependencies: @@ -16810,7 +18097,7 @@ packages: tslib: 2.6.2 dev: false - /@smithy/property-provider/2.0.3: + /@smithy/property-provider@2.0.3: resolution: {integrity: sha512-SHV1SINUNysJ5HyPrMLHLkdofgalk9+5FnQCB/985hqcUxstN616hPZ7ngOjLpdhKp0yu1ul/esE9Gd4qh1tgg==} engines: {node: '>=14.0.0'} dependencies: @@ -16818,7 +18105,7 @@ packages: tslib: 2.6.2 dev: false - /@smithy/protocol-http/2.0.3: + /@smithy/protocol-http@2.0.3: resolution: {integrity: sha512-yzBYloviSLOwo2RT62vBRCPtk8mc/O2RMJfynEahbX8ZnduHpKaajvx3IuGubhamIbesi7M5HBVecDehBnlb9Q==} engines: {node: '>=14.0.0'} dependencies: @@ -16826,7 +18113,7 @@ packages: tslib: 2.6.2 dev: false - /@smithy/querystring-builder/2.0.3: + /@smithy/querystring-builder@2.0.3: resolution: {integrity: sha512-HPSviVgGj9FT4jPdprkfSGF3nhFzpQMST1hOC1Oh6eaRB2KTQCsOZmS7U4IqGErVPafe6f/yRa1DV73B5gO50w==} engines: {node: '>=14.0.0'} dependencies: @@ -16835,7 +18122,7 @@ packages: tslib: 2.6.2 dev: false - /@smithy/querystring-parser/2.0.3: + /@smithy/querystring-parser@2.0.3: resolution: {integrity: sha512-AaiZ2osstDbmOTz5uY+96o0G1E7k1U7dCYrNT8FFcyffdhScTzG7fXr12f5peie2W0XFu2Ub+b6tQwFuZwPoBA==} engines: {node: '>=14.0.0'} dependencies: @@ -16843,7 +18130,7 @@ packages: tslib: 2.6.2 dev: false - /@smithy/querystring-parser/2.0.5: + /@smithy/querystring-parser@2.0.5: resolution: {integrity: sha512-C2stCULH0r54KBksv3AWcN8CLS3u9+WsEW8nBrvctrJ5rQTNa1waHkffpVaiKvcW2nP0aIMBPCobD/kYf/q9mA==} engines: {node: '>=14.0.0'} dependencies: @@ -16851,12 +18138,12 @@ packages: tslib: 2.6.2 dev: false - /@smithy/service-error-classification/2.0.0: + /@smithy/service-error-classification@2.0.0: resolution: {integrity: sha512-2z5Nafy1O0cTf69wKyNjGW/sNVMiqDnb4jgwfMG8ye8KnFJ5qmJpDccwIbJNhXIfbsxTg9SEec2oe1cexhMJvw==} engines: {node: '>=14.0.0'} dev: false - /@smithy/shared-ini-file-loader/2.0.3: + /@smithy/shared-ini-file-loader@2.0.3: resolution: {integrity: sha512-1Vgco3K0rN5YG2OStoS2zUrBzdcFqgqp475rGdag206PCh7AHzmVSGXL6OpWPAqZl29WUqXfMP8tHOLG0H6vkA==} engines: {node: '>=14.0.0'} dependencies: @@ -16864,7 +18151,7 @@ packages: tslib: 2.6.2 dev: false - /@smithy/signature-v4/2.0.3: + /@smithy/signature-v4@2.0.3: resolution: {integrity: sha512-AZ+951EAcNqas2RTq4xQvuX4uZqPV/zCcbs7ACqpuxcjYAFU2FKRPpQHqsDN0jbJwI3Scw75xhSKcGWFf2/Olg==} engines: {node: '>=14.0.0'} dependencies: @@ -16878,7 +18165,7 @@ packages: tslib: 2.6.2 dev: false - /@smithy/smithy-client/2.0.3: + /@smithy/smithy-client@2.0.3: resolution: {integrity: sha512-YP0HakPOJgvX2wvPEAGH9GB3NfuQE8CmBhR13bWtqWuIErmJnInTiSQcLSc0QiXHclH/8Qlq+qjKCR7N/4wvtQ==} engines: {node: '>=14.0.0'} dependencies: @@ -16888,21 +18175,21 @@ packages: tslib: 2.6.2 dev: false - /@smithy/types/2.2.0: + /@smithy/types@2.2.0: resolution: {integrity: sha512-Ahpt9KvD0mWeWiyaGo5EBE7KOByLl3jl4CD9Ps/r8qySgzVzo/4qsa+vvstOU3ZEriALmrPqUKIhqHt0Rn+m6g==} engines: {node: '>=14.0.0'} dependencies: tslib: 2.6.2 dev: false - /@smithy/types/2.2.2: + /@smithy/types@2.2.2: resolution: {integrity: sha512-4PS0y1VxDnELGHGgBWlDksB2LJK8TG8lcvlWxIsgR+8vROI7Ms8h1P4FQUx+ftAX2QZv5g1CJCdhdRmQKyonyw==} engines: {node: '>=14.0.0'} dependencies: tslib: 2.6.2 dev: false - /@smithy/url-parser/2.0.3: + /@smithy/url-parser@2.0.3: resolution: {integrity: sha512-O7NlbDL4kh+th6qwtL7wNRcPCuOXFRWJzWKywfB/Nv56N1F8KiK0KbPn1z7MU5du/0LgjAMvhkg0mVDyiMCnqw==} dependencies: '@smithy/querystring-parser': 2.0.3 @@ -16910,7 +18197,7 @@ packages: tslib: 2.6.2 dev: false - /@smithy/url-parser/2.0.5: + /@smithy/url-parser@2.0.5: resolution: {integrity: sha512-OdMBvZhpckQSkugCXNJQCvqJ71wE7Ftxce92UOQLQ9pwF6hoS5PLL7wEfpnuEXtStzBqJYkzu1C1ZfjuFGOXAA==} dependencies: '@smithy/querystring-parser': 2.0.5 @@ -16918,7 +18205,7 @@ packages: tslib: 2.6.2 dev: false - /@smithy/util-base64/2.0.0: + /@smithy/util-base64@2.0.0: resolution: {integrity: sha512-Zb1E4xx+m5Lud8bbeYi5FkcMJMnn+1WUnJF3qD7rAdXpaL7UjkFQLdmW5fHadoKbdHpwH9vSR8EyTJFHJs++tA==} engines: {node: '>=14.0.0'} dependencies: @@ -16926,20 +18213,20 @@ packages: tslib: 2.6.2 dev: false - /@smithy/util-body-length-browser/2.0.0: + /@smithy/util-body-length-browser@2.0.0: resolution: {integrity: sha512-JdDuS4ircJt+FDnaQj88TzZY3+njZ6O+D3uakS32f2VNnDo3vyEuNdBOh/oFd8Df1zSZOuH1HEChk2AOYDezZg==} dependencies: tslib: 2.6.2 dev: false - /@smithy/util-body-length-node/2.0.0: + /@smithy/util-body-length-node@2.0.0: resolution: {integrity: sha512-ZV7Z/WHTMxHJe/xL/56qZwSUcl63/5aaPAGjkfynJm4poILjdD4GmFI+V+YWabh2WJIjwTKZ5PNsuvPQKt93Mg==} engines: {node: '>=14.0.0'} dependencies: tslib: 2.6.2 dev: false - /@smithy/util-buffer-from/2.0.0: + /@smithy/util-buffer-from@2.0.0: resolution: {integrity: sha512-/YNnLoHsR+4W4Vf2wL5lGv0ksg8Bmk3GEGxn2vEQt52AQaPSCuaO5PM5VM7lP1K9qHRKHwrPGktqVoAHKWHxzw==} engines: {node: '>=14.0.0'} dependencies: @@ -16947,14 +18234,14 @@ packages: tslib: 2.6.2 dev: false - /@smithy/util-config-provider/2.0.0: + /@smithy/util-config-provider@2.0.0: resolution: {integrity: sha512-xCQ6UapcIWKxXHEU4Mcs2s7LcFQRiU3XEluM2WcCjjBtQkUN71Tb+ydGmJFPxMUrW/GWMgQEEGipLym4XG0jZg==} engines: {node: '>=14.0.0'} dependencies: tslib: 2.6.2 dev: false - /@smithy/util-defaults-mode-browser/2.0.3: + /@smithy/util-defaults-mode-browser@2.0.3: resolution: {integrity: sha512-t9cirP55wYeSfDjjvPHSjNiuZj3wc9W3W3fjLXaVzuKKlKX98B9Vj7QM9WHJnFjJdsrYEwolLA8GVdqZeHOkHg==} engines: {node: '>= 10.0.0'} dependencies: @@ -16964,7 +18251,7 @@ packages: tslib: 2.6.2 dev: false - /@smithy/util-defaults-mode-node/2.0.3: + /@smithy/util-defaults-mode-node@2.0.3: resolution: {integrity: sha512-Gca+fL0h+tl8cbvoLDMWCVzs1CL4jWLWvz/I6MCYZzaEAKkmd1qO4kPzBeGaI6hGA/IbrlWCFg7L+MTPzLwzfg==} engines: {node: '>= 10.0.0'} dependencies: @@ -16976,21 +18263,21 @@ packages: tslib: 2.6.2 dev: false - /@smithy/util-hex-encoding/2.0.0: + /@smithy/util-hex-encoding@2.0.0: resolution: {integrity: sha512-c5xY+NUnFqG6d7HFh1IFfrm3mGl29lC+vF+geHv4ToiuJCBmIfzx6IeHLg+OgRdPFKDXIw6pvi+p3CsscaMcMA==} engines: {node: '>=14.0.0'} dependencies: tslib: 2.6.2 dev: false - /@smithy/util-middleware/2.0.0: + /@smithy/util-middleware@2.0.0: resolution: {integrity: sha512-eCWX4ECuDHn1wuyyDdGdUWnT4OGyIzV0LN1xRttBFMPI9Ff/4heSHVxneyiMtOB//zpXWCha1/SWHJOZstG7kA==} engines: {node: '>=14.0.0'} dependencies: tslib: 2.6.2 dev: false - /@smithy/util-retry/2.0.0: + /@smithy/util-retry@2.0.0: resolution: {integrity: sha512-/dvJ8afrElasuiiIttRJeoS2sy8YXpksQwiM/TcepqdRVp7u4ejd9C4IQURHNjlfPUT7Y6lCDSa2zQJbdHhVTg==} engines: {node: '>= 14.0.0'} dependencies: @@ -16998,7 +18285,7 @@ packages: tslib: 2.6.2 dev: false - /@smithy/util-stream/2.0.3: + /@smithy/util-stream@2.0.3: resolution: {integrity: sha512-+8n2vIyp6o9KHGey0PoGatcDthwVb7C/EzWfqojXrHhZOXy6l+hnWlfoF8zVerKYH2CUtravdJKRTy7vdkOXfQ==} engines: {node: '>=14.0.0'} dependencies: @@ -17012,14 +18299,14 @@ packages: tslib: 2.6.2 dev: false - /@smithy/util-uri-escape/2.0.0: + /@smithy/util-uri-escape@2.0.0: resolution: {integrity: sha512-ebkxsqinSdEooQduuk9CbKcI+wheijxEb3utGXkCoYQkJnwTnLbH1JXGimJtUkQwNQbsbuYwG2+aFVyZf5TLaw==} engines: {node: '>=14.0.0'} dependencies: tslib: 2.6.2 dev: false - /@smithy/util-utf8/2.0.0: + /@smithy/util-utf8@2.0.0: resolution: {integrity: sha512-rctU1VkziY84n5OXe3bPNpKR001ZCME2JCaBBFgtiM2hfKbHFudc/BkMuPab8hRbLd0j3vbnBTTZ1igBf0wgiQ==} engines: {node: '>=14.0.0'} dependencies: @@ -17027,7 +18314,7 @@ packages: tslib: 2.6.2 dev: false - /@smithy/util-waiter/2.0.3: + /@smithy/util-waiter@2.0.3: resolution: {integrity: sha512-3/Fzqoyecvh4cNvcHQDl1GznskXjGc9uZ8N6aoaPCKfsctgZad/J13xg8WC1UXc3PwKocHtuUvz0dRFDLaBppQ==} engines: {node: '>=14.0.0'} dependencies: @@ -17036,14 +18323,14 @@ packages: tslib: 2.6.2 dev: false - /@socket.io/component-emitter/3.1.0: + /@socket.io/component-emitter@3.1.0: resolution: {integrity: sha512-+9jVqKhRSpsc591z5vX+X5Yyw+he/HCB4iQ/RYxw35CEPaY1gnsNE43nf9n9AaYjAQrTiI/mOwKUKdUs9vf7Xg==} - /@socket.io/redis-adapter/7.2.0: + /@socket.io/redis-adapter@7.2.0: resolution: {integrity: sha512-/r6oF6Myz0K9uatB/pfCi0BhKg/KRMh1OokrqcjlNz6aq40WiXdFLRbHJQuwGHq/KvB+D6141K+IynbVxZGvhw==} engines: {node: '>=10.0.0'} dependencies: - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) notepack.io: 2.2.0 socket.io-adapter: 2.5.2 uid2: 0.0.3 @@ -17053,7 +18340,7 @@ packages: - utf-8-validate dev: false - /@stdlib/array-float32/0.0.6: + /@stdlib/array-float32@0.0.6: resolution: {integrity: sha512-QgKT5UaE92Rv7cxfn7wBKZAlwFFHPla8eXsMFsTGt5BiL4yUy36lwinPUh4hzybZ11rw1vifS3VAPuk6JP413Q==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17063,7 +18350,7 @@ packages: - supports-color dev: false - /@stdlib/array-float64/0.0.6: + /@stdlib/array-float64@0.0.6: resolution: {integrity: sha512-oE8y4a84LyBF1goX5//sU1mOjet8gLI0/6wucZcjg+j/yMmNV1xFu84Az9GOGmFSE6Ze6lirGOhfBeEWNNNaJg==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17071,7 +18358,7 @@ packages: '@stdlib/assert-has-float64array-support': 0.0.8 dev: false - /@stdlib/array-uint16/0.0.6: + /@stdlib/array-uint16@0.0.6: resolution: {integrity: sha512-/A8Tr0CqJ4XScIDRYQawosko8ha1Uy+50wsTgJhjUtXDpPRp7aUjmxvYkbe7Rm+ImYYbDQVix/uCiPAFQ8ed4Q==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17079,7 +18366,7 @@ packages: '@stdlib/assert-has-uint16array-support': 0.0.8 dev: false - /@stdlib/array-uint32/0.0.6: + /@stdlib/array-uint32@0.0.6: resolution: {integrity: sha512-2hFPK1Fg7obYPZWlGDjW9keiIB6lXaM9dKmJubg/ergLQCsJQJZpYsG6mMAfTJi4NT1UF4jTmgvyKD+yf0D9cA==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17087,7 +18374,7 @@ packages: '@stdlib/assert-has-uint32array-support': 0.0.8 dev: false - /@stdlib/array-uint8/0.0.7: + /@stdlib/array-uint8@0.0.7: resolution: {integrity: sha512-qYJQQfGKIcky6TzHFIGczZYTuVlut7oO+V8qUBs7BJC9TwikVnnOmb3hY3jToY4xaoi5p9OvgdJKPInhyIhzFg==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17095,7 +18382,7 @@ packages: '@stdlib/assert-has-uint8array-support': 0.0.8 dev: false - /@stdlib/assert-has-float32array-support/0.0.8: + /@stdlib/assert-has-float32array-support@0.0.8: resolution: {integrity: sha512-Yrg7K6rBqwCzDWZ5bN0VWLS5dNUWcoSfUeU49vTERdUmZID06J069CDc07UUl8vfQWhFgBWGocH3rrpKm1hi9w==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17109,7 +18396,7 @@ packages: - supports-color dev: false - /@stdlib/assert-has-float64array-support/0.0.8: + /@stdlib/assert-has-float64array-support@0.0.8: resolution: {integrity: sha512-UVQcoeWqgMw9b8PnAmm/sgzFnuWkZcNhJoi7xyMjbiDV/SP1qLCrvi06mq86cqS3QOCma1fEayJdwgteoXyyuw==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17120,7 +18407,7 @@ packages: '@stdlib/fs-read-file': 0.0.8 dev: false - /@stdlib/assert-has-node-buffer-support/0.0.8: + /@stdlib/assert-has-node-buffer-support@0.0.8: resolution: {integrity: sha512-fgI+hW4Yg4ciiv4xVKH+1rzdV7e5+6UKgMnFbc1XDXHcxLub3vOr8+H6eDECdAIfgYNA7X0Dxa/DgvX9dwDTAQ==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17131,13 +18418,13 @@ packages: '@stdlib/fs-read-file': 0.0.8 dev: false - /@stdlib/assert-has-own-property/0.0.7: + /@stdlib/assert-has-own-property@0.0.7: resolution: {integrity: sha512-3YHwSWiUqGlTLSwxAWxrqaD1PkgcJniGyotJeIt5X0tSNmSW0/c9RWroCImTUUB3zBkyBJ79MyU9Nf4Qgm59fQ==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] dev: false - /@stdlib/assert-has-symbol-support/0.0.8: + /@stdlib/assert-has-symbol-support@0.0.8: resolution: {integrity: sha512-PoQ9rk8DgDCuBEkOIzGGQmSnjtcdagnUIviaP5YskB45/TJHXseh4NASWME8FV77WFW9v/Wt1MzKFKMzpDFu4Q==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17147,7 +18434,7 @@ packages: '@stdlib/fs-read-file': 0.0.8 dev: false - /@stdlib/assert-has-tostringtag-support/0.0.9: + /@stdlib/assert-has-tostringtag-support@0.0.9: resolution: {integrity: sha512-UTsqdkrnQ7eufuH5BeyWOJL3ska3u5nvDWKqw3onNNZ2mvdgkfoFD7wHutVGzAA2rkTsSJAMBHVwWLsm5SbKgw==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17158,7 +18445,7 @@ packages: '@stdlib/fs-read-file': 0.0.8 dev: false - /@stdlib/assert-has-uint16array-support/0.0.8: + /@stdlib/assert-has-uint16array-support@0.0.8: resolution: {integrity: sha512-vqFDn30YrtzD+BWnVqFhB130g3cUl2w5AdOxhIkRkXCDYAM5v7YwdNMJEON+D4jI8YB4D5pEYjqKweYaCq4nyg==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17170,7 +18457,7 @@ packages: '@stdlib/fs-read-file': 0.0.8 dev: false - /@stdlib/assert-has-uint32array-support/0.0.8: + /@stdlib/assert-has-uint32array-support@0.0.8: resolution: {integrity: sha512-tJtKuiFKwFSQQUfRXEReOVGXtfdo6+xlshSfwwNWXL1WPP2LrceoiUoQk7zMCMT6VdbXgGH92LDjVcPmSbH4Xw==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17182,7 +18469,7 @@ packages: '@stdlib/fs-read-file': 0.0.8 dev: false - /@stdlib/assert-has-uint8array-support/0.0.8: + /@stdlib/assert-has-uint8array-support@0.0.8: resolution: {integrity: sha512-ie4vGTbAS/5Py+LLjoSQi0nwtYBp+WKk20cMYCzilT0rCsBI/oez0RqHrkYYpmt4WaJL4eJqC+/vfQ5NsI7F5w==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17194,7 +18481,7 @@ packages: '@stdlib/fs-read-file': 0.0.8 dev: false - /@stdlib/assert-is-array/0.0.7: + /@stdlib/assert-is-array@0.0.7: resolution: {integrity: sha512-/o6KclsGkNcZ5hiROarsD9XUs6xQMb4lTwF6O71UHbKWTtomEF/jD0rxLvlvj0BiCxfKrReddEYd2CnhUyskMA==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17202,7 +18489,7 @@ packages: '@stdlib/utils-native-class': 0.0.8 dev: false - /@stdlib/assert-is-big-endian/0.0.7: + /@stdlib/assert-is-big-endian@0.0.7: resolution: {integrity: sha512-BvutsX84F76YxaSIeS5ZQTl536lz+f+P7ew68T1jlFqxBhr4v7JVYFmuf24U040YuK1jwZ2sAq+bPh6T09apwQ==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17214,7 +18501,7 @@ packages: '@stdlib/fs-read-file': 0.0.8 dev: false - /@stdlib/assert-is-boolean/0.0.8: + /@stdlib/assert-is-boolean@0.0.8: resolution: {integrity: sha512-PRCpslMXSYqFMz1Yh4dG2K/WzqxTCtlKbgJQD2cIkAtXux4JbYiXCtepuoV7l4Wv1rm0a1eU8EqNPgnOmWajGw==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17224,7 +18511,7 @@ packages: '@stdlib/utils-native-class': 0.0.8 dev: false - /@stdlib/assert-is-buffer/0.0.8: + /@stdlib/assert-is-buffer@0.0.8: resolution: {integrity: sha512-SYmGwOXkzZVidqUyY1IIx6V6QnSL36v3Lcwj8Rvne/fuW0bU2OomsEBzYCFMvcNgtY71vOvgZ9VfH3OppvV6eA==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17232,7 +18519,7 @@ packages: '@stdlib/assert-is-object-like': 0.0.8 dev: false - /@stdlib/assert-is-float32array/0.0.8: + /@stdlib/assert-is-float32array@0.0.8: resolution: {integrity: sha512-Phk0Ze7Vj2/WLv5Wy8Oo7poZIDMSTiTrEnc1t4lBn3Svz2vfBXlvCufi/i5d93vc4IgpkdrOEwfry6nldABjNQ==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17240,7 +18527,7 @@ packages: '@stdlib/utils-native-class': 0.0.8 dev: false - /@stdlib/assert-is-float64array/0.0.8: + /@stdlib/assert-is-float64array@0.0.8: resolution: {integrity: sha512-UC0Av36EEYIgqBbCIz1lj9g7qXxL5MqU1UrWun+n91lmxgdJ+Z77fHy75efJbJlXBf6HXhcYXECIsc0u3SzyDQ==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17248,7 +18535,7 @@ packages: '@stdlib/utils-native-class': 0.0.8 dev: false - /@stdlib/assert-is-function/0.0.8: + /@stdlib/assert-is-function@0.0.8: resolution: {integrity: sha512-M55Dt2njp5tnY8oePdbkKBRIypny+LpCMFZhEjJIxjLE4rA6zSlHs1yRMqD4PmW+Wl9WTeEM1GYO4AQHl1HAjA==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17256,7 +18543,7 @@ packages: '@stdlib/utils-type-of': 0.0.8 dev: false - /@stdlib/assert-is-little-endian/0.0.7: + /@stdlib/assert-is-little-endian@0.0.7: resolution: {integrity: sha512-SPObC73xXfDXY0dOewXR0LDGN3p18HGzm+4K8azTj6wug0vpRV12eB3hbT28ybzRCa6TAKUjwM/xY7Am5QzIlA==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17268,7 +18555,7 @@ packages: '@stdlib/fs-read-file': 0.0.8 dev: false - /@stdlib/assert-is-number/0.0.7: + /@stdlib/assert-is-number@0.0.7: resolution: {integrity: sha512-mNV4boY1cUOmoWWfA2CkdEJfXA6YvhcTvwKC0Fzq+HoFFOuTK/scpTd9HanUyN6AGBlWA8IW+cQ1ZwOT3XMqag==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17279,7 +18566,7 @@ packages: '@stdlib/utils-native-class': 0.0.8 dev: false - /@stdlib/assert-is-object-like/0.0.8: + /@stdlib/assert-is-object-like@0.0.8: resolution: {integrity: sha512-pe9selDPYAu/lYTFV5Rj4BStepgbzQCr36b/eC8EGSJh6gMgRXgHVv0R+EbdJ69KNkHvKKRjnWj0A/EmCwW+OA==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17288,7 +18575,7 @@ packages: '@stdlib/utils-define-nonenumerable-read-only-property': 0.0.7 dev: false - /@stdlib/assert-is-object/0.0.8: + /@stdlib/assert-is-object@0.0.8: resolution: {integrity: sha512-ooPfXDp9c7w+GSqD2NBaZ/Du1JRJlctv+Abj2vRJDcDPyrnRTb1jmw+AuPgcW7Ca7op39JTbArI+RVHm/FPK+Q==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17296,7 +18583,7 @@ packages: '@stdlib/assert-is-array': 0.0.7 dev: false - /@stdlib/assert-is-plain-object/0.0.7: + /@stdlib/assert-is-plain-object@0.0.7: resolution: {integrity: sha512-t/CEq2a083ajAgXgSa5tsH8l3kSoEqKRu1qUwniVLFYL4RGv3615CrpJUDQKVtEX5S/OKww5q0Byu3JidJ4C5w==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17308,7 +18595,7 @@ packages: '@stdlib/utils-native-class': 0.0.8 dev: false - /@stdlib/assert-is-regexp-string/0.0.9: + /@stdlib/assert-is-regexp-string@0.0.9: resolution: {integrity: sha512-FYRJJtH7XwXEf//X6UByUC0Eqd0ZYK5AC8or5g5m5efQrgr2lOaONHyDQ3Scj1A2D6QLIJKZc9XBM4uq5nOPXA==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17323,7 +18610,7 @@ packages: '@stdlib/streams-node-stdin': 0.0.7 dev: false - /@stdlib/assert-is-regexp/0.0.7: + /@stdlib/assert-is-regexp@0.0.7: resolution: {integrity: sha512-ty5qvLiqkDq6AibHlNJe0ZxDJ9Mg896qolmcHb69mzp64vrsORnPPOTzVapAq0bEUZbXoypeijypLPs9sCGBSQ==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17332,7 +18619,7 @@ packages: '@stdlib/utils-native-class': 0.0.8 dev: false - /@stdlib/assert-is-string/0.0.8: + /@stdlib/assert-is-string@0.0.8: resolution: {integrity: sha512-Uk+bR4cglGBbY0q7O7HimEJiW/DWnO1tSzr4iAGMxYgf+VM2PMYgI5e0TLy9jOSOzWon3YS39lc63eR3a9KqeQ==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17342,7 +18629,7 @@ packages: '@stdlib/utils-native-class': 0.0.8 dev: false - /@stdlib/assert-is-uint16array/0.0.8: + /@stdlib/assert-is-uint16array@0.0.8: resolution: {integrity: sha512-M+qw7au+qglRXcXHjvoUZVLlGt1mPjuKudrVRto6KL4+tDsP2j+A89NDP3Fz8/XIUD+5jhj+65EOKHSMvDYnng==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17350,7 +18637,7 @@ packages: '@stdlib/utils-native-class': 0.0.8 dev: false - /@stdlib/assert-is-uint32array/0.0.8: + /@stdlib/assert-is-uint32array@0.0.8: resolution: {integrity: sha512-cnZi2DicYcplMnkJ3dBxBVKsRNFjzoGpmG9A6jXq4KH5rFl52SezGAXSVY9o5ZV7bQGaF5JLyCLp6n9Y74hFGg==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17358,7 +18645,7 @@ packages: '@stdlib/utils-native-class': 0.0.8 dev: false - /@stdlib/assert-is-uint8array/0.0.8: + /@stdlib/assert-is-uint8array@0.0.8: resolution: {integrity: sha512-8cqpDQtjnJAuVtRkNAktn45ixq0JHaGJxVsSiK79k7GRggvMI6QsbzO6OvcLnZ/LimD42FmgbLd13Yc2esDmZw==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17366,7 +18653,7 @@ packages: '@stdlib/utils-native-class': 0.0.8 dev: false - /@stdlib/assert-tools-array-function/0.0.7: + /@stdlib/assert-tools-array-function@0.0.7: resolution: {integrity: sha512-3lqkaCIBMSJ/IBHHk4NcCnk2NYU52tmwTYbbqhAmv7vim8rZPNmGfj3oWkzrCsyCsyTF7ooD+In2x+qTmUbCtQ==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17374,7 +18661,7 @@ packages: '@stdlib/assert-is-array': 0.0.7 dev: false - /@stdlib/buffer-ctor/0.0.7: + /@stdlib/buffer-ctor@0.0.7: resolution: {integrity: sha512-4IyTSGijKUQ8+DYRaKnepf9spvKLZ+nrmZ+JrRcB3FrdTX/l9JDpggcUcC/Fe+A4KIZOnClfxLn6zfIlkCZHNA==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17382,7 +18669,7 @@ packages: '@stdlib/assert-has-node-buffer-support': 0.0.8 dev: false - /@stdlib/buffer-from-string/0.0.8: + /@stdlib/buffer-from-string@0.0.8: resolution: {integrity: sha512-Dws5ZbK2M9l4Bkn/ODHFm3lNZ8tWko+NYXqGS/UH/RIQv3PGp+1tXFUSvjwjDneM6ppjQVExzVedUH1ftABs9A==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17393,7 +18680,7 @@ packages: '@stdlib/string-format': 0.0.3 dev: false - /@stdlib/cli-ctor/0.0.3: + /@stdlib/cli-ctor@0.0.3: resolution: {integrity: sha512-0zCuZnzFyxj66GoF8AyIOhTX5/mgGczFvr6T9h4mXwegMZp8jBC/ZkOGMwmp+ODLBTvlcnnDNpNFkDDyR6/c2g==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17403,7 +18690,7 @@ packages: minimist: 1.2.8 dev: false - /@stdlib/complex-float32/0.0.7: + /@stdlib/complex-float32@0.0.7: resolution: {integrity: sha512-POCtQcBZnPm4IrFmTujSaprR1fcOFr/MRw2Mt7INF4oed6b1nzeG647K+2tk1m4mMrMPiuXCdvwJod4kJ0SXxQ==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17417,7 +18704,7 @@ packages: - supports-color dev: false - /@stdlib/complex-float64/0.0.8: + /@stdlib/complex-float64@0.0.8: resolution: {integrity: sha512-lUJwsXtGEziOWAqCcnKnZT4fcVoRsl6t6ECaCJX45Z7lAc70yJLiwUieLWS5UXmyoADHuZyUXkxtI4oClfpnaw==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17431,7 +18718,7 @@ packages: - supports-color dev: false - /@stdlib/complex-reim/0.0.6: + /@stdlib/complex-reim@0.0.6: resolution: {integrity: sha512-28WXfPSIFMtHb0YgdatkGS4yxX5sPYea5MiNgqPv3E78+tFcg8JJG52NQ/MviWP2wsN9aBQAoCPeu8kXxSPdzA==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17444,7 +18731,7 @@ packages: - supports-color dev: false - /@stdlib/complex-reimf/0.0.1: + /@stdlib/complex-reimf@0.0.1: resolution: {integrity: sha512-P9zu05ZW2i68Oppp3oHelP7Tk0D7tGBL0hGl1skJppr2vY9LltuNbeYI3C96tQe/7Enw/5GyAWgxoQI4cWccQA==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17457,7 +18744,7 @@ packages: - supports-color dev: false - /@stdlib/constants-float64-exponent-bias/0.0.8: + /@stdlib/constants-float64-exponent-bias@0.0.8: resolution: {integrity: sha512-IzBJQw9hYgWCki7VoC/zJxEA76Nmf8hmY+VkOWnJ8IyfgTXClgY8tfDGS1cc4l/hCOEllxGp9FRvVdn24A5tKQ==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17467,7 +18754,7 @@ packages: - supports-color dev: false - /@stdlib/constants-float64-high-word-abs-mask/0.0.1: + /@stdlib/constants-float64-high-word-abs-mask@0.0.1: resolution: {integrity: sha512-1vy8SUyMHFBwqUUVaZFA7r4/E3cMMRKSwsaa/EZ15w7Kmc01W/ZmaaTLevRcIdACcNgK+8i8813c8H7LScXNcQ==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17477,7 +18764,7 @@ packages: - supports-color dev: false - /@stdlib/constants-float64-high-word-exponent-mask/0.0.8: + /@stdlib/constants-float64-high-word-exponent-mask@0.0.8: resolution: {integrity: sha512-z28/EQERc0VG7N36bqdvtrRWjFc8600PKkwvl/nqx6TpKAzMXNw55BS1xT4C28Sa9Z7uBWeUj3UbIFedbkoyMw==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17487,7 +18774,7 @@ packages: - supports-color dev: false - /@stdlib/constants-float64-high-word-sign-mask/0.0.1: + /@stdlib/constants-float64-high-word-sign-mask@0.0.1: resolution: {integrity: sha512-hmTr5caK1lh1m0eyaQqt2Vt3y+eEdAx57ndbADEbXhxC9qSGd0b4bLSzt/Xp4MYBYdQkHAE/BlkgUiRThswhCg==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17497,7 +18784,7 @@ packages: - supports-color dev: false - /@stdlib/constants-float64-max-base2-exponent-subnormal/0.0.8: + /@stdlib/constants-float64-max-base2-exponent-subnormal@0.0.8: resolution: {integrity: sha512-YGBZykSiXFebznnJfWFDwhho2Q9xhUWOL+X0lZJ4ItfTTo40W6VHAyNYz98tT/gJECFype0seNzzo1nUxCE7jQ==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17507,7 +18794,7 @@ packages: - supports-color dev: false - /@stdlib/constants-float64-max-base2-exponent/0.0.8: + /@stdlib/constants-float64-max-base2-exponent@0.0.8: resolution: {integrity: sha512-xBAOtso1eiy27GnTut2difuSdpsGxI8dJhXupw0UukGgvy/3CSsyNm+a1Suz/dhqK4tPOTe5QboIdNMw5IgXKQ==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17517,7 +18804,7 @@ packages: - supports-color dev: false - /@stdlib/constants-float64-min-base2-exponent-subnormal/0.0.8: + /@stdlib/constants-float64-min-base2-exponent-subnormal@0.0.8: resolution: {integrity: sha512-bt81nBus/91aEqGRQBenEFCyWNsf8uaxn4LN1NjgkvY92S1yVxXFlC65fJHsj9FTqvyZ+uj690/gdMKUDV3NjQ==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17527,7 +18814,7 @@ packages: - supports-color dev: false - /@stdlib/constants-float64-ninf/0.0.8: + /@stdlib/constants-float64-ninf@0.0.8: resolution: {integrity: sha512-bn/uuzCne35OSLsQZJlNrkvU1/40spGTm22g1+ZI1LL19J8XJi/o4iupIHRXuLSTLFDBqMoJlUNphZlWQ4l8zw==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17538,7 +18825,7 @@ packages: - supports-color dev: false - /@stdlib/constants-float64-pinf/0.0.8: + /@stdlib/constants-float64-pinf@0.0.8: resolution: {integrity: sha512-I3R4rm2cemoMuiDph07eo5oWZ4ucUtpuK73qBJiJPDQKz8fSjSe4wJBAigq2AmWYdd7yJHsl5NJd8AgC6mP5Qw==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17548,7 +18835,7 @@ packages: - supports-color dev: false - /@stdlib/constants-float64-smallest-normal/0.0.8: + /@stdlib/constants-float64-smallest-normal@0.0.8: resolution: {integrity: sha512-Qwxpn5NA3RXf+mQcffCWRcsHSPTUQkalsz0+JDpblDszuz2XROcXkOdDr5LKgTAUPIXsjOgZzTsuRONENhsSEg==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17558,25 +18845,25 @@ packages: - supports-color dev: false - /@stdlib/constants-uint16-max/0.0.7: + /@stdlib/constants-uint16-max@0.0.7: resolution: {integrity: sha512-7TPoku7SlskA67mAm7mykIAjeEnkQJemw1cnKZur0mT5W4ryvDR6iFfL9xBiByVnWYq/+ei7DHbOv6/2b2jizw==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] dev: false - /@stdlib/constants-uint32-max/0.0.7: + /@stdlib/constants-uint32-max@0.0.7: resolution: {integrity: sha512-8+NK0ewqc1vnEZNqzwFJgFSy3S543Eft7i8WyW/ygkofiqEiLAsujvYMHzPAB8/3D+PYvjTSe37StSwRwvQ6uw==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] dev: false - /@stdlib/constants-uint8-max/0.0.7: + /@stdlib/constants-uint8-max@0.0.7: resolution: {integrity: sha512-fqV+xds4jgwFxwWu08b8xDuIoW6/D4/1dtEjZ1sXVeWR7nf0pjj1cHERq4kdkYxsvOGu+rjoR3MbjzpFc4fvSw==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] dev: false - /@stdlib/fs-exists/0.0.8: + /@stdlib/fs-exists@0.0.8: resolution: {integrity: sha512-mZktcCxiLmycCJefm1+jbMTYkmhK6Jk1ShFmUVqJvs+Ps9/2EEQXfPbdEniLoVz4HeHLlcX90JWobUEghOOnAQ==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17588,7 +18875,7 @@ packages: '@stdlib/utils-define-nonenumerable-read-only-property': 0.0.7 dev: false - /@stdlib/fs-read-file/0.0.8: + /@stdlib/fs-read-file@0.0.8: resolution: {integrity: sha512-pIZID/G91+q7ep4x9ECNC45+JT2j0+jdz/ZQVjCHiEwXCwshZPEvxcPQWb9bXo6coOY+zJyX5TwBIpXBxomWFg==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17598,7 +18885,7 @@ packages: '@stdlib/utils-define-nonenumerable-read-only-property': 0.0.7 dev: false - /@stdlib/fs-resolve-parent-path/0.0.8: + /@stdlib/fs-resolve-parent-path@0.0.8: resolution: {integrity: sha512-ok1bTWsAziChibQE3u7EoXwbCQUDkFjjRAHSxh7WWE5JEYVJQg1F0o3bbjRr4D/wfYYPWLAt8AFIKBUDmWghpg==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17615,7 +18902,7 @@ packages: '@stdlib/utils-define-nonenumerable-read-only-property': 0.0.7 dev: false - /@stdlib/math-base-assert-is-infinite/0.0.9: + /@stdlib/math-base-assert-is-infinite@0.0.9: resolution: {integrity: sha512-JuPDdmxd+AtPWPHu9uaLvTsnEPaZODZk+zpagziNbDKy8DRiU1cy+t+QEjB5WizZt0A5MkuxDTjZ/8/sG5GaYQ==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17627,7 +18914,7 @@ packages: - supports-color dev: false - /@stdlib/math-base-assert-is-nan/0.0.8: + /@stdlib/math-base-assert-is-nan@0.0.8: resolution: {integrity: sha512-m+gCVBxLFW8ZdAfdkATetYMvM7sPFoMKboacHjb1pe21jHQqVb+/4bhRSDg6S7HGX7/8/bSzEUm9zuF7vqK5rQ==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17637,7 +18924,7 @@ packages: - supports-color dev: false - /@stdlib/math-base-napi-binary/0.0.8: + /@stdlib/math-base-napi-binary@0.0.8: resolution: {integrity: sha512-B8d0HBPhfXefbdl/h0h5c+lM2sE+/U7Fb7hY/huVeoQtBtEx0Jbx/qKvPSVxMjmWCKfWlbPpbgKpN5GbFgLiAg==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17651,7 +18938,7 @@ packages: - supports-color dev: false - /@stdlib/math-base-napi-unary/0.0.9: + /@stdlib/math-base-napi-unary@0.0.9: resolution: {integrity: sha512-2WNKhjCygkGMp0RgjaD7wAHJTqPZmuVW7yPOc62Tnz2U+Ad8q/tcOcN+uvq2dtKsAGr1HDMIQxZ/XrrThMePyA==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17665,7 +18952,7 @@ packages: - supports-color dev: false - /@stdlib/math-base-special-abs/0.0.6: + /@stdlib/math-base-special-abs@0.0.6: resolution: {integrity: sha512-FaaMUnYs2qIVN3kI5m/qNlBhDnjszhDOzEhxGEoQWR/k0XnxbCsTyjNesR2DkpiKuoAXAr9ojoDe2qBYdirWoQ==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17677,7 +18964,7 @@ packages: - supports-color dev: false - /@stdlib/math-base-special-copysign/0.0.7: + /@stdlib/math-base-special-copysign@0.0.7: resolution: {integrity: sha512-7Br7oeuVJSBKG8BiSk/AIRFTBd2sbvHdV3HaqRj8tTZHX8BQomZ3Vj4Qsiz3kPyO4d6PpBLBTYlGTkSDlGOZJA==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17693,7 +18980,7 @@ packages: - supports-color dev: false - /@stdlib/math-base-special-ldexp/0.0.5: + /@stdlib/math-base-special-ldexp@0.0.5: resolution: {integrity: sha512-RLRsPpCdcJZMhwb4l4B/FsmGfEPEWAsik6KYUkUSSHb7ok/gZWt8LgVScxGMpJMpl5IV0v9qG4ZINVONKjX5KA==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17715,13 +19002,13 @@ packages: - supports-color dev: false - /@stdlib/number-ctor/0.0.7: + /@stdlib/number-ctor@0.0.7: resolution: {integrity: sha512-kXNwKIfnb10Ro3RTclhAYqbE3DtIXax+qpu0z1/tZpI2vkmTfYDQLno2QJrzJsZZgdeFtXIws+edONN9kM34ow==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] dev: false - /@stdlib/number-float64-base-exponent/0.0.6: + /@stdlib/number-float64-base-exponent@0.0.6: resolution: {integrity: sha512-wLXsG+cvynmapoffmj5hVNDH7BuHIGspBcTCdjPaD+tnqPDIm03qV5Z9YBhDh91BdOCuPZQ8Ovu2WBpX+ySeGg==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17733,7 +19020,7 @@ packages: - supports-color dev: false - /@stdlib/number-float64-base-from-words/0.0.6: + /@stdlib/number-float64-base-from-words@0.0.6: resolution: {integrity: sha512-r0elnekypCN831aw9Gp8+08br8HHAqvqtc5uXaxEh3QYIgBD/QM5qSb3b7WSAQ0ZxJJKdoykupODWWBkWQTijg==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17747,7 +19034,7 @@ packages: - supports-color dev: false - /@stdlib/number-float64-base-get-high-word/0.0.6: + /@stdlib/number-float64-base-get-high-word@0.0.6: resolution: {integrity: sha512-jSFSYkgiG/IzDurbwrDKtWiaZeSEJK8iJIsNtbPG1vOIdQMRyw+t0bf3Kf3vuJu/+bnSTvYZLqpCO6wzT/ve9g==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17761,7 +19048,7 @@ packages: - supports-color dev: false - /@stdlib/number-float64-base-normalize/0.0.9: + /@stdlib/number-float64-base-normalize@0.0.9: resolution: {integrity: sha512-+rm7RQJEj8zHkqYFE2a6DgNQSB5oKE/IydHAajgZl40YB91BoYRYf/ozs5/tTwfy2Fc04+tIpSfFtzDr4ZY19Q==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17777,7 +19064,7 @@ packages: - supports-color dev: false - /@stdlib/number-float64-base-to-float32/0.0.7: + /@stdlib/number-float64-base-to-float32@0.0.7: resolution: {integrity: sha512-PNUSi6+cqfFiu4vgFljUKMFY2O9PxI6+T+vqtIoh8cflf+PjSGj3v4QIlstK9+6qU40eGR5SHZyLTWdzmNqLTQ==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17787,7 +19074,7 @@ packages: - supports-color dev: false - /@stdlib/number-float64-base-to-words/0.0.7: + /@stdlib/number-float64-base-to-words@0.0.7: resolution: {integrity: sha512-7wsYuq+2MGp9rAkTnQ985rah7EJI9TfgHrYSSd4UIu4qIjoYmWIKEhIDgu7/69PfGrls18C3PxKg1pD/v7DQTg==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17804,7 +19091,7 @@ packages: - supports-color dev: false - /@stdlib/os-byte-order/0.0.7: + /@stdlib/os-byte-order@0.0.7: resolution: {integrity: sha512-rRJWjFM9lOSBiIX4zcay7BZsqYBLoE32Oz/Qfim8cv1cN1viS5D4d3DskRJcffw7zXDnG3oZAOw5yZS0FnlyUg==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17819,7 +19106,7 @@ packages: - supports-color dev: false - /@stdlib/os-float-word-order/0.0.7: + /@stdlib/os-float-word-order@0.0.7: resolution: {integrity: sha512-gXIcIZf+ENKP7E41bKflfXmPi+AIfjXW/oU+m8NbP3DQasqHaZa0z5758qvnbO8L1lRJb/MzLOkIY8Bx/0cWEA==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17833,7 +19120,7 @@ packages: - supports-color dev: false - /@stdlib/process-cwd/0.0.8: + /@stdlib/process-cwd@0.0.8: resolution: {integrity: sha512-GHINpJgSlKEo9ODDWTHp0/Zc/9C/qL92h5Mc0QlIFBXAoUjy6xT4FB2U16wCNZMG3eVOzt5+SjmCwvGH0Wbg3Q==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17843,7 +19130,7 @@ packages: '@stdlib/fs-read-file': 0.0.8 dev: false - /@stdlib/process-read-stdin/0.0.7: + /@stdlib/process-read-stdin@0.0.7: resolution: {integrity: sha512-nep9QZ5iDGrRtrZM2+pYAvyCiYG4HfO0/9+19BiLJepjgYq4GKeumPAQo22+1xawYDL7Zu62uWzYszaVZcXuyw==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17856,7 +19143,7 @@ packages: '@stdlib/utils-next-tick': 0.0.8 dev: false - /@stdlib/regexp-eol/0.0.7: + /@stdlib/regexp-eol@0.0.7: resolution: {integrity: sha512-BTMpRWrmlnf1XCdTxOrb8o6caO2lmu/c80XSyhYCi1DoizVIZnqxOaN5yUJNCr50g28vQ47PpsT3Yo7J3SdlRA==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17868,7 +19155,7 @@ packages: '@stdlib/utils-define-nonenumerable-read-only-property': 0.0.7 dev: false - /@stdlib/regexp-extended-length-path/0.0.7: + /@stdlib/regexp-extended-length-path@0.0.7: resolution: {integrity: sha512-z6uqzMWq3WPDKbl4MIZJoNA5ZsYLQI9G3j2TIvhU8X2hnhlku8p4mvK9F+QmoVvgPxKliwNnx/DAl7ltutSDKw==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17876,7 +19163,7 @@ packages: '@stdlib/utils-define-nonenumerable-read-only-property': 0.0.7 dev: false - /@stdlib/regexp-function-name/0.0.7: + /@stdlib/regexp-function-name@0.0.7: resolution: {integrity: sha512-MaiyFUUqkAUpUoz/9F6AMBuMQQfA9ssQfK16PugehLQh4ZtOXV1LhdY8e5Md7SuYl9IrvFVg1gSAVDysrv5ZMg==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17884,7 +19171,7 @@ packages: '@stdlib/utils-define-nonenumerable-read-only-property': 0.0.7 dev: false - /@stdlib/regexp-regexp/0.0.8: + /@stdlib/regexp-regexp@0.0.8: resolution: {integrity: sha512-S5PZICPd/XRcn1dncVojxIDzJsHtEleuJHHD7ji3o981uPHR7zI2Iy9a1eV2u7+ABeUswbI1Yuix6fXJfcwV1w==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17892,25 +19179,25 @@ packages: '@stdlib/utils-define-nonenumerable-read-only-property': 0.0.7 dev: false - /@stdlib/streams-node-stdin/0.0.7: + /@stdlib/streams-node-stdin@0.0.7: resolution: {integrity: sha512-gg4lgrjuoG3V/L29wNs32uADMCqepIcmoOFHJCTAhVe0GtHDLybUVnLljaPfdvmpPZmTvmusPQtIcscbyWvAyg==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] dev: false - /@stdlib/string-base-format-interpolate/0.0.4: + /@stdlib/string-base-format-interpolate@0.0.4: resolution: {integrity: sha512-8FC8+/ey+P5hf1B50oXpXzRzoAgKI1rikpyKZ98Xmjd5rcbSq3NWYi8TqOF8mUHm9hVZ2CXWoNCtEe2wvMQPMg==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] dev: false - /@stdlib/string-base-format-tokenize/0.0.4: + /@stdlib/string-base-format-tokenize@0.0.4: resolution: {integrity: sha512-+vMIkheqAhDeT/iF5hIQo95IMkt5IzC68eR3CxW1fhc48NMkKFE2UfN73ET8fmLuOanLo/5pO2E90c2G7PExow==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] dev: false - /@stdlib/string-format/0.0.3: + /@stdlib/string-format@0.0.3: resolution: {integrity: sha512-1jiElUQXlI/tTkgRuzJi9jUz/EjrO9kzS8VWHD3g7gdc3ZpxlA5G9JrIiPXGw/qmZTi0H1pXl6KmX+xWQEQJAg==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17919,7 +19206,7 @@ packages: '@stdlib/string-base-format-tokenize': 0.0.4 dev: false - /@stdlib/string-lowercase/0.0.9: + /@stdlib/string-lowercase@0.0.9: resolution: {integrity: sha512-tXFFjbhIlDak4jbQyV1DhYiSTO8b1ozS2g/LELnsKUjIXECDKxGFyWYcz10KuyAWmFotHnCJdIm8/blm2CfDIA==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17933,7 +19220,7 @@ packages: '@stdlib/string-format': 0.0.3 dev: false - /@stdlib/string-replace/0.0.11: + /@stdlib/string-replace@0.0.11: resolution: {integrity: sha512-F0MY4f9mRE5MSKpAUfL4HLbJMCbG6iUTtHAWnNeAXIvUX1XYIw/eItkA58R9kNvnr1l5B08bavnjrgTJGIKFFQ==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17953,13 +19240,13 @@ packages: '@stdlib/utils-regexp-from-string': 0.0.9 dev: false - /@stdlib/types/0.0.14: + /@stdlib/types@0.0.14: resolution: {integrity: sha512-AP3EI9/il/xkwUazcoY+SbjtxHRrheXgSbWZdEGD+rWpEgj6n2i63hp6hTOpAB5NipE0tJwinQlDGOuQ1lCaCw==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] dev: false - /@stdlib/utils-constructor-name/0.0.8: + /@stdlib/utils-constructor-name@0.0.8: resolution: {integrity: sha512-GXpyNZwjN8u3tyYjL2GgGfrsxwvfogUC3gg7L7NRZ1i86B6xmgfnJUYHYOUnSfB+R531ET7NUZlK52GxL7P82Q==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17969,7 +19256,7 @@ packages: '@stdlib/utils-native-class': 0.0.8 dev: false - /@stdlib/utils-convert-path/0.0.8: + /@stdlib/utils-convert-path@0.0.8: resolution: {integrity: sha512-GNd8uIswrcJCctljMbmjtE4P4oOjhoUIfMvdkqfSrRLRY+ZqPB2xM+yI0MQFfUq/0Rnk/xtESlGSVLz9ZDtXfA==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17986,7 +19273,7 @@ packages: '@stdlib/string-replace': 0.0.11 dev: false - /@stdlib/utils-define-nonenumerable-read-only-property/0.0.7: + /@stdlib/utils-define-nonenumerable-read-only-property@0.0.7: resolution: {integrity: sha512-c7dnHDYuS4Xn3XBRWIQBPcROTtP/4lkcFyq0FrQzjXUjimfMgHF7cuFIIob6qUTnU8SOzY9p0ydRR2QJreWE6g==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -17995,7 +19282,7 @@ packages: '@stdlib/utils-define-property': 0.0.9 dev: false - /@stdlib/utils-define-property/0.0.9: + /@stdlib/utils-define-property@0.0.9: resolution: {integrity: sha512-pIzVvHJvVfU/Lt45WwUAcodlvSPDDSD4pIPc9WmIYi4vnEBA9U7yHtiNz2aTvfGmBMTaLYTVVFIXwkFp+QotMA==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -18003,7 +19290,7 @@ packages: '@stdlib/types': 0.0.14 dev: false - /@stdlib/utils-escape-regexp-string/0.0.9: + /@stdlib/utils-escape-regexp-string@0.0.9: resolution: {integrity: sha512-E+9+UDzf2mlMLgb+zYrrPy2FpzbXh189dzBJY6OG+XZqEJAXcjWs7DURO5oGffkG39EG5KXeaQwDXUavcMDCIw==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -18012,7 +19299,7 @@ packages: '@stdlib/string-format': 0.0.3 dev: false - /@stdlib/utils-get-prototype-of/0.0.7: + /@stdlib/utils-get-prototype-of@0.0.7: resolution: {integrity: sha512-fCUk9lrBO2ELrq+/OPJws1/hquI4FtwG0SzVRH6UJmJfwb1zoEFnjcwyDAy+HWNVmo3xeRLsrz6XjHrJwer9pg==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -18021,7 +19308,7 @@ packages: '@stdlib/utils-native-class': 0.0.8 dev: false - /@stdlib/utils-global/0.0.7: + /@stdlib/utils-global@0.0.7: resolution: {integrity: sha512-BBNYBdDUz1X8Lhfw9nnnXczMv9GztzGpQ88J/6hnY7PHJ71av5d41YlijWeM9dhvWjnH9I7HNE3LL7R07yw0kA==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -18029,7 +19316,7 @@ packages: '@stdlib/assert-is-boolean': 0.0.8 dev: false - /@stdlib/utils-library-manifest/0.0.8: + /@stdlib/utils-library-manifest@0.0.8: resolution: {integrity: sha512-IOQSp8skSRQn9wOyMRUX9Hi0j/P5v5TvD8DJWTqtE8Lhr8kVVluMBjHfvheoeKHxfWAbNHSVpkpFY/Bdh/SHgQ==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -18044,7 +19331,7 @@ packages: - supports-color dev: false - /@stdlib/utils-native-class/0.0.8: + /@stdlib/utils-native-class@0.0.8: resolution: {integrity: sha512-0Zl9me2V9rSrBw/N8o8/9XjmPUy8zEeoMM0sJmH3N6C9StDsYTjXIAMPGzYhMEWaWHvGeYyNteFK2yDOVGtC3w==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -18053,19 +19340,19 @@ packages: '@stdlib/assert-has-tostringtag-support': 0.0.9 dev: false - /@stdlib/utils-next-tick/0.0.8: + /@stdlib/utils-next-tick@0.0.8: resolution: {integrity: sha512-l+hPl7+CgLPxk/gcWOXRxX/lNyfqcFCqhzzV/ZMvFCYLY/wI9lcWO4xTQNMALY2rp+kiV+qiAiO9zcO+hewwUg==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] dev: false - /@stdlib/utils-noop/0.0.14: + /@stdlib/utils-noop@0.0.14: resolution: {integrity: sha512-A5faFEUfszMgd93RCyB+aWb62hQxgP+dZ/l9rIOwNWbIrCYNwSuL4z50lNJuatnwwU4BQ4EjQr+AmBsnvuLcyQ==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] dev: false - /@stdlib/utils-regexp-from-string/0.0.9: + /@stdlib/utils-regexp-from-string@0.0.9: resolution: {integrity: sha512-3rN0Mcyiarl7V6dXRjFAUMacRwe0/sYX7ThKYurf0mZkMW9tjTP+ygak9xmL9AL0QQZtbrFFwWBrDO+38Vnavw==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -18075,7 +19362,7 @@ packages: '@stdlib/string-format': 0.0.3 dev: false - /@stdlib/utils-type-of/0.0.8: + /@stdlib/utils-type-of@0.0.8: resolution: {integrity: sha512-b4xqdy3AnnB7NdmBBpoiI67X4vIRxvirjg3a8BfhM5jPr2k0njby1jAbG9dUxJvgAV6o32S4kjUgfIdjEYpTNQ==} engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] @@ -18084,7 +19371,7 @@ packages: '@stdlib/utils-global': 0.0.7 dev: false - /@storybook/addon-actions/7.4.2_ktlmga7inmpnhh4xu7kimj7cou: + /@storybook/addon-actions@7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-aKHyYjxcWaOTf/7B8x4EmUNkDAiYJZyJfGTYg2TDEDs89x7/9slujAA01qIgOp74C9nWkHDUVdm7/J+h3kWJWw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -18096,20 +19383,20 @@ packages: optional: true dependencies: '@storybook/client-logger': 7.4.2 - '@storybook/components': 7.4.2_ktlmga7inmpnhh4xu7kimj7cou + '@storybook/components': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) '@storybook/core-events': 7.4.2 '@storybook/global': 5.0.0 - '@storybook/manager-api': 7.4.2_sfoxds7t5ydpegc3knd667wn6m + '@storybook/manager-api': 7.4.2(react-dom@17.0.2)(react@17.0.2) '@storybook/preview-api': 7.4.2 - '@storybook/theming': 7.4.2_sfoxds7t5ydpegc3knd667wn6m + '@storybook/theming': 7.4.2(react-dom@17.0.2)(react@17.0.2) '@storybook/types': 7.4.2 dequal: 2.0.3 lodash: 4.17.21 polished: 4.2.2 prop-types: 15.8.1 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-inspector: 6.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) + react-inspector: 6.0.2(react@17.0.2) telejson: 7.2.0 ts-dedent: 2.2.0 uuid: 9.0.0 @@ -18118,7 +19405,7 @@ packages: - '@types/react-dom' dev: true - /@storybook/addon-backgrounds/7.4.2_ktlmga7inmpnhh4xu7kimj7cou: + /@storybook/addon-backgrounds@7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-Vl6Vw1NzO5jRqlAEpG017z6N79Drlp7Wpw8O9+69/dKtTNmuLqLnPxWrn4nL2CNvghHToLMpToSAFpRo2fBZBg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -18130,23 +19417,23 @@ packages: optional: true dependencies: '@storybook/client-logger': 7.4.2 - '@storybook/components': 7.4.2_ktlmga7inmpnhh4xu7kimj7cou + '@storybook/components': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) '@storybook/core-events': 7.4.2 '@storybook/global': 5.0.0 - '@storybook/manager-api': 7.4.2_sfoxds7t5ydpegc3knd667wn6m + '@storybook/manager-api': 7.4.2(react-dom@17.0.2)(react@17.0.2) '@storybook/preview-api': 7.4.2 - '@storybook/theming': 7.4.2_sfoxds7t5ydpegc3knd667wn6m + '@storybook/theming': 7.4.2(react-dom@17.0.2)(react@17.0.2) '@storybook/types': 7.4.2 memoizerific: 1.11.3 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) ts-dedent: 2.2.0 transitivePeerDependencies: - '@types/react' - '@types/react-dom' dev: true - /@storybook/addon-controls/7.4.2_ktlmga7inmpnhh4xu7kimj7cou: + /@storybook/addon-controls@7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-qzSac1bulSa7mqkfBfyAqbP9PbIio5CjGJ5VyT055ab50e13gj1eS3I9EJHCupYb19E3f465QatrGhoaTsE4hg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -18157,19 +19444,19 @@ packages: react-dom: optional: true dependencies: - '@storybook/blocks': 7.4.2_ktlmga7inmpnhh4xu7kimj7cou + '@storybook/blocks': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) '@storybook/client-logger': 7.4.2 - '@storybook/components': 7.4.2_ktlmga7inmpnhh4xu7kimj7cou + '@storybook/components': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) '@storybook/core-common': 7.4.2 '@storybook/core-events': 7.4.2 - '@storybook/manager-api': 7.4.2_sfoxds7t5ydpegc3knd667wn6m + '@storybook/manager-api': 7.4.2(react-dom@17.0.2)(react@17.0.2) '@storybook/node-logger': 7.4.2 '@storybook/preview-api': 7.4.2 - '@storybook/theming': 7.4.2_sfoxds7t5ydpegc3knd667wn6m + '@storybook/theming': 7.4.2(react-dom@17.0.2)(react@17.0.2) '@storybook/types': 7.4.2 lodash: 4.17.21 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) ts-dedent: 2.2.0 transitivePeerDependencies: - '@types/react' @@ -18178,17 +19465,17 @@ packages: - supports-color dev: true - /@storybook/addon-docs/7.4.2_ktlmga7inmpnhh4xu7kimj7cou: + /@storybook/addon-docs@7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-MV49/bGTibk2kvufk1+JEkDe2Ii/wfh5s+zO6a7p/FRy9zK0hQy3nEc56VpQ3+KzgDr0uyZI+mYq26OPwBuKRg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: '@jest/transform': 29.5.0 - '@mdx-js/react': 2.3.0_react@17.0.2 - '@storybook/blocks': 7.4.2_ktlmga7inmpnhh4xu7kimj7cou + '@mdx-js/react': 2.3.0(react@17.0.2) + '@storybook/blocks': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) '@storybook/client-logger': 7.4.2 - '@storybook/components': 7.4.2_ktlmga7inmpnhh4xu7kimj7cou + '@storybook/components': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) '@storybook/csf-plugin': 7.4.2 '@storybook/csf-tools': 7.4.2 '@storybook/global': 5.0.0 @@ -18196,12 +19483,12 @@ packages: '@storybook/node-logger': 7.4.2 '@storybook/postinstall': 7.4.2 '@storybook/preview-api': 7.4.2 - '@storybook/react-dom-shim': 7.4.2_sfoxds7t5ydpegc3knd667wn6m - '@storybook/theming': 7.4.2_sfoxds7t5ydpegc3knd667wn6m + '@storybook/react-dom-shim': 7.4.2(react-dom@17.0.2)(react@17.0.2) + '@storybook/theming': 7.4.2(react-dom@17.0.2)(react@17.0.2) '@storybook/types': 7.4.2 fs-extra: 11.1.1 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) remark-external-links: 8.0.0 remark-slug: 6.1.0 ts-dedent: 2.2.0 @@ -18211,27 +19498,27 @@ packages: - encoding - supports-color - /@storybook/addon-essentials/7.4.2_ktlmga7inmpnhh4xu7kimj7cou: + /@storybook/addon-essentials@7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-9VqVe8pUogA9TIAl9xxNSdqU1zfXXdZW6J3BfT3r0DolU4nLusejs2xIu6smhEjZ1KYD6V30Uy9HDft/GRCSnw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@storybook/addon-actions': 7.4.2_ktlmga7inmpnhh4xu7kimj7cou - '@storybook/addon-backgrounds': 7.4.2_ktlmga7inmpnhh4xu7kimj7cou - '@storybook/addon-controls': 7.4.2_ktlmga7inmpnhh4xu7kimj7cou - '@storybook/addon-docs': 7.4.2_ktlmga7inmpnhh4xu7kimj7cou + '@storybook/addon-actions': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) + '@storybook/addon-backgrounds': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) + '@storybook/addon-controls': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) + '@storybook/addon-docs': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) '@storybook/addon-highlight': 7.4.2 - '@storybook/addon-measure': 7.4.2_ktlmga7inmpnhh4xu7kimj7cou - '@storybook/addon-outline': 7.4.2_ktlmga7inmpnhh4xu7kimj7cou - '@storybook/addon-toolbars': 7.4.2_ktlmga7inmpnhh4xu7kimj7cou - '@storybook/addon-viewport': 7.4.2_ktlmga7inmpnhh4xu7kimj7cou + '@storybook/addon-measure': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) + '@storybook/addon-outline': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) + '@storybook/addon-toolbars': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) + '@storybook/addon-viewport': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) '@storybook/core-common': 7.4.2 - '@storybook/manager-api': 7.4.2_sfoxds7t5ydpegc3knd667wn6m + '@storybook/manager-api': 7.4.2(react-dom@17.0.2)(react@17.0.2) '@storybook/node-logger': 7.4.2 '@storybook/preview-api': 7.4.2 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) ts-dedent: 2.2.0 transitivePeerDependencies: - '@types/react' @@ -18240,7 +19527,7 @@ packages: - supports-color dev: true - /@storybook/addon-highlight/7.4.2: + /@storybook/addon-highlight@7.4.2: resolution: {integrity: sha512-HpwQiYil9RlMz303wQ9+ElW6W+Z0baqBUemlQ1JJZ6Wm47mgVVy8vLPcdH3JQkv7E34f51apPKVKFqq49xDqaA==} dependencies: '@storybook/core-events': 7.4.2 @@ -18248,7 +19535,7 @@ packages: '@storybook/preview-api': 7.4.2 dev: true - /@storybook/addon-interactions/7.4.2_ktlmga7inmpnhh4xu7kimj7cou: + /@storybook/addon-interactions@7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-Gr3UbrPRgtBmwYctFiIxYlg4pfe07sC5gvMJmMdzHSJo0yAmcw2fSzKe4aEPX4trdAIb+diQKi3TDqIBrOfCLQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -18260,19 +19547,19 @@ packages: optional: true dependencies: '@storybook/client-logger': 7.4.2 - '@storybook/components': 7.4.2_ktlmga7inmpnhh4xu7kimj7cou + '@storybook/components': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) '@storybook/core-common': 7.4.2 '@storybook/core-events': 7.4.2 '@storybook/global': 5.0.0 '@storybook/instrumenter': 7.4.2 - '@storybook/manager-api': 7.4.2_sfoxds7t5ydpegc3knd667wn6m + '@storybook/manager-api': 7.4.2(react-dom@17.0.2)(react@17.0.2) '@storybook/preview-api': 7.4.2 - '@storybook/theming': 7.4.2_sfoxds7t5ydpegc3knd667wn6m + '@storybook/theming': 7.4.2(react-dom@17.0.2)(react@17.0.2) '@storybook/types': 7.4.2 jest-mock: 27.5.1 polished: 4.2.2 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) ts-dedent: 2.2.0 transitivePeerDependencies: - '@types/react' @@ -18281,7 +19568,7 @@ packages: - supports-color dev: true - /@storybook/addon-links/7.4.2_sfoxds7t5ydpegc3knd667wn6m: + /@storybook/addon-links@7.4.2(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-XAspek8kkfiGq3NVt8SD108m54/dJWo+iDSmW3t/BQj2+sDPW8EpOg93X08YGoGMD8FSLOToeVC2Qi+kmAV0iw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -18296,17 +19583,17 @@ packages: '@storybook/core-events': 7.4.2 '@storybook/csf': 0.1.1 '@storybook/global': 5.0.0 - '@storybook/manager-api': 7.4.2_sfoxds7t5ydpegc3knd667wn6m + '@storybook/manager-api': 7.4.2(react-dom@17.0.2)(react@17.0.2) '@storybook/preview-api': 7.4.2 - '@storybook/router': 7.4.2_sfoxds7t5ydpegc3knd667wn6m + '@storybook/router': 7.4.2(react-dom@17.0.2)(react@17.0.2) '@storybook/types': 7.4.2 prop-types: 15.8.1 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) ts-dedent: 2.2.0 dev: true - /@storybook/addon-mdx-gfm/7.4.2: + /@storybook/addon-mdx-gfm@7.4.2: resolution: {integrity: sha512-q3xcediMB/CRxzU2MFitz30YoWk6T/+q7FWBbCRJ30wALUx1WO23Xk+MT7lTQYGN9aPPf0+bKAU2+KGxZTVnxA==} dependencies: '@storybook/node-logger': 7.4.2 @@ -18316,7 +19603,7 @@ packages: - supports-color dev: true - /@storybook/addon-measure/7.4.2_ktlmga7inmpnhh4xu7kimj7cou: + /@storybook/addon-measure@7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-fewNqI3mDAGAhFOFh/rdDS3dJ3e1QDmSVMB0KDJ7K22HOF2To/H9QfXHV24osnBRu6QemSIqObry1leF+u5BmQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -18328,21 +19615,21 @@ packages: optional: true dependencies: '@storybook/client-logger': 7.4.2 - '@storybook/components': 7.4.2_ktlmga7inmpnhh4xu7kimj7cou + '@storybook/components': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) '@storybook/core-events': 7.4.2 '@storybook/global': 5.0.0 - '@storybook/manager-api': 7.4.2_sfoxds7t5ydpegc3knd667wn6m + '@storybook/manager-api': 7.4.2(react-dom@17.0.2)(react@17.0.2) '@storybook/preview-api': 7.4.2 '@storybook/types': 7.4.2 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) tiny-invariant: 1.3.1 transitivePeerDependencies: - '@types/react' - '@types/react-dom' dev: true - /@storybook/addon-outline/7.4.2_ktlmga7inmpnhh4xu7kimj7cou: + /@storybook/addon-outline@7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-C6Zfoa6k2ef55O16GKV29T0wIYaDyiBtyd/fuTzz7hkpusSqKGFNeQyfG6hRmPv5yAib7+Pzl86cH3wGz85oTw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -18354,21 +19641,21 @@ packages: optional: true dependencies: '@storybook/client-logger': 7.4.2 - '@storybook/components': 7.4.2_ktlmga7inmpnhh4xu7kimj7cou + '@storybook/components': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) '@storybook/core-events': 7.4.2 '@storybook/global': 5.0.0 - '@storybook/manager-api': 7.4.2_sfoxds7t5ydpegc3knd667wn6m + '@storybook/manager-api': 7.4.2(react-dom@17.0.2)(react@17.0.2) '@storybook/preview-api': 7.4.2 '@storybook/types': 7.4.2 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) ts-dedent: 2.2.0 transitivePeerDependencies: - '@types/react' - '@types/react-dom' dev: true - /@storybook/addon-toolbars/7.4.2_ktlmga7inmpnhh4xu7kimj7cou: + /@storybook/addon-toolbars@7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-zSU8GpyMKo3vGxR7LQdvw5jV/6QUOfUepS3HEYGB88vlIPK7UriV8k9HB0FObEyYZKYU7wuPYBYhXApK4ZBVUA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -18380,18 +19667,18 @@ packages: optional: true dependencies: '@storybook/client-logger': 7.4.2 - '@storybook/components': 7.4.2_ktlmga7inmpnhh4xu7kimj7cou - '@storybook/manager-api': 7.4.2_sfoxds7t5ydpegc3knd667wn6m + '@storybook/components': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) + '@storybook/manager-api': 7.4.2(react-dom@17.0.2)(react@17.0.2) '@storybook/preview-api': 7.4.2 - '@storybook/theming': 7.4.2_sfoxds7t5ydpegc3knd667wn6m + '@storybook/theming': 7.4.2(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) transitivePeerDependencies: - '@types/react' - '@types/react-dom' dev: true - /@storybook/addon-viewport/7.4.2_ktlmga7inmpnhh4xu7kimj7cou: + /@storybook/addon-viewport@7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-0mlqJmHezyZG9lLpj2LKN6HTZI015T3hYuFP4MwZRj579e246DvcBTw/h3n3bjLRGglapmFqkCw9PRVMhsQ/CA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -18403,34 +19690,34 @@ packages: optional: true dependencies: '@storybook/client-logger': 7.4.2 - '@storybook/components': 7.4.2_ktlmga7inmpnhh4xu7kimj7cou + '@storybook/components': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) '@storybook/core-events': 7.4.2 '@storybook/global': 5.0.0 - '@storybook/manager-api': 7.4.2_sfoxds7t5ydpegc3knd667wn6m + '@storybook/manager-api': 7.4.2(react-dom@17.0.2)(react@17.0.2) '@storybook/preview-api': 7.4.2 - '@storybook/theming': 7.4.2_sfoxds7t5ydpegc3knd667wn6m + '@storybook/theming': 7.4.2(react-dom@17.0.2)(react@17.0.2) memoizerific: 1.11.3 prop-types: 15.8.1 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) transitivePeerDependencies: - '@types/react' - '@types/react-dom' dev: true - /@storybook/addons/7.4.2_sfoxds7t5ydpegc3knd667wn6m: + /@storybook/addons@7.4.2(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-3snQVlTIKgzk6apNZc9sHr+0n4riiQkKGUkoHS8B1G90qj/9OyRnkDq55A7mJ9CxskqIjei5Q+hlko87g0jDsA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@storybook/manager-api': 7.4.2_sfoxds7t5ydpegc3knd667wn6m + '@storybook/manager-api': 7.4.2(react-dom@17.0.2)(react@17.0.2) '@storybook/preview-api': 7.4.2 '@storybook/types': 7.4.2 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) - /@storybook/api/7.4.2_sfoxds7t5ydpegc3knd667wn6m: + /@storybook/api@7.4.2(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-PlabiAKGhngZWtArh7GbgGnfOV5kmlsvfBgcswl2gQ6a44N4gxL+8ftGvGrfX15ykFEzrtYXCCT44FmTmqS5xg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -18442,12 +19729,12 @@ packages: optional: true dependencies: '@storybook/client-logger': 7.4.2 - '@storybook/manager-api': 7.4.2_sfoxds7t5ydpegc3knd667wn6m + '@storybook/manager-api': 7.4.2(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /@storybook/blocks/7.4.2_ktlmga7inmpnhh4xu7kimj7cou: + /@storybook/blocks@7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-ijuZBsYfQBuwMA8Lb1dT6t2PzqhkOtIdc+G5iQ/IgWLX5HT1br+Wq8o3TUWrqACM9VKIASnJk13FMAOeGggD/w==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -18455,25 +19742,25 @@ packages: dependencies: '@storybook/channels': 7.4.2 '@storybook/client-logger': 7.4.2 - '@storybook/components': 7.4.2_ktlmga7inmpnhh4xu7kimj7cou + '@storybook/components': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) '@storybook/core-events': 7.4.2 '@storybook/csf': 0.1.1 '@storybook/docs-tools': 7.4.2 '@storybook/global': 5.0.0 - '@storybook/manager-api': 7.4.2_sfoxds7t5ydpegc3knd667wn6m + '@storybook/manager-api': 7.4.2(react-dom@17.0.2)(react@17.0.2) '@storybook/preview-api': 7.4.2 - '@storybook/theming': 7.4.2_sfoxds7t5ydpegc3knd667wn6m + '@storybook/theming': 7.4.2(react-dom@17.0.2)(react@17.0.2) '@storybook/types': 7.4.2 '@types/lodash': 4.14.192 color-convert: 2.0.1 dequal: 2.0.3 lodash: 4.17.21 - markdown-to-jsx: 7.3.2_react@17.0.2 + markdown-to-jsx: 7.3.2(react@17.0.2) memoizerific: 1.11.3 polished: 4.2.2 react: 17.0.2 - react-colorful: 5.6.1_sfoxds7t5ydpegc3knd667wn6m - react-dom: 17.0.2_react@17.0.2 + react-colorful: 5.6.1(react-dom@17.0.2)(react@17.0.2) + react-dom: 17.0.2(react@17.0.2) telejson: 7.2.0 tocbot: 4.21.1 ts-dedent: 2.2.0 @@ -18484,7 +19771,7 @@ packages: - encoding - supports-color - /@storybook/builder-manager/7.4.2: + /@storybook/builder-manager@7.4.2: resolution: {integrity: sha512-MgdXr9QJ2sNk0fUshQ7hk4Ec9IkbPWR6alrmDByIOEU9bThx0j4OxU9uTLBy8r5uZsSL6nNtRyCvSP8YSKaQHQ==} dependencies: '@fal-works/esbuild-plugin-global-externals': 2.1.2 @@ -18493,7 +19780,7 @@ packages: '@storybook/node-logger': 7.4.2 '@types/ejs': 3.1.2 '@types/find-cache-dir': 3.2.1 - '@yarnpkg/esbuild-plugin-pnp': 3.0.0-rc.15_esbuild@0.18.20 + '@yarnpkg/esbuild-plugin-pnp': 3.0.0-rc.15(esbuild@0.18.20) browser-assert: 1.2.1 ejs: 3.1.9 esbuild: 0.18.20 @@ -18508,7 +19795,7 @@ packages: - supports-color dev: true - /@storybook/builder-webpack5/7.4.2_3lffwbku4bk6frqtkhanezvcv4: + /@storybook/builder-webpack5@7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(esbuild@0.18.20)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack-cli@5.1.4): resolution: {integrity: sha512-NmlHRU4+jie+9z4cxuXUM49JI2ypIc6JHCiuJIqF7rONrsyCExZvPnzk8mNogox+RK1C7rP60g23rywZdxQNNA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -18519,50 +19806,50 @@ packages: optional: true dependencies: '@babel/core': 7.22.11 - '@storybook/addons': 7.4.2_sfoxds7t5ydpegc3knd667wn6m + '@storybook/addons': 7.4.2(react-dom@17.0.2)(react@17.0.2) '@storybook/channels': 7.4.2 '@storybook/client-api': 7.4.2 '@storybook/client-logger': 7.4.2 - '@storybook/components': 7.4.2_ktlmga7inmpnhh4xu7kimj7cou + '@storybook/components': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) '@storybook/core-common': 7.4.2 '@storybook/core-events': 7.4.2 '@storybook/core-webpack': 7.4.2 '@storybook/global': 5.0.0 - '@storybook/manager-api': 7.4.2_sfoxds7t5ydpegc3knd667wn6m + '@storybook/manager-api': 7.4.2(react-dom@17.0.2)(react@17.0.2) '@storybook/node-logger': 7.4.2 '@storybook/preview': 7.4.2 '@storybook/preview-api': 7.4.2 - '@storybook/router': 7.4.2_sfoxds7t5ydpegc3knd667wn6m + '@storybook/router': 7.4.2(react-dom@17.0.2)(react@17.0.2) '@storybook/store': 7.4.2 - '@storybook/theming': 7.4.2_sfoxds7t5ydpegc3knd667wn6m + '@storybook/theming': 7.4.2(react-dom@17.0.2)(react@17.0.2) '@swc/core': 1.3.49 '@types/node': 16.11.7 '@types/semver': 7.3.13 - babel-loader: 9.1.2_5nlhjoewt6bwtyl7wlqhrgzuxm + babel-loader: 9.1.2(@babel/core@7.22.11)(webpack@5.78.0) babel-plugin-named-exports-order: 0.0.2 browser-assert: 1.2.1 case-sensitive-paths-webpack-plugin: 2.4.0 constants-browserify: 1.0.0 - css-loader: 6.7.3_webpack@5.78.0 + css-loader: 6.7.3(webpack@5.78.0) express: 4.18.2 - fork-ts-checker-webpack-plugin: 8.0.0_fejcc7gjbwtmwzggoernzojija + fork-ts-checker-webpack-plugin: 8.0.0(typescript@4.9.5)(webpack@5.78.0) fs-extra: 11.1.1 - html-webpack-plugin: 5.5.3_webpack@5.78.0 + html-webpack-plugin: 5.5.3(webpack@5.78.0) path-browserify: 1.0.1 process: 0.11.10 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) semver: 7.5.4 - style-loader: 3.3.2_webpack@5.78.0 - swc-loader: 0.2.3_wvz5dn57l37py5yhasbcqqk6hi - terser-webpack-plugin: 5.3.9_dnqqsr3phzjhopay4d6e5ziqz4 + style-loader: 3.3.2(webpack@5.78.0) + swc-loader: 0.2.3(@swc/core@1.3.49)(webpack@5.78.0) + terser-webpack-plugin: 5.3.9(@swc/core@1.3.49)(esbuild@0.18.20)(webpack@5.78.0) ts-dedent: 2.2.0 typescript: 4.9.5 url: 0.11.0 util: 0.12.5 util-deprecate: 1.0.2 - webpack: 5.78.0_w67ycjwq2niq3jlxgktvf5aow4 - webpack-dev-middleware: 6.1.1_webpack@5.78.0 + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) + webpack-dev-middleware: 6.1.1(webpack@5.78.0) webpack-hot-middleware: 2.25.3 webpack-virtual-modules: 0.5.0 transitivePeerDependencies: @@ -18576,75 +19863,7 @@ packages: - webpack-cli dev: true - /@storybook/builder-webpack5/7.4.2_zp5lbrhsmu5scxcjkdyhsyvpf4: - resolution: {integrity: sha512-NmlHRU4+jie+9z4cxuXUM49JI2ypIc6JHCiuJIqF7rONrsyCExZvPnzk8mNogox+RK1C7rP60g23rywZdxQNNA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@babel/core': 7.22.11 - '@storybook/addons': 7.4.2_sfoxds7t5ydpegc3knd667wn6m - '@storybook/channels': 7.4.2 - '@storybook/client-api': 7.4.2 - '@storybook/client-logger': 7.4.2 - '@storybook/components': 7.4.2_ktlmga7inmpnhh4xu7kimj7cou - '@storybook/core-common': 7.4.2 - '@storybook/core-events': 7.4.2 - '@storybook/core-webpack': 7.4.2 - '@storybook/global': 5.0.0 - '@storybook/manager-api': 7.4.2_sfoxds7t5ydpegc3knd667wn6m - '@storybook/node-logger': 7.4.2 - '@storybook/preview': 7.4.2 - '@storybook/preview-api': 7.4.2 - '@storybook/router': 7.4.2_sfoxds7t5ydpegc3knd667wn6m - '@storybook/store': 7.4.2 - '@storybook/theming': 7.4.2_sfoxds7t5ydpegc3knd667wn6m - '@swc/core': 1.3.49 - '@types/node': 16.11.7 - '@types/semver': 7.3.13 - babel-loader: 9.1.2_5nlhjoewt6bwtyl7wlqhrgzuxm - babel-plugin-named-exports-order: 0.0.2 - browser-assert: 1.2.1 - case-sensitive-paths-webpack-plugin: 2.4.0 - constants-browserify: 1.0.0 - css-loader: 6.7.3_webpack@5.78.0 - express: 4.18.2 - fork-ts-checker-webpack-plugin: 8.0.0_fejcc7gjbwtmwzggoernzojija - fs-extra: 11.1.1 - html-webpack-plugin: 5.5.3_webpack@5.78.0 - path-browserify: 1.0.1 - process: 0.11.10 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - semver: 7.5.4 - style-loader: 3.3.2_webpack@5.78.0 - swc-loader: 0.2.3_wvz5dn57l37py5yhasbcqqk6hi - terser-webpack-plugin: 5.3.9_dnqqsr3phzjhopay4d6e5ziqz4 - ts-dedent: 2.2.0 - typescript: 4.9.5 - url: 0.11.0 - util: 0.12.5 - util-deprecate: 1.0.2 - webpack: 5.78.0_u5c4qderjagc6tepfyiby6xhau - webpack-dev-middleware: 6.1.1_webpack@5.78.0 - webpack-hot-middleware: 2.25.3 - webpack-virtual-modules: 0.5.0 - transitivePeerDependencies: - - '@swc/helpers' - - '@types/react' - - '@types/react-dom' - - encoding - - esbuild - - supports-color - - uglify-js - - webpack-cli - dev: true - - /@storybook/channels/7.4.2: + /@storybook/channels@7.4.2: resolution: {integrity: sha512-Q95KnV+fTGaAV3S875+d5LlGg+bdC3bUnki3engODDS4ViSRHJ1bnXnqxKmAaS3O/52geIyWWR766YvwHw3avw==} dependencies: '@storybook/client-logger': 7.4.2 @@ -18654,12 +19873,12 @@ packages: telejson: 7.2.0 tiny-invariant: 1.3.1 - /@storybook/cli/7.4.2: + /@storybook/cli@7.4.2: resolution: {integrity: sha512-WleObtC7OU2lT+pI2vTdXZPFMKDGbg3bkUJ+PG8+yqGg53ea5ZkwKWg9qHpXuiMkYDztqhbA8kYrny1GqFuVdg==} hasBin: true dependencies: '@babel/core': 7.22.11 - '@babel/preset-env': 7.22.20_@babel+core@7.22.11 + '@babel/preset-env': 7.22.20(@babel/core@7.22.11) '@babel/types': 7.22.19 '@ndelangen/get-tarball': 3.0.9 '@storybook/codemod': 7.4.2 @@ -18686,7 +19905,7 @@ packages: get-port: 5.1.1 giget: 1.1.2 globby: 11.1.0 - jscodeshift: 0.14.0_@babel+preset-env@7.22.20 + jscodeshift: 0.14.0(@babel/preset-env@7.22.20) leven: 3.1.0 ora: 5.4.1 prettier: 2.8.7 @@ -18706,23 +19925,23 @@ packages: - utf-8-validate dev: true - /@storybook/client-api/7.4.2: + /@storybook/client-api@7.4.2: resolution: {integrity: sha512-nmDoEUkUqnHXUKMEs6m59rc4ZPKCVMmHhqccFFIsuLbPtsTqvbWk3Zt+CK6LoI651pafoM4V4zAY5eW0OpApIg==} dependencies: '@storybook/client-logger': 7.4.2 '@storybook/preview-api': 7.4.2 dev: true - /@storybook/client-logger/7.4.2: + /@storybook/client-logger@7.4.2: resolution: {integrity: sha512-LC8tYrYSJwF4DHRdNYh6y8hSvccwUIv5/WOZKJDmKx7mcEm6HsVuUu16C9jsl7iy6IqJYxgVz1va3WS6852E+A==} dependencies: '@storybook/global': 5.0.0 - /@storybook/codemod/7.4.2: + /@storybook/codemod@7.4.2: resolution: {integrity: sha512-wU+SLHG/PpLptI0aWEhPxwFPcX7uYe+Id21DKNPg/HvYaLG3N+/DPDef+lm3Vaov9w4OD74iuQ3knT67SSkvmw==} dependencies: '@babel/core': 7.22.11 - '@babel/preset-env': 7.22.20_@babel+core@7.22.11 + '@babel/preset-env': 7.22.20(@babel/core@7.22.11) '@babel/types': 7.22.19 '@storybook/csf': 0.1.1 '@storybook/csf-tools': 7.4.2 @@ -18731,7 +19950,7 @@ packages: '@types/cross-spawn': 6.0.3 cross-spawn: 7.0.3 globby: 11.1.0 - jscodeshift: 0.14.0_@babel+preset-env@7.22.20 + jscodeshift: 0.14.0(@babel/preset-env@7.22.20) lodash: 4.17.21 prettier: 2.8.7 recast: 0.23.4 @@ -18739,36 +19958,36 @@ packages: - supports-color dev: true - /@storybook/components/7.4.2_ktlmga7inmpnhh4xu7kimj7cou: + /@storybook/components@7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-ecbDzSUd74vf6IwHsbQr+9mVRxKWLmwd9zJ8RHMcR8UejTRAAR/eVvYoCG331TQ8TrhTmHTy5xCVv47pm6ORkQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@radix-ui/react-select': 1.2.2_ktlmga7inmpnhh4xu7kimj7cou - '@radix-ui/react-toolbar': 1.0.4_ktlmga7inmpnhh4xu7kimj7cou + '@radix-ui/react-select': 1.2.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) + '@radix-ui/react-toolbar': 1.0.4(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) '@storybook/client-logger': 7.4.2 '@storybook/csf': 0.1.1 '@storybook/global': 5.0.0 - '@storybook/theming': 7.4.2_sfoxds7t5ydpegc3knd667wn6m + '@storybook/theming': 7.4.2(react-dom@17.0.2)(react@17.0.2) '@storybook/types': 7.4.2 memoizerific: 1.11.3 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - use-resize-observer: 9.1.0_sfoxds7t5ydpegc3knd667wn6m + react-dom: 17.0.2(react@17.0.2) + use-resize-observer: 9.1.0(react-dom@17.0.2)(react@17.0.2) util-deprecate: 1.0.2 transitivePeerDependencies: - '@types/react' - '@types/react-dom' - /@storybook/core-client/7.4.2: + /@storybook/core-client@7.4.2: resolution: {integrity: sha512-2K4g8ZaqBUv6oC+1/Bd6XSQ/F7hNyy8OLqnnxjoYsjUQc8DaN5wUckEEgT9WSvLQg88B/FYFtNAX5m17aySWrg==} dependencies: '@storybook/client-logger': 7.4.2 '@storybook/preview-api': 7.4.2 dev: true - /@storybook/core-common/7.4.2: + /@storybook/core-common@7.4.2: resolution: {integrity: sha512-Qj9S97TYO+jSNdC2+LrMFtZRvTnELeFnRtn/MDWhkM6mpZgRglxlZuXi5enJjqTh0dISAUxPpTtXNAJDfX99JA==} dependencies: '@storybook/core-events': 7.4.2 @@ -18780,7 +19999,7 @@ packages: '@types/pretty-hrtime': 1.0.1 chalk: 4.1.2 esbuild: 0.18.20 - esbuild-register: 3.5.0_esbuild@0.18.20 + esbuild-register: 3.5.0(esbuild@0.18.20) file-system-cache: 2.3.0 find-cache-dir: 3.3.2 find-up: 5.0.0 @@ -18798,12 +20017,12 @@ packages: - encoding - supports-color - /@storybook/core-events/7.4.2: + /@storybook/core-events@7.4.2: resolution: {integrity: sha512-WCEBw+Ew8DrccnB0hpP9TXadreoOlMnWCyuXU2XrvmK/vde009leWQIsLs1rY+L17zDVuogBms62AxrDDJmMpw==} dependencies: ts-dedent: 2.2.0 - /@storybook/core-server/7.4.2: + /@storybook/core-server@7.4.2: resolution: {integrity: sha512-4aaFQTjb8jsbzJeCs+VTo3gdyK3r3VhQN2sxn6k/lcKjQFeO84+iqGgGmb+oWUVz2TJL+JrNh7SUXkVsMZBXVQ==} dependencies: '@aw-web-design/x-default-browser': 1.4.126 @@ -18855,7 +20074,7 @@ packages: - utf-8-validate dev: true - /@storybook/core-webpack/7.4.2: + /@storybook/core-webpack@7.4.2: resolution: {integrity: sha512-k6YBkExt1XtQSx6E25nE9lCq87hbzkwBlAhzPcFKGeKQia7Uc+l5IG73+9sWXXJ2sbL/7eCaFg4L7payo2aOkw==} dependencies: '@storybook/core-common': 7.4.2 @@ -18868,7 +20087,7 @@ packages: - supports-color dev: true - /@storybook/csf-plugin/7.4.2: + /@storybook/csf-plugin@7.4.2: resolution: {integrity: sha512-b0yQ8oXEH0s3SGgjhOVrbjkc3C8IYGyTSnDtPwx/Dgmru/rC6LT7ZOdBegmGqBN1+6Ho0+AxFrmAmuuYK8p2rA==} dependencies: '@storybook/csf-tools': 7.4.2 @@ -18876,7 +20095,7 @@ packages: transitivePeerDependencies: - supports-color - /@storybook/csf-tools/7.4.2: + /@storybook/csf-tools@7.4.2: resolution: {integrity: sha512-5AvF2YRcYHIqQqskb3R8JvsmSWnNwkP0CGmP8Zq7zIfK/C+npKb/onv5YQlbSgh+2UrVxVdIDLc9AepBeXC3uQ==} dependencies: '@babel/generator': 7.22.10 @@ -18891,22 +20110,22 @@ packages: transitivePeerDependencies: - supports-color - /@storybook/csf/0.0.1: + /@storybook/csf@0.0.1: resolution: {integrity: sha512-USTLkZze5gkel8MYCujSRBVIrUQ3YPBrLOx7GNk/0wttvVtlzWXAq9eLbQ4p/NicGxP+3T7KPEMVV//g+yubpw==} dependencies: lodash: 4.17.21 dev: true - /@storybook/csf/0.1.1: + /@storybook/csf@0.1.1: resolution: {integrity: sha512-4hE3AlNVxR60Wc5KSC68ASYzUobjPqtSKyhV6G+ge0FIXU55N5nTY7dXGRZHQGDBPq+XqchMkIdlkHPRs8nTHg==} dependencies: type-fest: 2.19.0 - /@storybook/docs-mdx/0.1.0: + /@storybook/docs-mdx@0.1.0: resolution: {integrity: sha512-JDaBR9lwVY4eSH5W8EGHrhODjygPd6QImRbwjAuJNEnY0Vw4ie3bPkeGfnacB3OBW6u/agqPv2aRlR46JcAQLg==} dev: true - /@storybook/docs-tools/7.4.2: + /@storybook/docs-tools@7.4.2: resolution: {integrity: sha512-MXW+xaxah+C+aqJ5178oOILqX7dCSwJMKJefIJHHwr9w6UuGRaiPG1NDYK/0N0IEv9H8pNnXPnw3R8S6x7COhQ==} dependencies: '@storybook/core-common': 7.4.2 @@ -18919,10 +20138,10 @@ packages: - encoding - supports-color - /@storybook/global/5.0.0: + /@storybook/global@5.0.0: resolution: {integrity: sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==} - /@storybook/instrumenter/7.4.2: + /@storybook/instrumenter@7.4.2: resolution: {integrity: sha512-g0tYjfv8q6RLl7PK3cyZGcdhad+4BspT1TXHl5Z4DFSo+bqFyHkP6X9tXzrpfQk+3abNrh5EjPaeec4+YHAOEw==} dependencies: '@storybook/channels': 7.4.2 @@ -18932,7 +20151,7 @@ packages: '@storybook/preview-api': 7.4.2 dev: true - /@storybook/manager-api/7.4.2_sfoxds7t5ydpegc3knd667wn6m: + /@storybook/manager-api@7.4.2(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-gKPG0At9AGhF32iwjiba+ILqswc3ZFj9ZIu5HjGEmaoiOfqI6TayuHoptup0QxkI/Hx8f9mNkHCwR9COrmb69w==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -18943,46 +20162,46 @@ packages: '@storybook/core-events': 7.4.2 '@storybook/csf': 0.1.1 '@storybook/global': 5.0.0 - '@storybook/router': 7.4.2_sfoxds7t5ydpegc3knd667wn6m - '@storybook/theming': 7.4.2_sfoxds7t5ydpegc3knd667wn6m + '@storybook/router': 7.4.2(react-dom@17.0.2)(react@17.0.2) + '@storybook/theming': 7.4.2(react-dom@17.0.2)(react@17.0.2) '@storybook/types': 7.4.2 dequal: 2.0.3 lodash: 4.17.21 memoizerific: 1.11.3 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) semver: 7.5.4 store2: 2.14.2 telejson: 7.2.0 ts-dedent: 2.2.0 - /@storybook/manager/7.4.2: + /@storybook/manager@7.4.2: resolution: {integrity: sha512-MtjmbAaf4hUObAa2ETQkm0+SzESoPeNm+TyzwZU5qq3Ouj4IOj2Ugd8EJPO3isdHxYt26A255tW/G9mb9v20fQ==} dev: true - /@storybook/mdx2-csf/1.1.0: + /@storybook/mdx2-csf@1.1.0: resolution: {integrity: sha512-TXJJd5RAKakWx4BtpwvSNdgTDkKM6RkXU8GK34S/LhidQ5Pjz3wcnqb0TxEkfhK/ztbP8nKHqXFwLfa2CYkvQw==} - /@storybook/node-logger/7.4.2: + /@storybook/node-logger@7.4.2: resolution: {integrity: sha512-iSBjhnMpWY9Hs5KGnf/xfHjGtGl740LUg4Gce874DuL773Mdc4hdppSKr4X/Pp1/AD67mNuifSXYx3V7d6XzTQ==} - /@storybook/postinstall/7.4.2: + /@storybook/postinstall@7.4.2: resolution: {integrity: sha512-L9r14KqS87HPyXw0S3pK2X29ckel/4sdBSmy9nVF8n/ADafKE0pSLKB935VL0+88eMx06aT32SMcQoqjubGKWw==} - /@storybook/preset-create-react-app/7.4.2_zhmpv5huvbgsw2w4vx6ckqlpj4: + /@storybook/preset-create-react-app@7.4.2(@babel/core@7.22.11)(react-refresh@0.14.0)(react-scripts@5.0.1)(typescript@4.9.5)(webpack-dev-server@4.11.1)(webpack@5.78.0): resolution: {integrity: sha512-rHRaiWmNAFXVHlRBG4iQE0Vsg3n4ZUyRWqddV2NuqZnHYQYUP07Rp0c3TFigGeTqF/gNbj8rTBDawcwpc8VkqQ==} peerDependencies: '@babel/core': '*' react-scripts: '>=5.0.0' dependencies: '@babel/core': 7.22.11 - '@pmmmwh/react-refresh-webpack-plugin': 0.5.10_wik2mtfr6ctscewm36ogu5s3j4 - '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0_fejcc7gjbwtmwzggoernzojija + '@pmmmwh/react-refresh-webpack-plugin': 0.5.10(react-refresh@0.14.0)(webpack-dev-server@4.11.1)(webpack@5.78.0) + '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(typescript@4.9.5)(webpack@5.78.0) '@storybook/types': 7.4.2 '@types/babel__core': 7.20.0 babel-plugin-react-docgen: 4.2.1 - pnp-webpack-plugin: 1.7.0_typescript@4.9.5 - react-scripts: 5.0.1_sq2rawq4ox4a7yhpjmexqgy4wu + pnp-webpack-plugin: 1.7.0(typescript@4.9.5) + react-scripts: 5.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(@swc/core@1.3.49)(esbuild@0.18.20)(eslint-import-resolver-webpack@0.13.7)(eslint@8.48.0)(react@17.0.2)(ts-node@10.9.1)(typescript@4.9.5) semver: 7.5.4 transitivePeerDependencies: - '@types/webpack' @@ -18997,7 +20216,7 @@ packages: - webpack-plugin-serve dev: true - /@storybook/preset-react-webpack/7.4.2_jdxeyi54iwcfg46yvg5dadhzb4: + /@storybook/preset-react-webpack@7.4.2(@babel/core@7.22.11)(@swc/core@1.3.49)(esbuild@0.18.20)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack-cli@5.1.4): resolution: {integrity: sha512-CWWiwZa3/0zHnc6zLvI9Sgj12gJDTktZO87/gfwq2VfbWqAEUYsKs6NE4Pm0Yg9O4/IG8DHoHIB+bTNlLp/lCA==} engines: {node: '>=16.0.0'} peerDependencies: @@ -19012,25 +20231,25 @@ packages: optional: true dependencies: '@babel/core': 7.22.11 - '@babel/preset-flow': 7.22.15_@babel+core@7.22.11 - '@babel/preset-react': 7.22.15_@babel+core@7.22.11 - '@pmmmwh/react-refresh-webpack-plugin': 0.5.10_u6erfrjwlwtxmtcht2oxrgpjdy + '@babel/preset-flow': 7.22.15(@babel/core@7.22.11) + '@babel/preset-react': 7.22.15(@babel/core@7.22.11) + '@pmmmwh/react-refresh-webpack-plugin': 0.5.10(react-refresh@0.11.0)(webpack-dev-server@4.11.1)(webpack@5.78.0) '@storybook/core-webpack': 7.4.2 '@storybook/docs-tools': 7.4.2 '@storybook/node-logger': 7.4.2 - '@storybook/react': 7.4.2_jgxnvbe4faw3ohf4h6p42qq6oy - '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0_fejcc7gjbwtmwzggoernzojija + '@storybook/react': 7.4.2(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5) + '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(typescript@4.9.5)(webpack@5.78.0) '@types/node': 16.11.7 '@types/semver': 7.3.13 babel-plugin-add-react-displayname: 0.0.5 babel-plugin-react-docgen: 4.2.1 fs-extra: 11.1.1 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) react-refresh: 0.11.0 semver: 7.5.4 typescript: 4.9.5 - webpack: 5.78.0_w67ycjwq2niq3jlxgktvf5aow4 + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) transitivePeerDependencies: - '@swc/core' - '@types/webpack' @@ -19046,7 +20265,7 @@ packages: - webpack-plugin-serve dev: true - /@storybook/preset-react-webpack/7.4.2_ohdbedpew2pidmjgbfx3ywlz2e: + /@storybook/preset-react-webpack@7.4.2(@babel/core@7.22.11)(@swc/core@1.3.49)(esbuild@0.18.20)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack-dev-server@4.11.1): resolution: {integrity: sha512-CWWiwZa3/0zHnc6zLvI9Sgj12gJDTktZO87/gfwq2VfbWqAEUYsKs6NE4Pm0Yg9O4/IG8DHoHIB+bTNlLp/lCA==} engines: {node: '>=16.0.0'} peerDependencies: @@ -19061,25 +20280,25 @@ packages: optional: true dependencies: '@babel/core': 7.22.11 - '@babel/preset-flow': 7.22.15_@babel+core@7.22.11 - '@babel/preset-react': 7.22.15_@babel+core@7.22.11 - '@pmmmwh/react-refresh-webpack-plugin': 0.5.10_kwexxzmt7sjpqjleraytwi4jvu + '@babel/preset-flow': 7.22.15(@babel/core@7.22.11) + '@babel/preset-react': 7.22.15(@babel/core@7.22.11) + '@pmmmwh/react-refresh-webpack-plugin': 0.5.10(react-refresh@0.11.0)(webpack-dev-server@4.11.1)(webpack@5.78.0) '@storybook/core-webpack': 7.4.2 '@storybook/docs-tools': 7.4.2 '@storybook/node-logger': 7.4.2 - '@storybook/react': 7.4.2_jgxnvbe4faw3ohf4h6p42qq6oy - '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0_fejcc7gjbwtmwzggoernzojija + '@storybook/react': 7.4.2(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5) + '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(typescript@4.9.5)(webpack@5.78.0) '@types/node': 16.11.7 '@types/semver': 7.3.13 babel-plugin-add-react-displayname: 0.0.5 babel-plugin-react-docgen: 4.2.1 fs-extra: 11.1.1 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) react-refresh: 0.11.0 semver: 7.5.4 typescript: 4.9.5 - webpack: 5.78.0_u5c4qderjagc6tepfyiby6xhau + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) transitivePeerDependencies: - '@swc/core' - '@types/webpack' @@ -19095,7 +20314,7 @@ packages: - webpack-plugin-serve dev: true - /@storybook/preview-api/7.4.2: + /@storybook/preview-api@7.4.2: resolution: {integrity: sha512-ihTHRYzI/sI6bD215aYppiWF+1u38TrlsNjFYJ/Grftbti5d40g5wCwvAXK41SxJNYpk6CRtfvNKOwbEAC33gg==} dependencies: '@storybook/channels': 7.4.2 @@ -19113,39 +20332,39 @@ packages: ts-dedent: 2.2.0 util-deprecate: 1.0.2 - /@storybook/preview/7.4.2: + /@storybook/preview@7.4.2: resolution: {integrity: sha512-T7rAV6qQ7tBeSvgi0RuA5EU8tm1OMhU8PcCqosWGaLhMCR0VMzw1/WGKuR11g1XmzvaAm2xGgMp82nqi4G0i7A==} dev: true - /@storybook/react-docgen-typescript-plugin/1.0.6--canary.9.0c3f3b7.0_fejcc7gjbwtmwzggoernzojija: + /@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0(typescript@4.9.5)(webpack@5.78.0): resolution: {integrity: sha512-KUqXC3oa9JuQ0kZJLBhVdS4lOneKTOopnNBK4tUAgoxWQ3u/IjzdueZjFr7gyBrXMoU6duutk3RQR9u8ZpYJ4Q==} peerDependencies: typescript: '>= 4.x' webpack: '>= 4' dependencies: - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) endent: 2.1.0 find-cache-dir: 3.3.2 flat-cache: 3.1.0 micromatch: 4.0.5 - react-docgen-typescript: 2.2.2_typescript@4.9.5 + react-docgen-typescript: 2.2.2(typescript@4.9.5) tslib: 2.6.2 typescript: 4.9.5 - webpack: 5.78.0_u5c4qderjagc6tepfyiby6xhau + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) transitivePeerDependencies: - supports-color dev: true - /@storybook/react-dom-shim/7.4.2_sfoxds7t5ydpegc3knd667wn6m: + /@storybook/react-dom-shim@7.4.2(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-9Ae2As3Hf//mdFEAv58VgDbi9R5JRGne8Ai6Vspc5FZMCJIjr5kullckBi3n9uKRg2L8V7wjDRK8Cql2tEr0Yg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) - /@storybook/react-webpack5/7.4.2_52n76ehbrwnhxlqwakgjhf2icq: + /@storybook/react-webpack5@7.4.2(@babel/core@7.22.11)(@swc/core@1.3.49)(@types/react-dom@17.0.19)(@types/react@17.0.53)(esbuild@0.18.20)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack-cli@5.1.4): resolution: {integrity: sha512-pnl11MYKM3jRmHQz2dSnEDfDiApdH7ys3zH/FjImsTK6S8etMKlxGnZ58Puxj05qvrBRgpxnQSL+ZazfrEX/6w==} engines: {node: '>=16.0.0'} peerDependencies: @@ -19160,12 +20379,12 @@ packages: optional: true dependencies: '@babel/core': 7.22.11 - '@storybook/builder-webpack5': 7.4.2_zp5lbrhsmu5scxcjkdyhsyvpf4 - '@storybook/preset-react-webpack': 7.4.2_ohdbedpew2pidmjgbfx3ywlz2e - '@storybook/react': 7.4.2_jgxnvbe4faw3ohf4h6p42qq6oy + '@storybook/builder-webpack5': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(esbuild@0.18.20)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack-cli@5.1.4) + '@storybook/preset-react-webpack': 7.4.2(@babel/core@7.22.11)(@swc/core@1.3.49)(esbuild@0.18.20)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack-cli@5.1.4) + '@storybook/react': 7.4.2(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5) '@types/node': 16.11.7 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) typescript: 4.9.5 transitivePeerDependencies: - '@swc/core' @@ -19185,7 +20404,7 @@ packages: - webpack-plugin-serve dev: true - /@storybook/react-webpack5/7.4.2_vwul62em6qezjiqxjnjsyslgzm: + /@storybook/react-webpack5@7.4.2(@babel/core@7.22.11)(@swc/core@1.3.49)(@types/react-dom@17.0.19)(@types/react@17.0.53)(esbuild@0.18.20)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack-dev-server@4.11.1): resolution: {integrity: sha512-pnl11MYKM3jRmHQz2dSnEDfDiApdH7ys3zH/FjImsTK6S8etMKlxGnZ58Puxj05qvrBRgpxnQSL+ZazfrEX/6w==} engines: {node: '>=16.0.0'} peerDependencies: @@ -19200,12 +20419,12 @@ packages: optional: true dependencies: '@babel/core': 7.22.11 - '@storybook/builder-webpack5': 7.4.2_3lffwbku4bk6frqtkhanezvcv4 - '@storybook/preset-react-webpack': 7.4.2_jdxeyi54iwcfg46yvg5dadhzb4 - '@storybook/react': 7.4.2_jgxnvbe4faw3ohf4h6p42qq6oy + '@storybook/builder-webpack5': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(esbuild@0.18.20)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack-cli@5.1.4) + '@storybook/preset-react-webpack': 7.4.2(@babel/core@7.22.11)(@swc/core@1.3.49)(esbuild@0.18.20)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack-dev-server@4.11.1) + '@storybook/react': 7.4.2(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5) '@types/node': 16.11.7 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) typescript: 4.9.5 transitivePeerDependencies: - '@swc/core' @@ -19225,7 +20444,7 @@ packages: - webpack-plugin-serve dev: true - /@storybook/react/7.4.2_jgxnvbe4faw3ohf4h6p42qq6oy: + /@storybook/react@7.4.2(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5): resolution: {integrity: sha512-8bAnSOpDTiE1c9pSkIKRipvqbuZP6Hu1CYaG1RXWF8AIBsjiV9+SsR919Flj1UiCmcw4BLO/ZIvIDGny4ktHhA==} engines: {node: '>=16.0.0'} peerDependencies: @@ -19241,21 +20460,21 @@ packages: '@storybook/docs-tools': 7.4.2 '@storybook/global': 5.0.0 '@storybook/preview-api': 7.4.2 - '@storybook/react-dom-shim': 7.4.2_sfoxds7t5ydpegc3knd667wn6m + '@storybook/react-dom-shim': 7.4.2(react-dom@17.0.2)(react@17.0.2) '@storybook/types': 7.4.2 '@types/escodegen': 0.0.6 '@types/estree': 0.0.51 '@types/node': 16.11.7 acorn: 7.4.1 - acorn-jsx: 5.3.2_acorn@7.4.1 + acorn-jsx: 5.3.2(acorn@7.4.1) acorn-walk: 7.2.0 escodegen: 2.1.0 html-tags: 3.3.1 lodash: 4.17.21 prop-types: 15.8.1 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-element-to-jsx-string: 15.0.0_sfoxds7t5ydpegc3knd667wn6m + react-dom: 17.0.2(react@17.0.2) + react-element-to-jsx-string: 15.0.0(react-dom@17.0.2)(react@17.0.2) ts-dedent: 2.2.0 type-fest: 2.19.0 typescript: 4.9.5 @@ -19265,7 +20484,7 @@ packages: - supports-color dev: true - /@storybook/router/7.4.2_sfoxds7t5ydpegc3knd667wn6m: + /@storybook/router@7.4.2(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-TFpMrmliklWNSrF84kGnh3WcLZciqIvaAjhxahqD+kx070KLqjxrsiny7UC6PUUYZdjLkbR9m8n3SFdXAVKgLw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -19275,16 +20494,16 @@ packages: memoizerific: 1.11.3 qs: 6.11.1 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) - /@storybook/store/7.4.2: + /@storybook/store@7.4.2: resolution: {integrity: sha512-WYwhdyGEtOZlLkbGqfzsTY5IsVuQCz6J00g63bEQwxiCx3ZNco+HXGoQhV/SH3G+em2++1sh6BETFuZ5sbwmkQ==} dependencies: '@storybook/client-logger': 7.4.2 '@storybook/preview-api': 7.4.2 dev: true - /@storybook/telemetry/7.4.2: + /@storybook/telemetry@7.4.2: resolution: {integrity: sha512-ZAh1Bjk9JVpL5j0Aj3PHr3XEDZcOrFeugVyRuuul2gAyu6SbpPhl8Dd2Wr9YJS0ZDWs3u0CgKRCeFPPAi3QosA==} dependencies: '@storybook/client-logger': 7.4.2 @@ -19300,20 +20519,20 @@ packages: - supports-color dev: true - /@storybook/theming/7.4.2_sfoxds7t5ydpegc3knd667wn6m: + /@storybook/theming@7.4.2(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-wVmxZHVCqDoZgUOXTS4HRV4UClLtCydRNOEuUZ7X08QIPSA1FVL3gEpTQJfgCsyBX/cwSSofAMUbzAGEVNo+9g==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@emotion/use-insertion-effect-with-fallbacks': 1.0.0_react@17.0.2 + '@emotion/use-insertion-effect-with-fallbacks': 1.0.0(react@17.0.2) '@storybook/client-logger': 7.4.2 '@storybook/global': 5.0.0 memoizerific: 1.11.3 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) - /@storybook/types/7.4.2: + /@storybook/types@7.4.2: resolution: {integrity: sha512-OOJ2TeS3Zzc6spHbdH+JXml0q4IHuYt9axmXAv1/pkhqHjA5072pyUacmlYNQeihpQOOsKLiCQUQlvtMy9fTnQ==} dependencies: '@storybook/channels': 7.4.2 @@ -19321,7 +20540,7 @@ packages: '@types/express': 4.17.17 file-system-cache: 2.3.0 - /@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.9 @@ -19329,39 +20548,39 @@ packages: magic-string: 0.25.9 string.prototype.matchall: 4.0.8 - /@svgr/babel-plugin-add-jsx-attribute/5.4.0: + /@svgr/babel-plugin-add-jsx-attribute@5.4.0: resolution: {integrity: sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==} engines: {node: '>=10'} - /@svgr/babel-plugin-remove-jsx-attribute/5.4.0: + /@svgr/babel-plugin-remove-jsx-attribute@5.4.0: resolution: {integrity: sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==} engines: {node: '>=10'} - /@svgr/babel-plugin-remove-jsx-empty-expression/5.0.1: + /@svgr/babel-plugin-remove-jsx-empty-expression@5.0.1: resolution: {integrity: sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==} engines: {node: '>=10'} - /@svgr/babel-plugin-replace-jsx-attribute-value/5.0.1: + /@svgr/babel-plugin-replace-jsx-attribute-value@5.0.1: resolution: {integrity: sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==} engines: {node: '>=10'} - /@svgr/babel-plugin-svg-dynamic-title/5.4.0: + /@svgr/babel-plugin-svg-dynamic-title@5.4.0: resolution: {integrity: sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==} engines: {node: '>=10'} - /@svgr/babel-plugin-svg-em-dimensions/5.4.0: + /@svgr/babel-plugin-svg-em-dimensions@5.4.0: resolution: {integrity: sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==} engines: {node: '>=10'} - /@svgr/babel-plugin-transform-react-native-svg/5.4.0: + /@svgr/babel-plugin-transform-react-native-svg@5.4.0: resolution: {integrity: sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==} engines: {node: '>=10'} - /@svgr/babel-plugin-transform-svg-component/5.5.0: + /@svgr/babel-plugin-transform-svg-component@5.5.0: resolution: {integrity: sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==} engines: {node: '>=10'} - /@svgr/babel-preset/5.5.0: + /@svgr/babel-preset@5.5.0: resolution: {integrity: sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==} engines: {node: '>=10'} dependencies: @@ -19374,7 +20593,7 @@ packages: '@svgr/babel-plugin-transform-react-native-svg': 5.4.0 '@svgr/babel-plugin-transform-svg-component': 5.5.0 - /@svgr/core/5.5.0: + /@svgr/core@5.5.0: resolution: {integrity: sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==} engines: {node: '>=10'} dependencies: @@ -19384,13 +20603,13 @@ packages: transitivePeerDependencies: - supports-color - /@svgr/hast-util-to-babel-ast/5.5.0: + /@svgr/hast-util-to-babel-ast@5.5.0: resolution: {integrity: sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==} engines: {node: '>=10'} dependencies: '@babel/types': 7.22.19 - /@svgr/plugin-jsx/5.5.0: + /@svgr/plugin-jsx@5.5.0: resolution: {integrity: sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==} engines: {node: '>=10'} dependencies: @@ -19401,7 +20620,7 @@ packages: transitivePeerDependencies: - supports-color - /@svgr/plugin-svgo/5.5.0: + /@svgr/plugin-svgo@5.5.0: resolution: {integrity: sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==} engines: {node: '>=10'} dependencies: @@ -19409,14 +20628,14 @@ packages: deepmerge: 4.3.1 svgo: 1.3.2 - /@svgr/webpack/5.5.0: + /@svgr/webpack@5.5.0: resolution: {integrity: sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==} engines: {node: '>=10'} dependencies: '@babel/core': 7.22.11 - '@babel/plugin-transform-react-constant-elements': 7.21.3_@babel+core@7.22.11 - '@babel/preset-env': 7.22.20_@babel+core@7.22.11 - '@babel/preset-react': 7.22.15_@babel+core@7.22.11 + '@babel/plugin-transform-react-constant-elements': 7.21.3(@babel/core@7.22.11) + '@babel/preset-env': 7.22.20(@babel/core@7.22.11) + '@babel/preset-react': 7.22.15(@babel/core@7.22.11) '@svgr/core': 5.5.0 '@svgr/plugin-jsx': 5.5.0 '@svgr/plugin-svgo': 5.5.0 @@ -19424,7 +20643,7 @@ packages: transitivePeerDependencies: - supports-color - /@swc-node/core/1.10.3_@swc+core@1.3.49: + /@swc-node/core@1.10.3(@swc/core@1.3.49): resolution: {integrity: sha512-8rpv1DXzsQjN/C8ZXuaTSmJ4M/lRr6geUlbOQ861DLC+sKWcEEvxRjK9cXQ28GserHuEcFDA3wlF9rD1YD0x+Q==} engines: {node: '>= 10'} peerDependencies: @@ -19433,17 +20652,17 @@ packages: '@swc/core': 1.3.49 dev: true - /@swc-node/register/1.6.4_jn42jkxdhvnoxcj2sz3bqdtc5u: + /@swc-node/register@1.6.4(@swc/core@1.3.49)(typescript@4.9.5): resolution: {integrity: sha512-J6UtQvFR/VdETg74JsT6t/wEONWRRgM4/aLmyfC4GS4uAUZNn73NUxnih+7bnfpmp6qQwfrQ137zTiXLtMa5hQ==} peerDependencies: '@swc/core': '>= 1.3' typescript: '>= 4.3' dependencies: - '@swc-node/core': 1.10.3_@swc+core@1.3.49 + '@swc-node/core': 1.10.3(@swc/core@1.3.49) '@swc-node/sourcemap-support': 0.3.0 '@swc/core': 1.3.49 colorette: 2.0.19 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) pirates: 4.0.5 tslib: 2.6.2 typescript: 4.9.5 @@ -19451,14 +20670,14 @@ packages: - supports-color dev: true - /@swc-node/sourcemap-support/0.3.0: + /@swc-node/sourcemap-support@0.3.0: resolution: {integrity: sha512-gqBJSmJMWomZFxlppaKea7NeAqFrDrrS0RMt24No92M3nJWcyI9YKGEQKl+EyJqZ5gh6w1s0cTklMHMzRwA1NA==} dependencies: source-map-support: 0.5.21 tslib: 2.6.2 dev: true - /@swc/core-darwin-arm64/1.3.49: + /@swc/core-darwin-arm64@1.3.49: resolution: {integrity: sha512-g7aIfXh6uPHmhLXdjXQq5t3HAyS/EdvujasW1DIS5k8UqOBaSoCcSGtLIjzcLv3KujqNfYcm118E+12H0nY6fQ==} engines: {node: '>=10'} cpu: [arm64] @@ -19466,7 +20685,7 @@ packages: requiresBuild: true optional: true - /@swc/core-darwin-x64/1.3.49: + /@swc/core-darwin-x64@1.3.49: resolution: {integrity: sha512-eSIxVX0YDw40Bre5sAx2BV3DzdIGzmQvCf2yiBvLqiiL6GC0mmuDeWbUCAzdUX6fJ6FUVEBMUVqNOc9oJ2/d5w==} engines: {node: '>=10'} cpu: [x64] @@ -19474,7 +20693,7 @@ packages: requiresBuild: true optional: true - /@swc/core-linux-arm-gnueabihf/1.3.49: + /@swc/core-linux-arm-gnueabihf@1.3.49: resolution: {integrity: sha512-8mj3IcRVr/OJY0mVITz6Z5osNAMJK5GiKDaZ+3QejPLbl6aiu4sH4GmTHDRN14RnaVXOpecsGcUoQmNoNa3u3w==} engines: {node: '>=10'} cpu: [arm] @@ -19482,7 +20701,7 @@ packages: requiresBuild: true optional: true - /@swc/core-linux-arm64-gnu/1.3.49: + /@swc/core-linux-arm64-gnu@1.3.49: resolution: {integrity: sha512-Rmg9xw6tmpOpf6GKKjpHQGmjfHzqSths5ebI2ahrHlhekzZF2HYmPkVw4bHda8Bja6mbaw8FVBgBHjPU8mMeDA==} engines: {node: '>=10'} cpu: [arm64] @@ -19490,7 +20709,7 @@ packages: requiresBuild: true optional: true - /@swc/core-linux-arm64-musl/1.3.49: + /@swc/core-linux-arm64-musl@1.3.49: resolution: {integrity: sha512-nlKPYMogAI3Aak6Mlkag8/2AlHAZ/DpH7RjhfMazsaGhD/sQOmYdyY9Al69ejpa419YJuREeeeLoojFlSsd30g==} engines: {node: '>=10'} cpu: [arm64] @@ -19498,7 +20717,7 @@ packages: requiresBuild: true optional: true - /@swc/core-linux-x64-gnu/1.3.49: + /@swc/core-linux-x64-gnu@1.3.49: resolution: {integrity: sha512-QOyeJQ6NVi73SJcizbwvIZTiGA/N+BxX9liRrvibumaQmRh8fWjJiLNsv3ODSHeuonak7E8Bf7a7NnSTyu48Mw==} engines: {node: '>=10'} cpu: [x64] @@ -19506,7 +20725,7 @@ packages: requiresBuild: true optional: true - /@swc/core-linux-x64-musl/1.3.49: + /@swc/core-linux-x64-musl@1.3.49: resolution: {integrity: sha512-WlDMz+SOpYC9O/ZBUw1oiyWI7HyUCMlf/HS8Fy/kRI3eGoGCUxVTCJ1mP57GdQr4Wg32Y/ZpO2KSNQFWnT8mAw==} engines: {node: '>=10'} cpu: [x64] @@ -19514,7 +20733,7 @@ packages: requiresBuild: true optional: true - /@swc/core-win32-arm64-msvc/1.3.49: + /@swc/core-win32-arm64-msvc@1.3.49: resolution: {integrity: sha512-41LZOeI94Za3twib8KOIjnHYAZ+nkBFmboaREsFR1760S7jiMVywqWX8nFZvn/CXj15Fjjgdgyuig+zMREwXwQ==} engines: {node: '>=10'} cpu: [arm64] @@ -19522,7 +20741,7 @@ packages: requiresBuild: true optional: true - /@swc/core-win32-ia32-msvc/1.3.49: + /@swc/core-win32-ia32-msvc@1.3.49: resolution: {integrity: sha512-IdqLPoMKssyAoOCZdNXmnAd6/uyx+Hb9KSfZUHepZaNfwMy6J5XXrOsbYs3v53FH8MtekUUdV+mMX4me9bcv9w==} engines: {node: '>=10'} cpu: [ia32] @@ -19530,7 +20749,7 @@ packages: requiresBuild: true optional: true - /@swc/core-win32-x64-msvc/1.3.49: + /@swc/core-win32-x64-msvc@1.3.49: resolution: {integrity: sha512-7Fqjo5pS3uIohhSbYSaR0+e/bJdxmQb4oG97FIh5qvlCCGQaQ9UiaEeYy4uK0Ad+Menum1IXCAEiG7RHcl6Eyw==} engines: {node: '>=10'} cpu: [x64] @@ -19538,7 +20757,7 @@ packages: requiresBuild: true optional: true - /@swc/core/1.3.49: + /@swc/core@1.3.49: resolution: {integrity: sha512-br44ZHOfE9YyRGcORSLkHFQHTvhwRcaithBJ1Q5y5iMGpLbH0Wai3GN49L60RvmGwxNJfWzT+E7+rNNR7ewKgA==} engines: {node: '>=10'} requiresBuild: true @@ -19559,18 +20778,18 @@ packages: '@swc/core-win32-ia32-msvc': 1.3.49 '@swc/core-win32-x64-msvc': 1.3.49 - /@tanstack/match-sorter-utils/8.8.4: + /@tanstack/match-sorter-utils@8.8.4: resolution: {integrity: sha512-rKH8LjZiszWEvmi01NR72QWZ8m4xmXre0OOwlRGnjU01Eqz/QnN+cqpty2PJ0efHblq09+KilvyR7lsbzmXVEw==} engines: {node: '>=12'} dependencies: remove-accents: 0.4.2 dev: false - /@tanstack/query-core/4.29.1: + /@tanstack/query-core@4.29.1: resolution: {integrity: sha512-vkPewLEG8ua0efo3SsVT0BcBtkq5RZX8oPhDAyKL+k/rdOYSQTEocfGEXSaBwIwsXeOGBUpfKqI+UmHvNqdWXg==} dev: false - /@tanstack/react-query-devtools/4.29.1_fc767x2zeowb6djszczb2347uq: + /@tanstack/react-query-devtools@4.29.1(@tanstack/react-query@4.29.1)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-lbtNGArplXLVmY8eEh8LFqZz61PJI38sASEcuKoSnEK8UgWvLCwY5vjlT8fzk10yQ4jhR3+PHKLDMXA5ifCTXw==} peerDependencies: '@tanstack/react-query': 4.29.1 @@ -19578,14 +20797,14 @@ packages: react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: '@tanstack/match-sorter-utils': 8.8.4 - '@tanstack/react-query': 4.29.1_sfoxds7t5ydpegc3knd667wn6m + '@tanstack/react-query': 4.29.1(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) superjson: 1.12.2 - use-sync-external-store: 1.2.0_react@17.0.2 + use-sync-external-store: 1.2.0(react@17.0.2) dev: false - /@tanstack/react-query/4.29.1_sfoxds7t5ydpegc3knd667wn6m: + /@tanstack/react-query@4.29.1(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-/crv1v+OeuGG6EOvaQmyeo9GCKtH4jbmuhZkvk9ulufRiHcTr/A9+YP9GevEAZzUTdzXMwenpTbyxBGvG2xXvw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -19599,11 +20818,11 @@ packages: dependencies: '@tanstack/query-core': 4.29.1 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - use-sync-external-store: 1.2.0_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) + use-sync-external-store: 1.2.0(react@17.0.2) dev: false - /@taskforcesh/bullmq-pro/5.1.14: + /@taskforcesh/bullmq-pro@5.1.14: resolution: {integrity: sha512-J/83Q1GTFWbUWn1bpsiX+CcQXktp7ADg/d1oID+wQ8ZwSB2W5l/1FV4yR1BEi3sO+UFEo+rK3qfXQuDml7aBYA==, tarball: '@taskforcesh/bullmq-pro/-/@taskforcesh/bullmq-pro-5.1.14.tgz'} requiresBuild: true dependencies: @@ -19618,7 +20837,7 @@ packages: dev: false optional: true - /@testing-library/dom/7.31.2: + /@testing-library/dom@7.31.2: resolution: {integrity: sha512-3UqjCpey6HiTZT92vODYLPxTBWlM8ZOOjr3LX5F37/VRipW2M1kX6I/Cm4VXzteZqfGfagg8yXywpcOgQBlNsQ==} engines: {node: '>=10'} dependencies: @@ -19631,7 +20850,7 @@ packages: lz-string: 1.5.0 pretty-format: 26.6.2 - /@testing-library/dom/9.3.0: + /@testing-library/dom@9.3.0: resolution: {integrity: sha512-Dffe68pGwI6WlLRYR2I0piIkyole9cSBH5jGQKCGMRpHW5RHCqAUaqc2Kv0tUyd4dU4DLPKhJIjyKOnjv4tuUw==} engines: {node: '>=14'} dependencies: @@ -19645,7 +20864,7 @@ packages: pretty-format: 27.5.1 dev: true - /@testing-library/dom/9.3.1: + /@testing-library/dom@9.3.1: resolution: {integrity: sha512-0DGPd9AR3+iDTjGoMpxIkAsUihHZ3Ai6CneU6bRRrffXMgzCdlNk43jTrD2/5LT6CBb3MWTP8v510JzYtahD2w==} engines: {node: '>=14'} dependencies: @@ -19659,7 +20878,7 @@ packages: pretty-format: 27.5.1 dev: false - /@testing-library/jest-dom/4.2.4: + /@testing-library/jest-dom@4.2.4: resolution: {integrity: sha512-j31Bn0rQo12fhCWOUWy9fl7wtqkp7In/YP2p5ZFyRuiiB9Qs3g+hS4gAmDWONbAHcRmVooNJ5eOHQDCOmUFXHg==} engines: {node: '>=8', npm: '>=6'} dependencies: @@ -19674,7 +20893,7 @@ packages: redent: 3.0.0 dev: true - /@testing-library/react-hooks/8.0.1_zsjcj4gvi24ks76nprapl4hsmq: + /@testing-library/react-hooks@8.0.1(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-Aqhl2IVmLt8IovEVarNDFuJDVWVvhnr9/GCU6UUnrYXwgDFF9h2L2o2P9KBni1AST5sT6riAyoukFLyjQUgD/g==} engines: {node: '>=12'} peerDependencies: @@ -19693,11 +20912,11 @@ packages: '@babel/runtime': 7.21.0 '@types/react': 17.0.53 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-error-boundary: 3.1.4_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) + react-error-boundary: 3.1.4(react@17.0.2) dev: true - /@testing-library/react/11.2.7_sfoxds7t5ydpegc3knd667wn6m: + /@testing-library/react@11.2.7(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-tzRNp7pzd5QmbtXNG/mhdcl7Awfu/Iz1RaVHY75zTdOkmHCuzMhRL83gWHSgOAcjS3CCbyfwUHMZgRJb4kAfpA==} engines: {node: '>=10'} peerDependencies: @@ -19707,9 +20926,9 @@ packages: '@babel/runtime': 7.21.0 '@testing-library/dom': 7.31.2 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) - /@testing-library/user-event/12.8.3_@testing-library+dom@9.3.0: + /@testing-library/user-event@12.8.3(@testing-library/dom@9.3.0): resolution: {integrity: sha512-IR0iWbFkgd56Bu5ZI/ej8yQwrkCv8Qydx6RzwbKz9faXazR/+5tvYKsZQgyXJiwgpcva127YO6JcWy7YlCfofQ==} engines: {node: '>=10', npm: '>=6'} peerDependencies: @@ -19719,7 +20938,7 @@ packages: '@testing-library/dom': 9.3.0 dev: true - /@testing-library/user-event/12.8.3_@testing-library+dom@9.3.1: + /@testing-library/user-event@12.8.3(@testing-library/dom@9.3.1): resolution: {integrity: sha512-IR0iWbFkgd56Bu5ZI/ej8yQwrkCv8Qydx6RzwbKz9faXazR/+5tvYKsZQgyXJiwgpcva127YO6JcWy7YlCfofQ==} engines: {node: '>=10', npm: '>=6'} peerDependencies: @@ -19729,64 +20948,64 @@ packages: '@testing-library/dom': 9.3.1 dev: false - /@tokenizer/token/0.1.1: + /@tokenizer/token@0.1.1: resolution: {integrity: sha512-XO6INPbZCxdprl+9qa/AAbFFOMzzwqYxpjPgLICrMD6C2FCw6qfJOPcBk6JqqPLSaZ/Qx87qn4rpPmPMwaAK6w==} dev: true - /@tokenizer/token/0.3.0: + /@tokenizer/token@0.3.0: resolution: {integrity: sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==} 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'} - /@tootallnate/quickjs-emscripten/0.23.0: + /@tootallnate/quickjs-emscripten@0.23.0: resolution: {integrity: sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==} dev: false - /@trysound/sax/0.2.0: + /@trysound/sax@0.2.0: resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} engines: {node: '>=10.13.0'} - /@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==} - /@tufjs/models/1.0.1: + /@tufjs/models@1.0.1: resolution: {integrity: sha512-AY0VoG/AXdlSOocuREfPoEW4SNhOPp/7fw6mpAxfVIny1uZ+0fEtMoCi7NhELSlqQIRLMu7RgfKhkxT+AJ+EXg==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: minimatch: 7.4.6 dev: true - /@types/analytics-node/3.1.11: + /@types/analytics-node@3.1.11: resolution: {integrity: sha512-CNQVFhaEwL5dEzzV+OtJxt5psRQKJ+XHd0eokdPOM432tpDd4vgB6FzYRCDhDo8uxH0JPXlF6BVA9sbJPpUuug==} dev: true - /@types/aria-query/4.2.2: + /@types/aria-query@4.2.2: resolution: {integrity: sha512-HnYpAE1Y6kRyKM/XkEuiRQhTHvkzMBurTHnpFLYLBGPIylZNPs9jJcuOOYWxPLJCSEtmZT0Y8rHDokKN7rRTig==} - /@types/aria-query/5.0.1: + /@types/aria-query@5.0.1: resolution: {integrity: sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q==} - /@types/async/3.2.18: + /@types/async@3.2.18: resolution: {integrity: sha512-/IsuXp3B9R//uRLi40VlIYoMp7OzhkunPe2fDu7jGfQXI9y3CDCx6FC4juRLSqrpmLst3vgsiK536AAGJFl4Ww==} dev: true - /@types/babel__core/7.20.0: + /@types/babel__core@7.20.0: resolution: {integrity: sha512-+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ==} dependencies: '@babel/parser': 7.22.16 @@ -19795,41 +21014,41 @@ packages: '@types/babel__template': 7.4.1 '@types/babel__traverse': 7.18.3 - /@types/babel__generator/7.6.4: + /@types/babel__generator@7.6.4: resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==} dependencies: '@babel/types': 7.22.19 - /@types/babel__template/7.4.1: + /@types/babel__template@7.4.1: resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==} dependencies: '@babel/parser': 7.22.16 '@babel/types': 7.22.19 - /@types/babel__traverse/7.18.3: + /@types/babel__traverse@7.18.3: resolution: {integrity: sha512-1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w==} dependencies: '@babel/types': 7.22.19 - /@types/bcrypt/3.0.1: + /@types/bcrypt@3.0.1: resolution: {integrity: sha512-SwBrq5wb6jXP0o3O3jStdPWbKpimTImfdFD/OZE3uW+jhGpds/l5wMX9lfYOTDOa5Bod2QmOgo9ln+tMp2XP/w==} dev: true - /@types/bluebird/3.5.38: + /@types/bluebird@3.5.38: resolution: {integrity: sha512-yR/Kxc0dd4FfwtEoLZMoqJbM/VE/W7hXn/MIjb+axcwag0iFmSPK7OBUZq1YWLynJUoWQkfUrI7T0HDqGApNSg==} - /@types/body-parser/1.19.2: + /@types/body-parser@1.19.2: resolution: {integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==} dependencies: '@types/connect': 3.4.35 '@types/node': 12.20.55 - /@types/bonjour/3.5.10: + /@types/bonjour@3.5.10: resolution: {integrity: sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==} dependencies: '@types/node': 14.18.42 - /@types/bull/3.15.9: + /@types/bull@3.15.9: resolution: {integrity: sha512-MPUcyPPQauAmynoO3ezHAmCOhbB0pWmYyijr/5ctaCqhbKWsjW0YCod38ZcLzUBprosfZ9dPqfYIcfdKjk7RNQ==} dependencies: '@types/ioredis': 5.0.0 @@ -19838,199 +21057,199 @@ packages: - supports-color dev: true - /@types/caseless/0.12.2: + /@types/caseless@0.12.2: resolution: {integrity: sha512-6ckxMjBBD8URvjB6J3NcnuAn5Pkl7t3TizAg+xdlzzQGSPSmBcXf8KoIH0ua/i+tio+ZRUHEXp0HEmvaR4kt0w==} - /@types/chai/4.3.4: + /@types/chai@4.3.4: resolution: {integrity: sha512-KnRanxnpfpjUTqTCXslZSEdLfXExwgNxYPdiO2WGUj8+HDjFi8R3k5RVKPeSCzLjCcshCAtVO2QBbVuAV4kTnw==} dev: true - /@types/command-line-args/5.2.0: + /@types/command-line-args@5.2.0: resolution: {integrity: sha512-UuKzKpJJ/Ief6ufIaIzr3A/0XnluX7RvFgwkV89Yzvm77wCh1kFaFmqN8XEnGcN62EuHdedQjEMb8mYxFLGPyA==} dev: true - /@types/command-line-usage/5.0.2: + /@types/command-line-usage@5.0.2: resolution: {integrity: sha512-n7RlEEJ+4x4TS7ZQddTmNSxP+zziEG0TNsMfiRIxcIVXt71ENJ9ojeXmGO3wPoTdn7pJcU2xc3CJYMktNT6DPg==} dev: true - /@types/configstore/5.0.1: + /@types/configstore@5.0.1: resolution: {integrity: sha512-c/QCznvk7bLKGhHETj29rqKufui3jaAxjBhK4R2zUrMG5UG0qTwfWYxBoUbH8JCyDjdCWMIxPJ7/Fdz1UcAnWg==} dev: true - /@types/connect-history-api-fallback/1.3.5: + /@types/connect-history-api-fallback@1.3.5: resolution: {integrity: sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==} dependencies: '@types/express-serve-static-core': 4.17.33 '@types/node': 14.18.42 - /@types/connect/3.4.35: + /@types/connect@3.4.35: resolution: {integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==} dependencies: '@types/node': 14.18.42 - /@types/cookie/0.4.1: + /@types/cookie@0.4.1: resolution: {integrity: sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==} - /@types/cookiejar/2.1.2: + /@types/cookiejar@2.1.2: resolution: {integrity: sha512-t73xJJrvdTjXrn4jLS9VSGRbz0nUY3cl2DMGDU48lKl+HR9dbbjW2A9r3g40VA++mQpy6uuHg33gy7du2BKpog==} dev: true - /@types/cors/2.8.13: + /@types/cors@2.8.13: resolution: {integrity: sha512-RG8AStHlUiV5ysZQKq97copd2UmVYw3/pRMLefISZ3S1hK104Cwm7iLQ3fTKx+lsUH2CE8FlLaYeEA2LSeqYUA==} dependencies: '@types/node': 14.18.42 - /@types/cross-spawn/6.0.3: + /@types/cross-spawn@6.0.3: resolution: {integrity: sha512-BDAkU7WHHRHnvBf5z89lcvACsvkz/n7Tv+HyD/uW76O29HoH1Tk/W6iQrepaZVbisvlEek4ygwT8IW7ow9XLAA==} dependencies: '@types/node': 14.18.42 dev: true - /@types/d3-array/3.0.4: + /@types/d3-array@3.0.4: resolution: {integrity: sha512-nwvEkG9vYOc0Ic7G7kwgviY4AQlTfYGIZ0fqB7CQHXGyYM6nO7kJh5EguSNA3jfh4rq7Sb7eMVq8isuvg2/miQ==} dev: false - /@types/d3-axis/3.0.2: + /@types/d3-axis@3.0.2: resolution: {integrity: sha512-uGC7DBh0TZrU/LY43Fd8Qr+2ja1FKmH07q2FoZFHo1eYl8aj87GhfVoY1saJVJiq24rp1+wpI6BvQJMKgQm8oA==} dependencies: '@types/d3-selection': 3.0.5 dev: false - /@types/d3-brush/3.0.2: + /@types/d3-brush@3.0.2: resolution: {integrity: sha512-2TEm8KzUG3N7z0TrSKPmbxByBx54M+S9lHoP2J55QuLU0VSQ9mE96EJSAOVNEqd1bbynMjeTS9VHmz8/bSw8rA==} dependencies: '@types/d3-selection': 3.0.5 dev: false - /@types/d3-chord/3.0.2: + /@types/d3-chord@3.0.2: resolution: {integrity: sha512-abT/iLHD3sGZwqMTX1TYCMEulr+wBd0SzyOQnjYNLp7sngdOHYtNkMRI5v3w5thoN+BWtlHVDx2Osvq6fxhZWw==} dev: false - /@types/d3-color/3.1.0: + /@types/d3-color@3.1.0: resolution: {integrity: sha512-HKuicPHJuvPgCD+np6Se9MQvS6OCbJmOjGvylzMJRlDwUXjKTTXs6Pwgk79O09Vj/ho3u1ofXnhFOaEWWPrlwA==} dev: false - /@types/d3-contour/3.0.2: + /@types/d3-contour@3.0.2: resolution: {integrity: sha512-k6/bGDoAGJZnZWaKzeB+9glgXCYGvh6YlluxzBREiVo8f/X2vpTEdgPy9DN7Z2i42PZOZ4JDhVdlTSTSkLDPlQ==} dependencies: '@types/d3-array': 3.0.4 '@types/geojson': 7946.0.10 dev: false - /@types/d3-delaunay/6.0.1: + /@types/d3-delaunay@6.0.1: resolution: {integrity: sha512-tLxQ2sfT0p6sxdG75c6f/ekqxjyYR0+LwPrsO1mbC9YDBzPJhs2HbJJRrn8Ez1DBoHRo2yx7YEATI+8V1nGMnQ==} dev: false - /@types/d3-dispatch/3.0.2: + /@types/d3-dispatch@3.0.2: resolution: {integrity: sha512-rxN6sHUXEZYCKV05MEh4z4WpPSqIw+aP7n9ZN6WYAAvZoEAghEK1WeVZMZcHRBwyaKflU43PCUAJNjFxCzPDjg==} dev: false - /@types/d3-drag/3.0.2: + /@types/d3-drag@3.0.2: resolution: {integrity: sha512-qmODKEDvyKWVHcWWCOVcuVcOwikLVsyc4q4EBJMREsoQnR2Qoc2cZQUyFUPgO9q4S3qdSqJKBsuefv+h0Qy+tw==} dependencies: '@types/d3-selection': 3.0.5 dev: false - /@types/d3-dsv/3.0.1: + /@types/d3-dsv@3.0.1: resolution: {integrity: sha512-76pBHCMTvPLt44wFOieouXcGXWOF0AJCceUvaFkxSZEu4VDUdv93JfpMa6VGNFs01FHfuP4a5Ou68eRG1KBfTw==} dev: false - /@types/d3-ease/3.0.0: + /@types/d3-ease@3.0.0: resolution: {integrity: sha512-aMo4eaAOijJjA6uU+GIeW018dvy9+oH5Y2VPPzjjfxevvGQ/oRDs+tfYC9b50Q4BygRR8yE2QCLsrT0WtAVseA==} dev: false - /@types/d3-fetch/3.0.2: + /@types/d3-fetch@3.0.2: resolution: {integrity: sha512-gllwYWozWfbep16N9fByNBDTkJW/SyhH6SGRlXloR7WdtAaBui4plTP+gbUgiEot7vGw/ZZop1yDZlgXXSuzjA==} dependencies: '@types/d3-dsv': 3.0.1 dev: false - /@types/d3-force/3.0.4: + /@types/d3-force@3.0.4: resolution: {integrity: sha512-q7xbVLrWcXvSBBEoadowIUJ7sRpS1yvgMWnzHJggFy5cUZBq2HZL5k/pBSm0GdYWS1vs5/EDwMjSKF55PDY4Aw==} dev: false - /@types/d3-format/3.0.1: + /@types/d3-format@3.0.1: resolution: {integrity: sha512-5KY70ifCCzorkLuIkDe0Z9YTf9RR2CjBX1iaJG+rgM/cPP+sO+q9YdQ9WdhQcgPj1EQiJ2/0+yUkkziTG6Lubg==} dev: false - /@types/d3-geo/3.0.3: + /@types/d3-geo@3.0.3: resolution: {integrity: sha512-bK9uZJS3vuDCNeeXQ4z3u0E7OeJZXjUgzFdSOtNtMCJCLvDtWDwfpRVWlyt3y8EvRzI0ccOu9xlMVirawolSCw==} dependencies: '@types/geojson': 7946.0.10 dev: false - /@types/d3-hierarchy/3.1.2: + /@types/d3-hierarchy@3.1.2: resolution: {integrity: sha512-9hjRTVoZjRFR6xo8igAJyNXQyPX6Aq++Nhb5ebrUF414dv4jr2MitM2fWiOY475wa3Za7TOS2Gh9fmqEhLTt0A==} dev: false - /@types/d3-interpolate/3.0.1: + /@types/d3-interpolate@3.0.1: resolution: {integrity: sha512-jx5leotSeac3jr0RePOH1KdR9rISG91QIE4Q2PYTu4OymLTZfA3SrnURSLzKH48HmXVUru50b8nje4E79oQSQw==} dependencies: '@types/d3-color': 3.1.0 dev: false - /@types/d3-path/3.0.0: + /@types/d3-path@3.0.0: resolution: {integrity: sha512-0g/A+mZXgFkQxN3HniRDbXMN79K3CdTpLsevj+PXiTcb2hVyvkZUBg37StmgCQkaD84cUJ4uaDAWq7UJOQy2Tg==} dev: false - /@types/d3-polygon/3.0.0: + /@types/d3-polygon@3.0.0: resolution: {integrity: sha512-D49z4DyzTKXM0sGKVqiTDTYr+DHg/uxsiWDAkNrwXYuiZVd9o9wXZIo+YsHkifOiyBkmSWlEngHCQme54/hnHw==} dev: false - /@types/d3-quadtree/3.0.2: + /@types/d3-quadtree@3.0.2: resolution: {integrity: sha512-QNcK8Jguvc8lU+4OfeNx+qnVy7c0VrDJ+CCVFS9srBo2GL9Y18CnIxBdTF3v38flrGy5s1YggcoAiu6s4fLQIw==} dev: false - /@types/d3-random/3.0.1: + /@types/d3-random@3.0.1: resolution: {integrity: sha512-IIE6YTekGczpLYo/HehAy3JGF1ty7+usI97LqraNa8IiDur+L44d0VOjAvFQWJVdZOJHukUJw+ZdZBlgeUsHOQ==} dev: false - /@types/d3-scale-chromatic/3.0.0: + /@types/d3-scale-chromatic@3.0.0: resolution: {integrity: sha512-dsoJGEIShosKVRBZB0Vo3C8nqSDqVGujJU6tPznsBJxNJNwMF8utmS83nvCBKQYPpjCzaaHcrf66iTRpZosLPw==} dev: false - /@types/d3-scale/4.0.3: + /@types/d3-scale@4.0.3: resolution: {integrity: sha512-PATBiMCpvHJSMtZAMEhc2WyL+hnzarKzI6wAHYjhsonjWJYGq5BXTzQjv4l8m2jO183/4wZ90rKvSeT7o72xNQ==} dependencies: '@types/d3-time': 3.0.0 dev: false - /@types/d3-selection/3.0.5: + /@types/d3-selection@3.0.5: resolution: {integrity: sha512-xCB0z3Hi8eFIqyja3vW8iV01+OHGYR2di/+e+AiOcXIOrY82lcvWW8Ke1DYE/EUVMsBl4Db9RppSBS3X1U6J0w==} dev: false - /@types/d3-shape/3.1.1: + /@types/d3-shape@3.1.1: resolution: {integrity: sha512-6Uh86YFF7LGg4PQkuO2oG6EMBRLuW9cbavUW46zkIO5kuS2PfTqo2o9SkgtQzguBHbLgNnU90UNsITpsX1My+A==} dependencies: '@types/d3-path': 3.0.0 dev: false - /@types/d3-time-format/4.0.0: + /@types/d3-time-format@4.0.0: resolution: {integrity: sha512-yjfBUe6DJBsDin2BMIulhSHmr5qNR5Pxs17+oW4DoVPyVIXZ+m6bs7j1UVKP08Emv6jRmYrYqxYzO63mQxy1rw==} dev: false - /@types/d3-time/3.0.0: + /@types/d3-time@3.0.0: resolution: {integrity: sha512-sZLCdHvBUcNby1cB6Fd3ZBrABbjz3v1Vm90nysCQ6Vt7vd6e/h9Lt7SiJUoEX0l4Dzc7P5llKyhqSi1ycSf1Hg==} dev: false - /@types/d3-timer/3.0.0: + /@types/d3-timer@3.0.0: resolution: {integrity: sha512-HNB/9GHqu7Fo8AQiugyJbv6ZxYz58wef0esl4Mv828w1ZKpAshw/uFWVDUcIB9KKFeFKoxS3cHY07FFgtTRZ1g==} dev: false - /@types/d3-transition/3.0.3: + /@types/d3-transition@3.0.3: resolution: {integrity: sha512-/S90Od8Id1wgQNvIA8iFv9jRhCiZcGhPd2qX0bKF/PS+y0W5CrXKgIiELd2CvG1mlQrWK/qlYh3VxicqG1ZvgA==} dependencies: '@types/d3-selection': 3.0.5 dev: false - /@types/d3-zoom/3.0.2: + /@types/d3-zoom@3.0.2: resolution: {integrity: sha512-t09DDJVBI6AkM7N8kuPsnq/3d/ehtRKBN1xSiYjjMCgbiw6HM6Ged5VhvswmhprfKyGvzeTEL/4WBaK9llWvlA==} dependencies: '@types/d3-interpolate': 3.0.1 '@types/d3-selection': 3.0.5 dev: false - /@types/d3/7.4.0: + /@types/d3@7.4.0: resolution: {integrity: sha512-jIfNVK0ZlxcuRDKtRS/SypEyOQ6UHaFQBKv032X45VvxSJ6Yi5G9behy9h6tNTHTDGh5Vq+KbmBjUWLgY4meCA==} dependencies: '@types/d3-array': 3.0.4 @@ -20065,64 +21284,63 @@ packages: '@types/d3-zoom': 3.0.2 dev: false - /@types/debug/4.1.8: + /@types/debug@4.1.8: resolution: {integrity: sha512-/vPO1EPOs306Cvhwv7KfVfYvOJqA/S/AXjaHQiJboCZzcNDb+TIJFN9/2C9DZ//ijSKWioNyUxD792QmDJ+HKQ==} dependencies: '@types/ms': 0.7.31 dev: true - /@types/detect-port/1.3.3: + /@types/detect-port@1.3.3: resolution: {integrity: sha512-bV/jQlAJ/nPY3XqSatkGpu+nGzou+uSwrH1cROhn+jBFg47yaNH+blW4C7p9KhopC7QxCv/6M86s37k8dMk0Yg==} dev: true - /@types/doctrine/0.0.3: + /@types/doctrine@0.0.3: resolution: {integrity: sha512-w5jZ0ee+HaPOaX25X2/2oGR/7rgAQSYII7X7pp0m9KgBfMP7uKfMfTvcpl5Dj+eDBbpxKGiqE+flqDr6XTd2RA==} - /@types/ejs/3.1.2: + /@types/ejs@3.1.2: resolution: {integrity: sha512-ZmiaE3wglXVWBM9fyVC17aGPkLo/UgaOjEiI2FXQfyczrCefORPxIe+2dVmnmk3zkVIbizjrlQzmPGhSYGXG5g==} dev: true - /@types/emscripten/1.39.7: + /@types/emscripten@1.39.7: resolution: {integrity: sha512-tLqYV94vuqDrXh515F/FOGtBcRMTPGvVV1LzLbtYDcQmmhtpf/gLYf+hikBbQk8MzOHNz37wpFfJbYAuSn8HqA==} dev: true - /@types/escodegen/0.0.6: + /@types/escodegen@0.0.6: resolution: {integrity: sha512-AjwI4MvWx3HAOaZqYsjKWyEObT9lcVV0Y0V8nXo6cXzN8ZiMxVhf6F3d/UNvXVGKrEzL/Dluc5p+y9GkzlTWig==} dev: true - /@types/eslint-scope/3.7.4: + /@types/eslint-scope@3.7.4: resolution: {integrity: sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==} dependencies: '@types/eslint': 8.44.2 '@types/estree': 1.0.1 - /@types/eslint/8.44.2: + /@types/eslint@8.44.2: resolution: {integrity: sha512-sdPRb9K6iL5XZOmBubg8yiFp5yS/JdUDQsq5e6h95km91MCYMuvp7mh1fjPEYUhvHepKpZOjnEaMBR4PxjWDzg==} dependencies: '@types/estree': 1.0.1 '@types/json-schema': 7.0.12 - /@types/estree/0.0.39: + /@types/estree@0.0.39: resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==} - /@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/estree/1.0.1: + /@types/estree@1.0.1: resolution: {integrity: sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==} - /@types/express-serve-static-core/4.17.33: + /@types/express-serve-static-core@4.17.33: resolution: {integrity: sha512-TPBqmR/HRYI3eC2E5hmiivIzv+bidAfXofM+sbonAGvyDhySGw9/PQZFt2BLOrjUUR++4eJVpx6KnLQK1Fk9tA==} dependencies: '@types/node': 14.18.42 '@types/qs': 6.9.7 '@types/range-parser': 1.2.4 - /@types/express/4.17.17: + /@types/express@4.17.17: resolution: {integrity: sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==} dependencies: '@types/body-parser': 1.19.2 @@ -20130,64 +21348,65 @@ packages: '@types/qs': 6.9.7 '@types/serve-static': 1.15.1 - /@types/find-cache-dir/3.2.1: + /@types/find-cache-dir@3.2.1: resolution: {integrity: sha512-frsJrz2t/CeGifcu/6uRo4b+SzAwT4NYCVPu1GN8IB9XTzrpPkGuV0tmh9mN+/L0PklAlsC3u5Fxt0ju00LXIw==} - /@types/geojson/7946.0.10: + /@types/geojson@7946.0.10: resolution: {integrity: sha512-Nmh0K3iWQJzniTuPRcJn5hxXkfB1T1pgB89SBig5PlJQU5yocazeu4jATJlaA0GYFKWMqDdvYemoSnF2pXgLVA==} dev: false - /@types/glob/8.1.0: + /@types/glob@8.1.0: resolution: {integrity: sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w==} + requiresBuild: true dependencies: '@types/minimatch': 5.1.2 '@types/node': 14.18.42 dev: false optional: true - /@types/graceful-fs/4.1.6: + /@types/graceful-fs@4.1.6: resolution: {integrity: sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==} dependencies: '@types/node': 14.18.42 - /@types/hast/2.3.4: + /@types/hast@2.3.4: resolution: {integrity: sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==} dependencies: '@types/unist': 2.0.6 dev: false - /@types/history/4.7.11: + /@types/history@4.7.11: resolution: {integrity: sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==} dev: true - /@types/html-minifier-terser/5.1.2: + /@types/html-minifier-terser@5.1.2: resolution: {integrity: sha512-h4lTMgMJctJybDp8CQrxTUiiYmedihHWkjnF/8Pxseu2S6Nlfcy8kwboQ8yejh456rP2yWoEVm1sS/FVsfM48w==} dev: false - /@types/html-minifier-terser/6.1.0: + /@types/html-minifier-terser@6.1.0: resolution: {integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==} - /@types/html-to-text/9.0.1: + /@types/html-to-text@9.0.1: resolution: {integrity: sha512-sHu702QGb0SP2F0Zt+CxdCmGZIZ0gEaaCjqOh/V4iba1wTxPVntEPOM/vHm5bel08TILhB3+OxUTkDJWnr/zHQ==} dev: true - /@types/http-proxy/1.17.10: + /@types/http-proxy@1.17.10: resolution: {integrity: sha512-Qs5aULi+zV1bwKAg5z1PWnDXWmsn+LxIvUGv6E2+OOMYhclZMO+OXd9pYVf2gLykf2I7IV2u7oTHwChPNsvJ7g==} dependencies: '@types/node': 14.18.42 - /@types/iframe-resizer/3.5.9: + /@types/iframe-resizer@3.5.9: resolution: {integrity: sha512-RQUBI75F+uXruB95BFpC/8V8lPgJg4MQ6HxOCtAZYBB/h0FNCfrFfb4I+u2pZJIV7sKeszZbFqy1UnGeBMrvsA==} dev: false - /@types/inquirer/8.2.6: + /@types/inquirer@8.2.6: resolution: {integrity: sha512-3uT88kxg8lNzY8ay2ZjP44DKcRaTGztqeIvN2zHvhzIBH/uAPaL75aBtdNRKbA7xXoMbBt5kX0M00VKAnfOYlA==} dependencies: '@types/through': 0.0.30 rxjs: 7.8.1 dev: true - /@types/ioredis/5.0.0: + /@types/ioredis@5.0.0: resolution: {integrity: sha512-zJbJ3FVE17CNl5KXzdeSPtdltc4tMT3TzC6fxQS0sQngkbFZ6h+0uTafsRqu+eSLIugf6Yb0Ea0SUuRr42Nk9g==} deprecated: This is a stub types definition. ioredis provides its own type definitions, so you do not need this installed. dependencies: @@ -20196,58 +21415,58 @@ packages: - supports-color dev: true - /@types/istanbul-lib-coverage/2.0.4: + /@types/istanbul-lib-coverage@2.0.4: resolution: {integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==} - /@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 - /@types/istanbul-reports/1.1.2: + /@types/istanbul-reports@1.1.2: resolution: {integrity: sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==} dependencies: '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-lib-report': 3.0.0 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 - /@types/jasmine/4.3.1: + /@types/jasmine@4.3.1: resolution: {integrity: sha512-Vu8l+UGcshYmV1VWwULgnV/2RDbBaO6i2Ptx7nd//oJPIZGhoI1YLST4VKagD2Pq/Bc2/7zvtvhM7F3p4SN7kQ==} 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.5.0: + /@types/jest@29.5.0: resolution: {integrity: sha512-3Emr5VOl/aoBwnWcH/EFQvlSAmjV+XtV9GGu5mwdYew5vhQh0IUZx/60x0TzHDu09Bi7HMx10t/namdJw5QIcg==} dependencies: expect: 29.5.0 pretty-format: 29.5.0 dev: true - /@types/jest/29.5.1: + /@types/jest@29.5.1: resolution: {integrity: sha512-tEuVcHrpaixS36w7hpsfLBLpjtMRJUE09/MHXn923LOVojDwyC14cWcfc0rDs0VEfUyYmt/+iX1kxxp+gZMcaQ==} dependencies: expect: 29.5.0 pretty-format: 29.5.0 - /@types/jest/29.5.2: + /@types/jest@29.5.2: resolution: {integrity: sha512-mSoZVJF5YzGVCk+FsDxzDuH7s+SCkzrgKZzf0Z0T2WudhBUPoF6ktoTPC4R0ZoCPCV5xUvuU6ias5NvxcBcMMg==} dependencies: expect: 29.5.0 pretty-format: 29.5.0 dev: true - /@types/jsdom/20.0.1: + /@types/jsdom@20.0.1: resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==} dependencies: '@types/node': 14.18.42 @@ -20255,179 +21474,185 @@ packages: parse5: 7.1.2 dev: true - /@types/json-schema/7.0.12: + /@types/json-schema@7.0.12: resolution: {integrity: sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==} - /@types/json5/0.0.29: + /@types/json5@0.0.29: resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} - /@types/jsonwebtoken/8.5.9: + /@types/jsonwebtoken@8.5.9: resolution: {integrity: sha512-272FMnFGzAVMGtu9tkr29hRL6bZj4Zs1KZNeHLnKqAvp06tAIcarTMwOh8/8bz4FmKRcMxZhZNeUAQsNLoiPhg==} dependencies: '@types/node': 14.18.42 dev: true - /@types/jsonwebtoken/9.0.2: + /@types/jsonwebtoken@9.0.2: resolution: {integrity: sha512-drE6uz7QBKq1fYqqoFKTDRdFCPHd5TCub75BM+D+cMx7NU9hUz7SESLfC2fSCXVFMO5Yj8sOWHuGqPgjc+fz0Q==} dependencies: '@types/node': 14.18.42 dev: false - /@types/linkify-it/3.0.2: + /@types/linkify-it@3.0.2: resolution: {integrity: sha512-HZQYqbiFVWufzCwexrvh694SOim8z2d+xJl5UNamcvQFejLY/2YUtzXHYi3cHdI7PMlS8ejH2slRAOJQ32aNbA==} + requiresBuild: true dev: false optional: true - /@types/lodash.get/4.4.7: + /@types/lodash.get@4.4.7: resolution: {integrity: sha512-af34Mj+KdDeuzsJBxc/XeTtOx0SZHZNLd+hdrn+PcKGQs0EG2TJTzQAOTCZTgDJCArahlCzLWSy8c2w59JRz7Q==} dependencies: '@types/lodash': 4.14.192 dev: true - /@types/lodash.merge/4.6.7: + /@types/lodash.merge@4.6.7: resolution: {integrity: sha512-OwxUJ9E50gw3LnAefSHJPHaBLGEKmQBQ7CZe/xflHkyy/wH2zVyEIAKReHvVrrn7zKdF58p16We9kMfh7v0RRQ==} dependencies: '@types/lodash': 4.14.192 dev: true - /@types/lodash/4.14.192: + /@types/lodash@4.14.192: resolution: {integrity: sha512-km+Vyn3BYm5ytMO13k9KTp27O75rbQ0NFw+U//g+PX7VZyjCioXaRFisqSIJRECljcTv73G3i6BpglNGHgUQ5A==} - /@types/long/4.0.2: + /@types/long@4.0.2: resolution: {integrity: sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA==} + requiresBuild: true dev: false optional: true - /@types/markdown-it/12.2.3: + /@types/markdown-it@12.2.3: resolution: {integrity: sha512-GKMHFfv3458yYy+v/N8gjufHO6MSZKCOXpZc5GXIWWy8uldwfmPn98vp81gZ5f9SVw8YYBctgfJ22a2d7AOMeQ==} + requiresBuild: true dependencies: '@types/linkify-it': 3.0.2 '@types/mdurl': 1.0.2 dev: false optional: true - /@types/mdast/3.0.11: + /@types/mdast@3.0.11: resolution: {integrity: sha512-Y/uImid8aAwrEA24/1tcRZwpxX3pIFTSilcNDKSPn+Y2iDywSEachzRuvgAYYLR3wpGXAsMbv5lvKLDZLeYPAw==} dependencies: '@types/unist': 2.0.6 dev: true - /@types/mdurl/1.0.2: + /@types/mdurl@1.0.2: resolution: {integrity: sha512-eC4U9MlIcu2q0KQmXszyn5Akca/0jrQmwDRgpAMJai7qBWq4amIQhZyNau4VYGtCeALvW1/NtjzJJ567aZxfKA==} + requiresBuild: true dev: false optional: true - /@types/mdx/2.0.7: + /@types/mdx@2.0.7: resolution: {integrity: sha512-BG4tyr+4amr3WsSEmHn/fXPqaCba/AYZ7dsaQTiavihQunHSIxk+uAtqsjvicNpyHN6cm+B9RVrUOtW9VzIKHw==} - /@types/mime-types/2.1.1: + /@types/mime-types@2.1.1: resolution: {integrity: sha512-vXOTGVSLR2jMw440moWTC7H19iUyLtP3Z1YTj7cSsubOICinjMxFeb/V57v9QdyyPGbbWolUFSSmSiRSn94tFw==} dev: true - /@types/mime/3.0.1: + /@types/mime@3.0.1: resolution: {integrity: sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==} - /@types/minimatch/3.0.5: + /@types/minimatch@3.0.5: resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==} dev: true - /@types/minimatch/5.1.2: + /@types/minimatch@5.1.2: resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==} + requiresBuild: true dev: false optional: true - /@types/minimist/1.2.2: + /@types/minimist@1.2.2: resolution: {integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==} dev: true - /@types/mocha/8.2.3: + /@types/mocha@8.2.3: resolution: {integrity: sha512-ekGvFhFgrc2zYQoX4JeZPmVzZxw6Dtllga7iGHzfbYIYkAMUx/sAFP2GdFpLff+vdHXu5fl7WX9AT+TtqYcsyw==} dev: true - /@types/mocha/9.1.1: + /@types/mocha@9.1.1: resolution: {integrity: sha512-Z61JK7DKDtdKTWwLeElSEBcWGRLY8g95ic5FoQqI9CMx0ns/Ghep3B4DfcEimiKMvtamNVULVNKEsiwV3aQmXw==} dev: true - /@types/ms/0.7.31: + /@types/ms@0.7.31: resolution: {integrity: sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==} dev: true - /@types/newrelic/9.13.0: + /@types/newrelic@9.13.0: resolution: {integrity: sha512-Dj2fh+1SvR9KIZmk/ZcrzHmfF1f/2vSsIlYvKD49KtPcxRBKOWFRP9wyHtq+B6YCqIv+fHN97NtgJiq7OJaRzw==} dev: false - /@types/newrelic/9.14.0: + /@types/newrelic@9.14.0: resolution: {integrity: sha512-1jqbAMf6pKjAPJ8NC6VqZoylpBR6kejuw4qL3Mk8dworih+AXADki4WaUIWTzo7ERm6aykPl8xt1/J1invp6Mg==} dev: false - /@types/node-fetch/2.6.3: + /@types/node-fetch@2.6.3: resolution: {integrity: sha512-ETTL1mOEdq/sxUtgtOhKjyB2Irra4cjxksvcMUR5Zr4n+PxVhsCD9WS46oPbHL3et9Zde7CNRr+WUNlcHvsX+w==} dependencies: '@types/node': 14.18.42 form-data: 3.0.1 dev: false - /@types/node-fetch/2.6.5: + /@types/node-fetch@2.6.5: resolution: {integrity: sha512-OZsUlr2nxvkqUFLSaY2ZbA+P1q22q+KrlxWOn/38RX+u5kTkYL2mTujEpzUhGkS+K/QCYp9oagfXG39XOzyySg==} dependencies: '@types/node': 14.18.42 form-data: 4.0.0 - /@types/node-mailjet/3.3.9: + /@types/node-mailjet@3.3.9: resolution: {integrity: sha512-OSwpRjw0DPNCfRQTCcYOAT42uCcbOmAufZjHbqRW+MDsO3QOBTYajwT8J0JlRdgMdBrMEcEkIqLCbc0OSfSiRQ==} dev: true - /@types/node/12.20.55: + /@types/node@12.20.55: resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} - /@types/node/14.18.42: + /@types/node@14.18.42: resolution: {integrity: sha512-xefu+RBie4xWlK8hwAzGh3npDz/4VhF6icY/shU+zv/1fNn+ZVG7T7CRwe9LId9sAYRPxI+59QBPuKL3WpyGRg==} - /@types/node/16.11.7: + /@types/node@16.11.7: resolution: {integrity: sha512-QB5D2sqfSjCmTuWcBWyJ+/44bcjO7VbjSbOE0ucoVbAsSNQc4Lt6QkgkVXkTDwkL4z/beecZNDvVX15D4P8Jbw==} - /@types/node/17.0.45: + /@types/node@17.0.45: resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==} dev: true - /@types/node/18.15.11: + /@types/node@18.15.11: resolution: {integrity: sha512-E5Kwq2n4SbMzQOn6wnmBjuK9ouqlURrcZDVfbo9ftDDTFt3nk7ZKK4GMOzoYgnpQJKcxwQw+lGaBvvlMo0qN/Q==} dev: true - /@types/node/18.18.5: + /@types/node@18.18.5: resolution: {integrity: sha512-4slmbtwV59ZxitY4ixUZdy1uRLf9eSIvBWPQxNjhHYWEtn0FryfKpyS2cvADYXTayWdKEIsJengncrVvkI4I6A==} - /@types/node/20.4.7: + /@types/node@20.4.7: resolution: {integrity: sha512-bUBrPjEry2QUTsnuEjzjbS7voGWCc30W0qzgMf90GPeDGFRakvrz47ju+oqDAKCXLUCe39u57/ORMl/O/04/9g==} + requiresBuild: true dev: true optional: true - /@types/nodemailer/6.4.11: + /@types/nodemailer@6.4.11: resolution: {integrity: sha512-Ld2c0frwpGT4VseuoeboCXQ7UJIkK3X7Lx/4YsZEiUHtHsthWAOCYtf6PAiLhMtfwV0cWJRabLBS3+LD8x6Nrw==} dependencies: '@types/node': 14.18.42 dev: true - /@types/nodemailer/6.4.7: + /@types/nodemailer@6.4.7: resolution: {integrity: sha512-f5qCBGAn/f0qtRcd4SEn88c8Fp3Swct1731X4ryPKqS61/A3LmmzN8zaEz7hneJvpjFbUUgY7lru/B/7ODTazg==} dependencies: '@types/node': 14.18.42 dev: true - /@types/normalize-package-data/2.4.1: + /@types/normalize-package-data@2.4.1: resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} dev: true - /@types/oauth/0.9.1: + /@types/oauth@0.9.1: resolution: {integrity: sha512-a1iY62/a3yhZ7qH7cNUsxoI3U/0Fe9+RnuFrpTKr+0WVOzbKlSLojShCKe20aOD1Sppv+i8Zlq0pLDuTJnwS4A==} dependencies: '@types/node': 14.18.42 dev: true - /@types/parse-json/4.0.0: + /@types/parse-json@4.0.0: resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==} - /@types/passport-github/1.1.7: + /@types/passport-github@1.1.7: resolution: {integrity: sha512-CCBwZyBRy3fLOd96Idn00TLHMDXZIzUGXq+gSvB70h8k4j61dkbZCI6m5ZauL+hLdyJur7Z94tdfd8DBjFA0og==} dependencies: '@types/express': 4.17.17 @@ -20435,7 +21660,7 @@ packages: '@types/passport-oauth2': 1.4.12 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.17 @@ -20443,7 +21668,7 @@ packages: '@types/passport-strategy': 0.2.35 dev: true - /@types/passport-oauth2/1.4.12: + /@types/passport-oauth2@1.4.12: resolution: {integrity: sha512-RZg6cYTyEGinrZn/7REYQds6zrTxoBorX1/fdaz5UHzkG8xdFE7QQxkJagCr2ETzGII58FAFDmnmbTUVMrltNA==} dependencies: '@types/express': 4.17.17 @@ -20451,49 +21676,49 @@ packages: '@types/passport': 1.0.12 dev: true - /@types/passport-strategy/0.2.35: + /@types/passport-strategy@0.2.35: resolution: {integrity: sha512-o5D19Jy2XPFoX2rKApykY15et3Apgax00RRLf0RUotPDUsYrQa7x4howLYr9El2mlUApHmCMv5CZ1IXqKFQ2+g==} dependencies: '@types/express': 4.17.17 '@types/passport': 1.0.12 dev: true - /@types/passport/1.0.12: + /@types/passport@1.0.12: resolution: {integrity: sha512-QFdJ2TiAEoXfEQSNDISJR1Tm51I78CymqcBa8imbjo6dNNu+l2huDxxbDEIoFIwOSKMkOfHEikyDuZ38WwWsmw==} dependencies: '@types/express': 4.17.17 dev: true - /@types/prettier/2.7.2: + /@types/prettier@2.7.2: resolution: {integrity: sha512-KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg==} - /@types/pretty-hrtime/1.0.1: + /@types/pretty-hrtime@1.0.1: resolution: {integrity: sha512-VjID5MJb1eGKthz2qUerWT8+R4b9N+CHvGCzg9fn4kWZgaF9AhdYikQio3R7wV8YY1NsQKPaCwKz1Yff+aHNUQ==} - /@types/prop-types/15.7.5: + /@types/prop-types@15.7.5: resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==} - /@types/q/1.5.5: + /@types/q@1.5.5: resolution: {integrity: sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ==} - /@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/react-dom/17.0.19: + /@types/react-dom@17.0.19: resolution: {integrity: sha512-PiYG40pnQRdPHnlf7tZnp0aQ6q9tspYr72vD61saO6zFCybLfMqwUCN0va1/P+86DXn18ZWeW30Bk7xlC5eEAQ==} dependencies: '@types/react': 17.0.53 - /@types/react-dom/17.0.20: + /@types/react-dom@17.0.20: resolution: {integrity: sha512-4pzIjSxDueZZ90F52mU3aPoogkHIoSIDG+oQ+wQK7Cy2B9S+MvOqY0uEA/qawKz381qrEDkvpwyt8Bm31I8sbA==} dependencies: '@types/react': 17.0.62 dev: true - /@types/react-router-dom/5.3.3: + /@types/react-router-dom@5.3.3: resolution: {integrity: sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==} dependencies: '@types/history': 4.7.11 @@ -20501,40 +21726,40 @@ packages: '@types/react-router': 5.1.20 dev: true - /@types/react-router/5.1.20: + /@types/react-router@5.1.20: resolution: {integrity: sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q==} dependencies: '@types/history': 4.7.11 '@types/react': 17.0.62 dev: true - /@types/react-table/7.7.14: + /@types/react-table@7.7.14: resolution: {integrity: sha512-TYrv7onCiakaG1uAu/UpQ9FojNEt/4/ht87EgJQaEGFoWV606ZLWUZAcUHzMxgc3v1mywP1cDyz3qB4ho3hWOw==} dependencies: '@types/react': 17.0.62 dev: false - /@types/react/17.0.53: + /@types/react@17.0.53: resolution: {integrity: sha512-1yIpQR2zdYu1Z/dc1OxC+MA6GR240u3gcnP4l6mvj/PJiVaqHsQPmWttsvHsfnhfPbU2FuGmo0wSITPygjBmsw==} dependencies: '@types/prop-types': 15.7.5 '@types/scheduler': 0.16.3 csstype: 3.1.2 - /@types/react/17.0.62: + /@types/react@17.0.62: resolution: {integrity: sha512-eANCyz9DG8p/Vdhr0ZKST8JV12PhH2ACCDYlFw6DIO+D+ca+uP4jtEDEpVqXZrh/uZdXQGwk7whJa3ah5DtyLw==} dependencies: '@types/prop-types': 15.7.5 '@types/scheduler': 0.16.3 csstype: 3.1.2 - /@types/redis/2.8.32: + /@types/redis@2.8.32: resolution: {integrity: sha512-7jkMKxcGq9p242exlbsVzuJb57KqHRhNl4dHoQu2Y5v9bCAbtIXXH0R3HleSQW4CTOqpHIYUW3t6tpUj4BVQ+w==} dependencies: '@types/node': 14.18.42 dev: true - /@types/request/2.48.8: + /@types/request@2.48.8: resolution: {integrity: sha512-whjk1EDJPcAR2kYHRbFl/lKeeKYTi05A15K9bnLInCVroNDCtXce57xKdI0/rQaA3K+6q0eFyUBPmqfSndUZdQ==} dependencies: '@types/caseless': 0.12.2 @@ -20542,77 +21767,78 @@ packages: '@types/tough-cookie': 4.0.2 form-data: 2.5.1 - /@types/resize-observer-browser/0.1.7: + /@types/resize-observer-browser@0.1.7: resolution: {integrity: sha512-G9eN0Sn0ii9PWQ3Vl72jDPgeJwRWhv2Qk/nQkJuWmRmOB4HX3/BhD5SE1dZs/hzPZL/WKnvF0RHdTSG54QJFyg==} dev: false - /@types/resolve/0.0.8: + /@types/resolve@0.0.8: resolution: {integrity: sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ==} dependencies: '@types/node': 14.18.42 dev: true - /@types/resolve/1.17.1: + /@types/resolve@1.17.1: resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==} dependencies: '@types/node': 14.18.42 - /@types/resolve/1.20.2: + /@types/resolve@1.20.2: resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} dev: true - /@types/retry/0.12.0: + /@types/retry@0.12.0: resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==} - /@types/rimraf/3.0.2: + /@types/rimraf@3.0.2: resolution: {integrity: sha512-F3OznnSLAUxFrCEu/L5PY8+ny8DtcFRjx7fZZ9bycvXRi3KPTRS9HOitGZwvPg0juRhXFWIeKX58cnX5YqLohQ==} + requiresBuild: true dependencies: '@types/glob': 8.1.0 '@types/node': 14.18.42 dev: false optional: true - /@types/scheduler/0.16.3: + /@types/scheduler@0.16.3: resolution: {integrity: sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==} - /@types/semver/7.3.13: + /@types/semver@7.3.13: resolution: {integrity: sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==} - /@types/serve-index/1.9.1: + /@types/serve-index@1.9.1: resolution: {integrity: sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==} dependencies: '@types/express': 4.17.17 - /@types/serve-static/1.15.1: + /@types/serve-static@1.15.1: resolution: {integrity: sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ==} dependencies: '@types/mime': 3.0.1 '@types/node': 14.18.42 - /@types/sinon/9.0.11: + /@types/sinon@9.0.11: resolution: {integrity: sha512-PwP4UY33SeeVKodNE37ZlOsR9cReypbMJOhZ7BVE0lB+Hix3efCOxiJWiE5Ia+yL9Cn2Ch72EjFTRze8RZsNtg==} dependencies: '@types/sinonjs__fake-timers': 8.1.2 dev: true - /@types/sinonjs__fake-timers/8.1.1: + /@types/sinonjs__fake-timers@8.1.1: resolution: {integrity: sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==} - /@types/sinonjs__fake-timers/8.1.2: + /@types/sinonjs__fake-timers@8.1.2: resolution: {integrity: sha512-9GcLXF0/v3t80caGs5p2rRfkB+a8VBGLJZVih6CNFkx8IZ994wiKKLSRs9nuFwk1HevWs/1mnUmkApGrSGsShA==} dev: true - /@types/sizzle/2.3.3: + /@types/sizzle@2.3.3: resolution: {integrity: sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ==} - /@types/smtp-server/3.5.7: + /@types/smtp-server@3.5.7: resolution: {integrity: sha512-8HtcCeN1DCu3P3D4unfRlwRT2sM54PQSBnfwCf6HZl4CH234lTvTJxKXvZtcJajg8mCgiSLkJ6rratEhxgvhqQ==} dependencies: '@types/node': 14.18.42 '@types/nodemailer': 6.4.7 dev: true - /@types/socket.io/3.0.2: + /@types/socket.io@3.0.2: resolution: {integrity: sha512-pu0sN9m5VjCxBZVK8hW37ZcMe8rjn4HHggBN5CbaRTvFwv5jOmuIRZEuddsBPa9Th0ts0SIo3Niukq+95cMBbQ==} deprecated: This is a stub types definition. socket.io provides its own type definitions, so you do not need this installed. dependencies: @@ -20624,100 +21850,100 @@ packages: - utf-8-validate dev: true - /@types/sockjs/0.3.33: + /@types/sockjs@0.3.33: resolution: {integrity: sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==} dependencies: '@types/node': 14.18.42 - /@types/source-list-map/0.1.2: + /@types/source-list-map@0.1.2: resolution: {integrity: sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==} dev: false - /@types/sparkpost/2.1.5: + /@types/sparkpost@2.1.5: resolution: {integrity: sha512-slFiL0mZdnMRhCV4pJE7g2K775W1XhiEeAUt5WWTBoMpxIxRpEqJVEeOkcMLaXD89Q/Pja24w5/NUE5be+uORw==} dependencies: '@types/node': 14.18.42 '@types/request': 2.48.8 dev: true - /@types/ssri/7.1.1: + /@types/ssri@7.1.1: resolution: {integrity: sha512-DPP/jkDaqGiyU75MyMURxLWyYLwKSjnAuGe9ZCsLp9QZOpXmDfuevk769F0BS86TmRuD5krnp06qw9nSoNO+0g==} dependencies: '@types/node': 14.18.42 dev: true - /@types/stack-utils/2.0.1: + /@types/stack-utils@2.0.1: resolution: {integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==} - /@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': 14.18.42 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/tapable/1.0.8: + /@types/tapable@1.0.8: resolution: {integrity: sha512-ipixuVrh2OdNmauvtT51o3d8z12p6LtFW9in7U79der/kwejjdNchQC5UMn5u/KxNoM7VHHOs/l8KS8uHxhODQ==} dev: false - /@types/testing-library__jest-dom/5.14.5: + /@types/testing-library__jest-dom@5.14.5: resolution: {integrity: sha512-SBwbxYoyPIvxHbeHxTZX2Pe/74F/tX2/D3mMvzabdeJ25bBojfW0TyB8BHrbq/9zaaKICJZjLP+8r6AeZMFCuQ==} dependencies: '@types/jest': 29.5.2 dev: true - /@types/through/0.0.30: + /@types/through@0.0.30: resolution: {integrity: sha512-FvnCJljyxhPM3gkRgWmxmDZyAQSiBQQWLI0A0VFL0K7W1oRUrPJSqNO0NvTnLkBcotdlp3lKvaT0JrnyRDkzOg==} dependencies: '@types/node': 14.18.42 dev: true - /@types/tinycolor2/1.4.3: + /@types/tinycolor2@1.4.3: resolution: {integrity: sha512-Kf1w9NE5HEgGxCRyIcRXR/ZYtDv0V8FVPtYHwLxl0O+maGX0erE77pQlD0gpP+/KByMZ87mOA79SjifhSB3PjQ==} - /@types/tough-cookie/4.0.2: + /@types/tough-cookie@4.0.2: resolution: {integrity: sha512-Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw==} - /@types/triple-beam/1.3.2: + /@types/triple-beam@1.3.2: resolution: {integrity: sha512-txGIh+0eDFzKGC25zORnswy+br1Ha7hj5cMVwKIU7+s0U2AxxJru/jZSMU6OC9MJWP6+pc/hc6ZjyZShpsyY2g==} dev: false - /@types/trusted-types/2.0.3: + /@types/trusted-types@2.0.3: resolution: {integrity: sha512-NfQ4gyz38SL8sDNrSixxU2Os1a5xcdFxipAFxYEuLUlvU2uDwS4NUpsImcf1//SlWItCVMMLiylsxbmNMToV/g==} - /@types/tunnel/0.0.3: + /@types/tunnel@0.0.3: resolution: {integrity: sha512-sOUTGn6h1SfQ+gbgqC364jLFBw2lnFqkgF3q0WovEHRLMrVD1sd5aufqi/aJObLekJO+Aq5z646U4Oxy6shXMA==} dependencies: '@types/node': 14.18.42 dev: false - /@types/uglify-js/3.17.2: + /@types/uglify-js@3.17.2: resolution: {integrity: sha512-9SjrHO54LINgC/6Ehr81NjAxAYvwEZqjUHLjJYvC4Nmr9jbLQCIZbWSvl4vXQkkmR1UAuaKDycau3O1kWGFyXQ==} dependencies: source-map: 0.6.1 dev: false - /@types/unist/2.0.6: + /@types/unist@2.0.6: resolution: {integrity: sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==} - /@types/uuid/8.3.4: + /@types/uuid@8.3.4: resolution: {integrity: sha512-c/I8ZRb51j+pYGAu5CrFMRxqZ2ke4y2grEBO5AUjgSkSk+qT2Ea+OdWElz/OiMf5MNpn2b17kuVBwZLQJXzihw==} dev: true - /@types/validator/13.7.14: + /@types/validator@13.7.14: resolution: {integrity: sha512-J6OAed6rhN6zyqL9Of6ZMamhlsOEU/poBVvbHr/dKOYKTeuYYMlDkMv+b6UUV0o2i0tw73cgyv/97WTWaUl0/g==} - /@types/webidl-conversions/7.0.0: + /@types/webidl-conversions@7.0.0: resolution: {integrity: sha512-xTE1E+YF4aWPJJeUzaZI5DRntlkY3+BCVJi0axFptnjGmAoWxkyREIh/XMrfxVLejwQxMCfDXdICo0VLxThrog==} dev: false - /@types/webpack-sources/3.2.0: + /@types/webpack-sources@3.2.0: resolution: {integrity: sha512-Ft7YH3lEVRQ6ls8k4Ff1oB4jN6oy/XmU6tQISKdhfh+1mR+viZFphS6WL0IrtDOzvefmJg5a0s7ZQoRXwqTEFg==} dependencies: '@types/node': 14.18.42 @@ -20725,7 +21951,7 @@ packages: source-map: 0.7.4 dev: false - /@types/webpack/4.41.33: + /@types/webpack@4.41.33: resolution: {integrity: sha512-PPajH64Ft2vWevkerISMtnZ8rTs4YmRbs+23c402J0INmxDKCrhZNvwZYtzx96gY2wAtXdrK1BS2fiC8MlLr3g==} dependencies: '@types/node': 14.18.42 @@ -20736,54 +21962,54 @@ packages: source-map: 0.6.1 dev: false - /@types/whatwg-url/8.2.2: + /@types/whatwg-url@8.2.2: resolution: {integrity: sha512-FtQu10RWgn3D9U4aazdwIE2yzphmTJREDqNdODHrbrZmmMqI0vMheC/6NE/J1Yveaj8H+ela+YwWTjq5PGmuhA==} dependencies: '@types/node': 14.18.42 '@types/webidl-conversions': 7.0.0 dev: false - /@types/ws/8.5.4: + /@types/ws@8.5.4: resolution: {integrity: sha512-zdQDHKUgcX/zBc4GrwsE/7dVdAD8JR4EuiAXiiUhhfyIJXXb2+PrGshFyeXWQPMmmZ2XxgaqclgpIC7eTXc1mg==} dependencies: '@types/node': 14.18.42 - /@types/yargs-parser/21.0.0: + /@types/yargs-parser@21.0.0: resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==} - /@types/yargs/13.0.12: + /@types/yargs@13.0.12: resolution: {integrity: sha512-qCxJE1qgz2y0hA4pIxjBR+PelCH0U5CK1XJXFwCNqfmliatKp47UCXXE9Dyk1OXBDLvsCF57TqQEJaeLfDYEOQ==} dependencies: '@types/yargs-parser': 21.0.0 dev: true - /@types/yargs/15.0.15: + /@types/yargs@15.0.15: resolution: {integrity: sha512-IziEYMU9XoVj8hWg7k+UJrXALkGFjWJhn5QFEv9q4p+v40oZhSuC135M38st8XPjICL7Ey4TV64ferBGUoJhBg==} dependencies: '@types/yargs-parser': 21.0.0 - /@types/yargs/16.0.5: + /@types/yargs@16.0.5: resolution: {integrity: sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==} dependencies: '@types/yargs-parser': 21.0.0 - /@types/yargs/17.0.24: + /@types/yargs@17.0.24: resolution: {integrity: sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==} dependencies: '@types/yargs-parser': 21.0.0 - /@types/yauzl/2.10.0: + /@types/yauzl@2.10.0: resolution: {integrity: sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==} requiresBuild: true dependencies: '@types/node': 14.18.42 optional: true - /@types/zen-observable/0.8.3: + /@types/zen-observable@0.8.3: resolution: {integrity: sha512-fbF6oTd4sGGy0xjHPKAt+eS2CrxJ3+6gQ3FGcBoIJR2TLAyCkCyI8JqZNy+FeON0AhVgNJoUumVoZQjBFUqHkw==} dev: true - /@typescript-eslint/eslint-plugin/5.58.0_4k4x3vcwojrtyn7g4vcbgdgr5y: + /@typescript-eslint/eslint-plugin@5.58.0(@typescript-eslint/parser@5.58.0)(eslint@8.38.0)(typescript@4.9.5): resolution: {integrity: sha512-vxHvLhH0qgBd3/tW6/VccptSfc8FxPQIkmNTVLWcCOVqSBvqpnKkBTYrhcGlXfSnd78azwe+PsjYFj0X34/njA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -20795,22 +22021,23 @@ packages: optional: true dependencies: '@eslint-community/regexpp': 4.5.0 - '@typescript-eslint/parser': 5.58.0_cgvy6hrg3pjeapqw5wnuqcmdo4 + '@typescript-eslint/parser': 5.58.0(eslint@8.38.0)(typescript@4.9.5) '@typescript-eslint/scope-manager': 5.58.0 - '@typescript-eslint/type-utils': 5.58.0_cgvy6hrg3pjeapqw5wnuqcmdo4 - '@typescript-eslint/utils': 5.58.0_cgvy6hrg3pjeapqw5wnuqcmdo4 - debug: 4.3.4 - eslint: 8.48.0 + '@typescript-eslint/type-utils': 5.58.0(eslint@8.38.0)(typescript@4.9.5) + '@typescript-eslint/utils': 5.58.0(eslint@8.38.0)(typescript@4.9.5) + debug: 4.3.4(supports-color@8.1.1) + eslint: 8.38.0 grapheme-splitter: 1.0.4 ignore: 5.2.4 natural-compare-lite: 1.4.0 semver: 7.5.4 - tsutils: 3.21.0_typescript@4.9.5 + tsutils: 3.21.0(typescript@4.9.5) typescript: 4.9.5 transitivePeerDependencies: - supports-color + dev: true - /@typescript-eslint/eslint-plugin/5.58.0_hzv37tkb63et4viajosjuuyxgi: + /@typescript-eslint/eslint-plugin@5.58.0(@typescript-eslint/parser@5.58.0)(eslint@8.48.0)(typescript@4.9.5): resolution: {integrity: sha512-vxHvLhH0qgBd3/tW6/VccptSfc8FxPQIkmNTVLWcCOVqSBvqpnKkBTYrhcGlXfSnd78azwe+PsjYFj0X34/njA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -20822,23 +22049,22 @@ packages: optional: true dependencies: '@eslint-community/regexpp': 4.5.0 - '@typescript-eslint/parser': 5.58.0_ze6bmax3gcsfve3yrzu6npguhe + '@typescript-eslint/parser': 5.58.0(eslint@8.48.0)(typescript@4.9.5) '@typescript-eslint/scope-manager': 5.58.0 - '@typescript-eslint/type-utils': 5.58.0_ze6bmax3gcsfve3yrzu6npguhe - '@typescript-eslint/utils': 5.58.0_ze6bmax3gcsfve3yrzu6npguhe - debug: 4.3.4 - eslint: 8.38.0 + '@typescript-eslint/type-utils': 5.58.0(eslint@8.48.0)(typescript@4.9.5) + '@typescript-eslint/utils': 5.58.0(eslint@8.48.0)(typescript@4.9.5) + debug: 4.3.4(supports-color@8.1.1) + eslint: 8.48.0 grapheme-splitter: 1.0.4 ignore: 5.2.4 natural-compare-lite: 1.4.0 semver: 7.5.4 - tsutils: 3.21.0_typescript@4.9.5 + tsutils: 3.21.0(typescript@4.9.5) typescript: 4.9.5 transitivePeerDependencies: - supports-color - dev: true - /@typescript-eslint/experimental-utils/4.33.0_ze6bmax3gcsfve3yrzu6npguhe: + /@typescript-eslint/experimental-utils@4.33.0(eslint@8.38.0)(typescript@4.9.5): resolution: {integrity: sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -20847,28 +22073,28 @@ packages: '@types/json-schema': 7.0.12 '@typescript-eslint/scope-manager': 4.33.0 '@typescript-eslint/types': 4.33.0 - '@typescript-eslint/typescript-estree': 4.33.0_typescript@4.9.5 + '@typescript-eslint/typescript-estree': 4.33.0(typescript@4.9.5) eslint: 8.38.0 eslint-scope: 5.1.1 - eslint-utils: 3.0.0_eslint@8.38.0 + eslint-utils: 3.0.0(eslint@8.38.0) transitivePeerDependencies: - supports-color - typescript dev: true - /@typescript-eslint/experimental-utils/5.58.0_cgvy6hrg3pjeapqw5wnuqcmdo4: + /@typescript-eslint/experimental-utils@5.58.0(eslint@8.48.0)(typescript@4.9.5): resolution: {integrity: sha512-LA/sRPaynZlrlYxdefrZbMx8dqs/1Kc0yNG+XOk5CwwZx7tTv263ix3AJNioF0YBVt7hADpAUR20owl6pv4MIQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: - '@typescript-eslint/utils': 5.58.0_cgvy6hrg3pjeapqw5wnuqcmdo4 + '@typescript-eslint/utils': 5.58.0(eslint@8.48.0)(typescript@4.9.5) eslint: 8.48.0 transitivePeerDependencies: - supports-color - typescript - /@typescript-eslint/parser/4.33.0_jofidmxrjzhj7l6vknpw5ecvfe: + /@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5): resolution: {integrity: sha512-ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -20880,15 +22106,15 @@ packages: dependencies: '@typescript-eslint/scope-manager': 4.33.0 '@typescript-eslint/types': 4.33.0 - '@typescript-eslint/typescript-estree': 4.33.0_typescript@4.9.5 - debug: 4.3.4 + '@typescript-eslint/typescript-estree': 4.33.0(typescript@4.9.5) + debug: 4.3.4(supports-color@8.1.1) eslint: 7.32.0 typescript: 4.9.5 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/parser/5.58.0_cgvy6hrg3pjeapqw5wnuqcmdo4: + /@typescript-eslint/parser@5.58.0(eslint@8.38.0)(typescript@4.9.5): resolution: {integrity: sha512-ixaM3gRtlfrKzP8N6lRhBbjTow1t6ztfBvQNGuRM8qH1bjFFXIJ35XY+FC0RRBKn3C6cT+7VW1y8tNm7DwPHDQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -20900,14 +22126,14 @@ packages: dependencies: '@typescript-eslint/scope-manager': 5.58.0 '@typescript-eslint/types': 5.58.0 - '@typescript-eslint/typescript-estree': 5.58.0_typescript@4.9.5 - debug: 4.3.4 - eslint: 8.48.0 + '@typescript-eslint/typescript-estree': 5.58.0(typescript@4.9.5) + debug: 4.3.4(supports-color@8.1.1) + eslint: 8.38.0 typescript: 4.9.5 transitivePeerDependencies: - supports-color - /@typescript-eslint/parser/5.58.0_ze6bmax3gcsfve3yrzu6npguhe: + /@typescript-eslint/parser@5.58.0(eslint@8.48.0)(typescript@4.9.5): resolution: {integrity: sha512-ixaM3gRtlfrKzP8N6lRhBbjTow1t6ztfBvQNGuRM8qH1bjFFXIJ35XY+FC0RRBKn3C6cT+7VW1y8tNm7DwPHDQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -20919,15 +22145,14 @@ packages: dependencies: '@typescript-eslint/scope-manager': 5.58.0 '@typescript-eslint/types': 5.58.0 - '@typescript-eslint/typescript-estree': 5.58.0_typescript@4.9.5 - debug: 4.3.4 - eslint: 8.38.0 + '@typescript-eslint/typescript-estree': 5.58.0(typescript@4.9.5) + debug: 4.3.4(supports-color@8.1.1) + eslint: 8.48.0 typescript: 4.9.5 transitivePeerDependencies: - supports-color - dev: true - /@typescript-eslint/scope-manager/4.33.0: + /@typescript-eslint/scope-manager@4.33.0: resolution: {integrity: sha512-5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ==} engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} dependencies: @@ -20935,14 +22160,14 @@ packages: '@typescript-eslint/visitor-keys': 4.33.0 dev: true - /@typescript-eslint/scope-manager/5.58.0: + /@typescript-eslint/scope-manager@5.58.0: resolution: {integrity: sha512-b+w8ypN5CFvrXWQb9Ow9T4/6LC2MikNf1viLkYTiTbkQl46CnR69w7lajz1icW0TBsYmlpg+mRzFJ4LEJ8X9NA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: '@typescript-eslint/types': 5.58.0 '@typescript-eslint/visitor-keys': 5.58.0 - /@typescript-eslint/type-utils/5.58.0_cgvy6hrg3pjeapqw5wnuqcmdo4: + /@typescript-eslint/type-utils@5.58.0(eslint@8.38.0)(typescript@4.9.5): resolution: {integrity: sha512-FF5vP/SKAFJ+LmR9PENql7fQVVgGDOS+dq3j+cKl9iW/9VuZC/8CFmzIP0DLKXfWKpRHawJiG70rVH+xZZbp8w==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -20952,16 +22177,17 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/typescript-estree': 5.58.0_typescript@4.9.5 - '@typescript-eslint/utils': 5.58.0_cgvy6hrg3pjeapqw5wnuqcmdo4 - debug: 4.3.4 - eslint: 8.48.0 - tsutils: 3.21.0_typescript@4.9.5 + '@typescript-eslint/typescript-estree': 5.58.0(typescript@4.9.5) + '@typescript-eslint/utils': 5.58.0(eslint@8.38.0)(typescript@4.9.5) + debug: 4.3.4(supports-color@8.1.1) + eslint: 8.38.0 + tsutils: 3.21.0(typescript@4.9.5) typescript: 4.9.5 transitivePeerDependencies: - supports-color + dev: true - /@typescript-eslint/type-utils/5.58.0_ze6bmax3gcsfve3yrzu6npguhe: + /@typescript-eslint/type-utils@5.58.0(eslint@8.48.0)(typescript@4.9.5): resolution: {integrity: sha512-FF5vP/SKAFJ+LmR9PENql7fQVVgGDOS+dq3j+cKl9iW/9VuZC/8CFmzIP0DLKXfWKpRHawJiG70rVH+xZZbp8w==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -20971,26 +22197,25 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/typescript-estree': 5.58.0_typescript@4.9.5 - '@typescript-eslint/utils': 5.58.0_ze6bmax3gcsfve3yrzu6npguhe - debug: 4.3.4 - eslint: 8.38.0 - tsutils: 3.21.0_typescript@4.9.5 + '@typescript-eslint/typescript-estree': 5.58.0(typescript@4.9.5) + '@typescript-eslint/utils': 5.58.0(eslint@8.48.0)(typescript@4.9.5) + debug: 4.3.4(supports-color@8.1.1) + eslint: 8.48.0 + tsutils: 3.21.0(typescript@4.9.5) typescript: 4.9.5 transitivePeerDependencies: - supports-color - dev: true - /@typescript-eslint/types/4.33.0: + /@typescript-eslint/types@4.33.0: resolution: {integrity: sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==} engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} dev: true - /@typescript-eslint/types/5.58.0: + /@typescript-eslint/types@5.58.0: resolution: {integrity: sha512-JYV4eITHPzVQMnHZcYJXl2ZloC7thuUHrcUmxtzvItyKPvQ50kb9QXBkgNAt90OYMqwaodQh2kHutWZl1fc+1g==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - /@typescript-eslint/typescript-estree/4.33.0_typescript@4.9.5: + /@typescript-eslint/typescript-estree@4.33.0(typescript@4.9.5): resolution: {integrity: sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -21001,17 +22226,17 @@ packages: dependencies: '@typescript-eslint/types': 4.33.0 '@typescript-eslint/visitor-keys': 4.33.0 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) globby: 11.1.0 is-glob: 4.0.3 semver: 7.5.4 - tsutils: 3.21.0_typescript@4.9.5 + tsutils: 3.21.0(typescript@4.9.5) typescript: 4.9.5 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/typescript-estree/5.58.0_typescript@4.9.5: + /@typescript-eslint/typescript-estree@5.58.0(typescript@4.9.5): resolution: {integrity: sha512-cRACvGTodA+UxnYM2uwA2KCwRL7VAzo45syNysqlMyNyjw0Z35Icc9ihPJZjIYuA5bXJYiJ2YGUB59BqlOZT1Q==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -21022,55 +22247,55 @@ packages: dependencies: '@typescript-eslint/types': 5.58.0 '@typescript-eslint/visitor-keys': 5.58.0 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) globby: 11.1.0 is-glob: 4.0.3 semver: 7.5.4 - tsutils: 3.21.0_typescript@4.9.5 + tsutils: 3.21.0(typescript@4.9.5) typescript: 4.9.5 transitivePeerDependencies: - supports-color - /@typescript-eslint/utils/5.58.0_cgvy6hrg3pjeapqw5wnuqcmdo4: + /@typescript-eslint/utils@5.58.0(eslint@8.38.0)(typescript@4.9.5): resolution: {integrity: sha512-gAmLOTFXMXOC+zP1fsqm3VceKSBQJNzV385Ok3+yzlavNHZoedajjS4UyS21gabJYcobuigQPs/z71A9MdJFqQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: - '@eslint-community/eslint-utils': 4.4.0_eslint@8.48.0 + '@eslint-community/eslint-utils': 4.4.0(eslint@8.38.0) '@types/json-schema': 7.0.12 '@types/semver': 7.3.13 '@typescript-eslint/scope-manager': 5.58.0 '@typescript-eslint/types': 5.58.0 - '@typescript-eslint/typescript-estree': 5.58.0_typescript@4.9.5 - eslint: 8.48.0 + '@typescript-eslint/typescript-estree': 5.58.0(typescript@4.9.5) + eslint: 8.38.0 eslint-scope: 5.1.1 semver: 7.5.4 transitivePeerDependencies: - supports-color - typescript + dev: true - /@typescript-eslint/utils/5.58.0_ze6bmax3gcsfve3yrzu6npguhe: + /@typescript-eslint/utils@5.58.0(eslint@8.48.0)(typescript@4.9.5): resolution: {integrity: sha512-gAmLOTFXMXOC+zP1fsqm3VceKSBQJNzV385Ok3+yzlavNHZoedajjS4UyS21gabJYcobuigQPs/z71A9MdJFqQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: - '@eslint-community/eslint-utils': 4.4.0_eslint@8.38.0 + '@eslint-community/eslint-utils': 4.4.0(eslint@8.48.0) '@types/json-schema': 7.0.12 '@types/semver': 7.3.13 '@typescript-eslint/scope-manager': 5.58.0 '@typescript-eslint/types': 5.58.0 - '@typescript-eslint/typescript-estree': 5.58.0_typescript@4.9.5 - eslint: 8.38.0 + '@typescript-eslint/typescript-estree': 5.58.0(typescript@4.9.5) + eslint: 8.48.0 eslint-scope: 5.1.1 semver: 7.5.4 transitivePeerDependencies: - supports-color - typescript - dev: true - /@typescript-eslint/visitor-keys/4.33.0: + /@typescript-eslint/visitor-keys@4.33.0: resolution: {integrity: sha512-uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg==} engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} dependencies: @@ -21078,22 +22303,22 @@ packages: eslint-visitor-keys: 2.1.0 dev: true - /@typescript-eslint/visitor-keys/5.58.0: + /@typescript-eslint/visitor-keys@5.58.0: resolution: {integrity: sha512-/fBraTlPj0jwdyTwLyrRTxv/3lnU2H96pNTVM6z3esTWLtA5MZ9ghSMJ7Rb+TtUAdtEw9EyJzJ0EydIMKxQ9gA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: '@typescript-eslint/types': 5.58.0 eslint-visitor-keys: 3.4.3 - /@tyriar/fibonacci-heap/2.0.9: + /@tyriar/fibonacci-heap@2.0.9: resolution: {integrity: sha512-bYuSNomfn4hu2tPiDN+JZtnzCpSpbJ/PNeulmocDy3xN2X5OkJL65zo6rPZp65cPPhLF9vfT/dgE+RtFRCSxOA==} dev: false - /@ungap/promise-all-settled/1.1.2: + /@ungap/promise-all-settled@1.1.2: resolution: {integrity: sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q==} dev: true - /@vitejs/plugin-vue-jsx/3.0.1_vite@4.4.9+vue@3.2.47: + /@vitejs/plugin-vue-jsx@3.0.1(vite@4.4.9)(vue@3.2.47): resolution: {integrity: sha512-+Jb7ggL48FSPS1uhPnJbJwWa9Sr90vQ+d0InW+AhBM22n+cfuYqJZDckBc+W3QSHe1WDvewMZfa4wZOtk5pRgw==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: @@ -21101,44 +22326,44 @@ packages: vue: ^3.0.0 dependencies: '@babel/core': 7.21.4 - '@babel/plugin-transform-typescript': 7.21.3_@babel+core@7.21.4 - '@vue/babel-plugin-jsx': 1.1.1_@babel+core@7.21.4 - vite: 4.4.9_@types+node@18.15.11 + '@babel/plugin-transform-typescript': 7.21.3(@babel/core@7.21.4) + '@vue/babel-plugin-jsx': 1.1.1(@babel/core@7.21.4) + vite: 4.4.9(@types/node@18.15.11) vue: 3.2.47 transitivePeerDependencies: - supports-color dev: true - /@vitejs/plugin-vue/4.1.0_vite@4.4.9+vue@3.2.47: + /@vitejs/plugin-vue@4.1.0(vite@4.4.9)(vue@3.2.47): resolution: {integrity: sha512-++9JOAFdcXI3lyer9UKUV4rfoQ3T1RN8yDqoCLar86s0xQct5yblxAE+yWgRnU5/0FOlVCpTZpYSBV/bGWrSrQ==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: vite: ^4.0.0 vue: ^3.2.25 dependencies: - vite: 4.4.9_@types+node@18.15.11 + vite: 4.4.9(@types/node@18.15.11) vue: 3.2.47 dev: true - /@volar/language-core/1.3.0-alpha.0: + /@volar/language-core@1.3.0-alpha.0: resolution: {integrity: sha512-W3uMzecHPcbwddPu4SJpUcPakRBK/y/BP+U0U6NiPpUX1tONLC4yCawt+QBJqtgJ+sfD6ztf5PyvPL3hQRqfOA==} dependencies: '@volar/source-map': 1.3.0-alpha.0 dev: true - /@volar/source-map/1.3.0-alpha.0: + /@volar/source-map@1.3.0-alpha.0: resolution: {integrity: sha512-jSdizxWFvDTvkPYZnO6ew3sBZUnS0abKCbuopkc0JrIlFbznWC/fPH3iPFIMS8/IIkRxq1Jh9VVG60SmtsdaMQ==} dependencies: muggle-string: 0.2.2 dev: true - /@volar/typescript/1.3.0-alpha.0: + /@volar/typescript@1.3.0-alpha.0: resolution: {integrity: sha512-5UItyW2cdH2mBLu4RrECRNJRgtvvzKrSCn2y3v/D61QwIDkGx4aeil6x8RFuUL5TFtV6QvVHXnsOHxNgd+sCow==} dependencies: '@volar/language-core': 1.3.0-alpha.0 dev: true - /@volar/vue-language-core/1.2.0: + /@volar/vue-language-core@1.2.0: resolution: {integrity: sha512-w7yEiaITh2WzKe6u8ZdeLKCUz43wdmY/OqAmsB/PGDvvhTcVhCJ6f0W/RprZL1IhqH8wALoWiwEh/Wer7ZviMQ==} dependencies: '@volar/language-core': 1.3.0-alpha.0 @@ -21152,14 +22377,14 @@ packages: vue-template-compiler: 2.7.14 dev: true - /@volar/vue-typescript/1.2.0: + /@volar/vue-typescript@1.2.0: resolution: {integrity: sha512-zjmRi9y3J1EkG+pfuHp8IbHmibihrKK485cfzsHjiuvJMGrpkWvlO5WVEk8oslMxxeGC5XwBFE9AOlvh378EPA==} dependencies: '@volar/typescript': 1.3.0-alpha.0 '@volar/vue-language-core': 1.2.0 dev: true - /@vonage/server-sdk/2.11.3: + /@vonage/server-sdk@2.11.3: resolution: {integrity: sha512-0kZNREJGMFRaJtGV0NG5CTRQCvB6h8OI62qK1uiNJhfu4HJtzxM2iIBpT/OXwD3kmsRQhY98T09Mgf5xkfJUvA==} dependencies: jsonwebtoken: 9.0.0 @@ -21168,15 +22393,15 @@ packages: uuid: 8.3.2 dev: false - /@vue/babel-helper-vue-transform-on/1.0.2: + /@vue/babel-helper-vue-transform-on@1.0.2: resolution: {integrity: sha512-hz4R8tS5jMn8lDq6iD+yWL6XNB699pGIVLk7WSJnn1dbpjaazsjZQkieJoRX6gW5zpYSCFqQ7jUquPNY65tQYA==} dev: true - /@vue/babel-plugin-jsx/1.1.1_@babel+core@7.21.4: + /@vue/babel-plugin-jsx@1.1.1(@babel/core@7.21.4): resolution: {integrity: sha512-j2uVfZjnB5+zkcbc/zsOc0fSNGCMMjaEXP52wdwdIfn0qjFfEYpYZBFKFg+HHnQeJCVrjOeO0YxgaL7DMrym9w==} dependencies: '@babel/helper-module-imports': 7.22.15 - '@babel/plugin-syntax-jsx': 7.22.5_@babel+core@7.21.4 + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.21.4) '@babel/template': 7.22.15 '@babel/traverse': 7.22.11 '@babel/types': 7.22.19 @@ -21189,7 +22414,7 @@ packages: - supports-color dev: true - /@vue/compiler-core/3.2.47: + /@vue/compiler-core@3.2.47: resolution: {integrity: sha512-p4D7FDnQb7+YJmO2iPEv0SQNeNzcbHdGByJDsT4lynf63AFkOTFN07HsiRSvjGo0QrxR/o3d0hUyNCUnBU2Tig==} dependencies: '@babel/parser': 7.22.16 @@ -21197,13 +22422,13 @@ packages: estree-walker: 2.0.2 source-map: 0.6.1 - /@vue/compiler-dom/3.2.47: + /@vue/compiler-dom@3.2.47: resolution: {integrity: sha512-dBBnEHEPoftUiS03a4ggEig74J2YBZ2UIeyfpcRM2tavgMWo4bsEfgCGsu+uJIL/vax9S+JztH8NmQerUo7shQ==} dependencies: '@vue/compiler-core': 3.2.47 '@vue/shared': 3.2.47 - /@vue/compiler-sfc/3.2.47: + /@vue/compiler-sfc@3.2.47: resolution: {integrity: sha512-rog05W+2IFfxjMcFw10tM9+f7i/+FFpZJJ5XHX72NP9eC2uRD+42M3pYcQqDXVYoj74kHMSEdQ/WmCjt8JFksQ==} dependencies: '@babel/parser': 7.22.16 @@ -21217,25 +22442,25 @@ packages: postcss: 8.4.29 source-map: 0.6.1 - /@vue/compiler-ssr/3.2.47: + /@vue/compiler-ssr@3.2.47: resolution: {integrity: sha512-wVXC+gszhulcMD8wpxMsqSOpvDZ6xKXSVWkf50Guf/S+28hTAXPDYRTbLQ3EDkOP5Xz/+SY37YiwDquKbJOgZw==} dependencies: '@vue/compiler-dom': 3.2.47 '@vue/shared': 3.2.47 - /@vue/eslint-config-prettier/7.1.0_7bukkzi2qfqwzn63s5moor2wwy: + /@vue/eslint-config-prettier@7.1.0(eslint@8.38.0)(prettier@2.8.7): resolution: {integrity: sha512-Pv/lVr0bAzSIHLd9iz0KnvAr4GKyCEl+h52bc4e5yWuDVtLgFwycF7nrbWTAQAS+FU6q1geVd07lc6EWfJiWKQ==} peerDependencies: eslint: '>= 7.28.0' prettier: '>= 2.0.0' dependencies: eslint: 8.38.0 - eslint-config-prettier: 8.8.0_eslint@8.38.0 - eslint-plugin-prettier: 4.2.1_mrzcadguhkbme6yx3ehduvsjxu + eslint-config-prettier: 8.8.0(eslint@8.38.0) + eslint-plugin-prettier: 4.2.1(eslint-config-prettier@8.8.0)(eslint@8.38.0)(prettier@2.8.7) prettier: 2.8.7 dev: true - /@vue/eslint-config-typescript/11.0.2_wjfky2tccqcyepzc44bwgbyisq: + /@vue/eslint-config-typescript@11.0.2(eslint-plugin-vue@9.10.0)(eslint@8.38.0)(typescript@4.9.5): resolution: {integrity: sha512-EiKud1NqlWmSapBFkeSrE994qpKx7/27uCGnhdqzllYDpQZroyX/O6bwjEpeuyKamvLbsGdO6PMR2faIf+zFnw==} engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: @@ -21246,17 +22471,17 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/eslint-plugin': 5.58.0_hzv37tkb63et4viajosjuuyxgi - '@typescript-eslint/parser': 5.58.0_ze6bmax3gcsfve3yrzu6npguhe + '@typescript-eslint/eslint-plugin': 5.58.0(@typescript-eslint/parser@5.58.0)(eslint@8.38.0)(typescript@4.9.5) + '@typescript-eslint/parser': 5.58.0(eslint@8.38.0)(typescript@4.9.5) eslint: 8.38.0 - eslint-plugin-vue: 9.10.0_eslint@8.38.0 + eslint-plugin-vue: 9.10.0(eslint@8.38.0) typescript: 4.9.5 - vue-eslint-parser: 9.1.1_eslint@8.38.0 + vue-eslint-parser: 9.1.1(eslint@8.38.0) transitivePeerDependencies: - supports-color dev: true - /@vue/reactivity-transform/3.2.47: + /@vue/reactivity-transform@3.2.47: resolution: {integrity: sha512-m8lGXw8rdnPVVIdIFhf0LeQ/ixyHkH5plYuS83yop5n7ggVJU+z5v0zecwEnX7fa7HNLBhh2qngJJkxpwEEmYA==} dependencies: '@babel/parser': 7.22.16 @@ -21265,25 +22490,25 @@ packages: estree-walker: 2.0.2 magic-string: 0.25.9 - /@vue/reactivity/3.2.47: + /@vue/reactivity@3.2.47: resolution: {integrity: sha512-7khqQ/75oyyg+N/e+iwV6lpy1f5wq759NdlS1fpAhFXa8VeAIKGgk2E/C4VF59lx5b+Ezs5fpp/5WsRYXQiKxQ==} dependencies: '@vue/shared': 3.2.47 - /@vue/runtime-core/3.2.47: + /@vue/runtime-core@3.2.47: resolution: {integrity: sha512-RZxbLQIRB/K0ev0K9FXhNbBzT32H9iRtYbaXb0ZIz2usLms/D55dJR2t6cIEUn6vyhS3ALNvNthI+Q95C+NOpA==} dependencies: '@vue/reactivity': 3.2.47 '@vue/shared': 3.2.47 - /@vue/runtime-dom/3.2.47: + /@vue/runtime-dom@3.2.47: resolution: {integrity: sha512-ArXrFTjS6TsDei4qwNvgrdmHtD930KgSKGhS5M+j8QxXrDJYLqYw4RRcDy1bz1m1wMmb6j+zGLifdVHtkXA7gA==} dependencies: '@vue/runtime-core': 3.2.47 '@vue/shared': 3.2.47 csstype: 2.6.21 - /@vue/server-renderer/3.2.47_vue@3.2.47: + /@vue/server-renderer@3.2.47(vue@3.2.47): resolution: {integrity: sha512-dN9gc1i8EvmP9RCzvneONXsKfBRgqFeFZLurmHOveL7oH6HiFXJw5OGu294n1nHc/HMgTy6LulU/tv5/A7f/LA==} peerDependencies: vue: 3.2.47 @@ -21292,10 +22517,10 @@ packages: '@vue/shared': 3.2.47 vue: 3.2.47 - /@vue/shared/3.2.47: + /@vue/shared@3.2.47: resolution: {integrity: sha512-BHGyyGN3Q97EZx0taMQ+OLNuZcW3d37ZEVmEAyeoA9ERdGvm9Irc/0Fua8SNyOtV1w6BS4q25wbMzJujO9HIfQ==} - /@vue/tsconfig/0.1.3_@types+node@18.15.11: + /@vue/tsconfig@0.1.3(@types/node@18.15.11): resolution: {integrity: sha512-kQVsh8yyWPvHpb8gIc9l/HIDiiVUy1amynLNpCy8p+FoCiZXCo6fQos5/097MmnNZc9AtseDsCrfkhqCrJ8Olg==} peerDependencies: '@types/node': '*' @@ -21306,63 +22531,57 @@ packages: '@types/node': 18.15.11 dev: true - /@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 - /@webassemblyjs/ast/1.11.5: + /@webassemblyjs/ast@1.11.5: resolution: {integrity: sha512-LHY/GSAZZRpsNQH+/oHqhRQ5FT7eoULcBqgfyTB5nQHogFnK3/7QoN7dLnwSE/JkUAF0SrRuclT7ODqMFtWxxQ==} dependencies: '@webassemblyjs/helper-numbers': 1.11.5 '@webassemblyjs/helper-wasm-bytecode': 1.11.5 - dev: true - /@webassemblyjs/floating-point-hex-parser/1.11.1: + /@webassemblyjs/floating-point-hex-parser@1.11.1: resolution: {integrity: sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==} - /@webassemblyjs/floating-point-hex-parser/1.11.5: + /@webassemblyjs/floating-point-hex-parser@1.11.5: resolution: {integrity: sha512-1j1zTIC5EZOtCplMBG/IEwLtUojtwFVwdyVMbL/hwWqbzlQoJsWCOavrdnLkemwNoC/EOwtUFch3fuo+cbcXYQ==} - dev: true - /@webassemblyjs/helper-api-error/1.11.1: + /@webassemblyjs/helper-api-error@1.11.1: resolution: {integrity: sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==} - /@webassemblyjs/helper-api-error/1.11.5: + /@webassemblyjs/helper-api-error@1.11.5: resolution: {integrity: sha512-L65bDPmfpY0+yFrsgz8b6LhXmbbs38OnwDCf6NpnMUYqa+ENfE5Dq9E42ny0qz/PdR0LJyq/T5YijPnU8AXEpA==} - dev: true - /@webassemblyjs/helper-buffer/1.11.1: + /@webassemblyjs/helper-buffer@1.11.1: resolution: {integrity: sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==} - /@webassemblyjs/helper-buffer/1.11.5: + /@webassemblyjs/helper-buffer@1.11.5: resolution: {integrity: sha512-fDKo1gstwFFSfacIeH5KfwzjykIE6ldh1iH9Y/8YkAZrhmu4TctqYjSh7t0K2VyDSXOZJ1MLhht/k9IvYGcIxg==} - 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 - /@webassemblyjs/helper-numbers/1.11.5: + /@webassemblyjs/helper-numbers@1.11.5: resolution: {integrity: sha512-DhykHXM0ZABqfIGYNv93A5KKDw/+ywBFnuWybZZWcuzWHfbp21wUfRkbtz7dMGwGgT4iXjWuhRMA2Mzod6W4WA==} dependencies: '@webassemblyjs/floating-point-hex-parser': 1.11.5 '@webassemblyjs/helper-api-error': 1.11.5 '@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==} - /@webassemblyjs/helper-wasm-bytecode/1.11.5: + /@webassemblyjs/helper-wasm-bytecode@1.11.5: resolution: {integrity: sha512-oC4Qa0bNcqnjAowFn7MPCETQgDYytpsfvz4ujZz63Zu/a/v71HeCAAmZsgZ3YVKec3zSPYytG3/PrRCqbtcAvA==} - 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 @@ -21370,45 +22589,41 @@ packages: '@webassemblyjs/helper-wasm-bytecode': 1.11.1 '@webassemblyjs/wasm-gen': 1.11.1 - /@webassemblyjs/helper-wasm-section/1.11.5: + /@webassemblyjs/helper-wasm-section@1.11.5: resolution: {integrity: sha512-uEoThA1LN2NA+K3B9wDo3yKlBfVtC6rh0i4/6hvbz071E8gTNZD/pT0MsBf7MeD6KbApMSkaAK0XeKyOZC7CIA==} dependencies: '@webassemblyjs/ast': 1.11.5 '@webassemblyjs/helper-buffer': 1.11.5 '@webassemblyjs/helper-wasm-bytecode': 1.11.5 '@webassemblyjs/wasm-gen': 1.11.5 - dev: true - /@webassemblyjs/ieee754/1.11.1: + /@webassemblyjs/ieee754@1.11.1: resolution: {integrity: sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==} dependencies: '@xtuc/ieee754': 1.2.0 - /@webassemblyjs/ieee754/1.11.5: + /@webassemblyjs/ieee754@1.11.5: resolution: {integrity: sha512-37aGq6qVL8A8oPbPrSGMBcp38YZFXcHfiROflJn9jxSdSMMM5dS5P/9e2/TpaJuhE+wFrbukN2WI6Hw9MH5acg==} 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 - /@webassemblyjs/leb128/1.11.5: + /@webassemblyjs/leb128@1.11.5: resolution: {integrity: sha512-ajqrRSXaTJoPW+xmkfYN6l8VIeNnR4vBOTQO9HzR7IygoCcKWkICbKFbVTNMjMgMREqXEr0+2M6zukzM47ZUfQ==} dependencies: '@xtuc/long': 4.2.2 - dev: true - /@webassemblyjs/utf8/1.11.1: + /@webassemblyjs/utf8@1.11.1: resolution: {integrity: sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==} - /@webassemblyjs/utf8/1.11.5: + /@webassemblyjs/utf8@1.11.5: resolution: {integrity: sha512-WiOhulHKTZU5UPlRl53gHR8OxdGsSOxqfpqWeA2FmcwBMaoEdz6b2x2si3IwC9/fSPLfe8pBMRTHVMk5nlwnFQ==} - 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 @@ -21420,7 +22635,7 @@ packages: '@webassemblyjs/wasm-parser': 1.11.1 '@webassemblyjs/wast-printer': 1.11.1 - /@webassemblyjs/wasm-edit/1.11.5: + /@webassemblyjs/wasm-edit@1.11.5: resolution: {integrity: sha512-C0p9D2fAu3Twwqvygvf42iGCQ4av8MFBLiTb+08SZ4cEdwzWx9QeAHDo1E2k+9s/0w1DM40oflJOpkZ8jW4HCQ==} dependencies: '@webassemblyjs/ast': 1.11.5 @@ -21431,9 +22646,8 @@ packages: '@webassemblyjs/wasm-opt': 1.11.5 '@webassemblyjs/wasm-parser': 1.11.5 '@webassemblyjs/wast-printer': 1.11.5 - 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 @@ -21442,7 +22656,7 @@ packages: '@webassemblyjs/leb128': 1.11.1 '@webassemblyjs/utf8': 1.11.1 - /@webassemblyjs/wasm-gen/1.11.5: + /@webassemblyjs/wasm-gen@1.11.5: resolution: {integrity: sha512-14vteRlRjxLK9eSyYFvw1K8Vv+iPdZU0Aebk3j6oB8TQiQYuO6hj9s4d7qf6f2HJr2khzvNldAFG13CgdkAIfA==} dependencies: '@webassemblyjs/ast': 1.11.5 @@ -21450,9 +22664,8 @@ packages: '@webassemblyjs/ieee754': 1.11.5 '@webassemblyjs/leb128': 1.11.5 '@webassemblyjs/utf8': 1.11.5 - 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 @@ -21460,16 +22673,15 @@ packages: '@webassemblyjs/wasm-gen': 1.11.1 '@webassemblyjs/wasm-parser': 1.11.1 - /@webassemblyjs/wasm-opt/1.11.5: + /@webassemblyjs/wasm-opt@1.11.5: resolution: {integrity: sha512-tcKwlIXstBQgbKy1MlbDMlXaxpucn42eb17H29rawYLxm5+MsEmgPzeCP8B1Cl69hCice8LeKgZpRUAPtqYPgw==} dependencies: '@webassemblyjs/ast': 1.11.5 '@webassemblyjs/helper-buffer': 1.11.5 '@webassemblyjs/wasm-gen': 1.11.5 '@webassemblyjs/wasm-parser': 1.11.5 - 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 @@ -21479,7 +22691,7 @@ packages: '@webassemblyjs/leb128': 1.11.1 '@webassemblyjs/utf8': 1.11.1 - /@webassemblyjs/wasm-parser/1.11.5: + /@webassemblyjs/wasm-parser@1.11.5: resolution: {integrity: sha512-SVXUIwsLQlc8srSD7jejsfTU83g7pIGr2YYNb9oHdtldSxaOhvA5xwvIiWIfcX8PlSakgqMXsLpLfbbJ4cBYew==} dependencies: '@webassemblyjs/ast': 1.11.5 @@ -21488,44 +22700,40 @@ packages: '@webassemblyjs/ieee754': 1.11.5 '@webassemblyjs/leb128': 1.11.5 '@webassemblyjs/utf8': 1.11.5 - 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 - /@webassemblyjs/wast-printer/1.11.5: + /@webassemblyjs/wast-printer@1.11.5: resolution: {integrity: sha512-f7Pq3wvg3GSPUPzR0F6bmI89Hdb+u9WXrSKc4v+N0aV0q6r42WoF92Jp2jEorBEBRoRNXgjp53nBniDXcqZYPA==} dependencies: '@webassemblyjs/ast': 1.11.5 '@xtuc/long': 4.2.2 - dev: true - /@webpack-cli/configtest/2.1.1_g5qtztmog4wkrsqodniltwrmwa: + /@webpack-cli/configtest@2.1.1(webpack-cli@5.1.4)(webpack@5.82.1): resolution: {integrity: sha512-wy0mglZpDSiSS0XHrVR+BAdId2+yxPSoJW8fsna3ZpYSlufjvxnP4YbKTCBZnNIcGN4r6ZPXV55X4mYExOfLmw==} engines: {node: '>=14.15.0'} peerDependencies: webpack: 5.x.x webpack-cli: 5.x.x dependencies: - webpack: 5.82.1_w67ycjwq2niq3jlxgktvf5aow4 - webpack-cli: 5.1.4_jwpra7xq62zw3tehur2jwszlsq - dev: true + webpack: 5.82.1(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) + webpack-cli: 5.1.4(webpack-bundle-analyzer@4.9.0)(webpack@5.82.1) - /@webpack-cli/info/2.0.2_g5qtztmog4wkrsqodniltwrmwa: + /@webpack-cli/info@2.0.2(webpack-cli@5.1.4)(webpack@5.82.1): resolution: {integrity: sha512-zLHQdI/Qs1UyT5UBdWNqsARasIA+AaF8t+4u2aS2nEpBQh2mWIVb8qAklq0eUENnC5mOItrIB4LiS9xMtph18A==} engines: {node: '>=14.15.0'} peerDependencies: webpack: 5.x.x webpack-cli: 5.x.x dependencies: - webpack: 5.82.1_w67ycjwq2niq3jlxgktvf5aow4 - webpack-cli: 5.1.4_jwpra7xq62zw3tehur2jwszlsq - dev: true + webpack: 5.82.1(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) + webpack-cli: 5.1.4(webpack-bundle-analyzer@4.9.0)(webpack@5.82.1) - /@webpack-cli/serve/2.0.5_g5qtztmog4wkrsqodniltwrmwa: + /@webpack-cli/serve@2.0.5(webpack-cli@5.1.4)(webpack@5.82.1): resolution: {integrity: sha512-lqaoKnRYBdo1UgDX8uF24AfGMifWK19TxPmM5FHc2vAGxrJ/qtyUyFBWoY1tISZdelsQ5fBcOusifo5o5wSJxQ==} engines: {node: '>=14.15.0'} peerDependencies: @@ -21536,30 +22744,29 @@ packages: webpack-dev-server: optional: true dependencies: - webpack: 5.82.1_w67ycjwq2niq3jlxgktvf5aow4 - webpack-cli: 5.1.4_jwpra7xq62zw3tehur2jwszlsq - dev: true + webpack: 5.82.1(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) + webpack-cli: 5.1.4(webpack-bundle-analyzer@4.9.0)(webpack@5.82.1) - /@wry/context/0.4.4: + /@wry/context@0.4.4: resolution: {integrity: sha512-LrKVLove/zw6h2Md/KZyWxIkFM6AoyKp71OqpH9Hiip1csjPVoD3tPxlbQUNxEnHENks3UGgNpSBCAfq9KWuag==} dependencies: '@types/node': 14.18.42 tslib: 1.14.1 dev: true - /@wry/equality/0.1.11: + /@wry/equality@0.1.11: resolution: {integrity: sha512-mwEVBDUVODlsQQ5dfuLUS5/Tf7jqUKyhKYHmVi4fPB6bDMOfWvUPJmKgS1Z7Za/sOI3vzWt4+O7yCiL/70MogA==} dependencies: tslib: 1.14.1 dev: true - /@xtuc/ieee754/1.2.0: + /@xtuc/ieee754@1.2.0: resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==} - /@xtuc/long/4.2.2: + /@xtuc/long@4.2.2: resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} - /@yarnpkg/esbuild-plugin-pnp/3.0.0-rc.15_esbuild@0.18.20: + /@yarnpkg/esbuild-plugin-pnp@3.0.0-rc.15(esbuild@0.18.20): resolution: {integrity: sha512-kYzDJO5CA9sy+on/s2aIW0411AklfCi8Ck/4QDivOqsMKpStZA2SsR+X27VTggGwpStWaLrjJcDcdDMowtG8MA==} engines: {node: '>=14.15.0'} peerDependencies: @@ -21569,7 +22776,7 @@ packages: tslib: 2.6.2 dev: true - /@yarnpkg/fslib/2.10.3: + /@yarnpkg/fslib@2.10.3: resolution: {integrity: sha512-41H+Ga78xT9sHvWLlFOZLIhtU6mTGZ20pZ29EiZa97vnxdohJD2AF42rCoAoWfqUz486xY6fhjMH+DYEM9r14A==} engines: {node: '>=12 <14 || 14.2 - 14.9 || >14.10.0'} dependencies: @@ -21577,7 +22784,7 @@ packages: tslib: 1.14.1 dev: true - /@yarnpkg/libzip/2.3.0: + /@yarnpkg/libzip@2.3.0: resolution: {integrity: sha512-6xm38yGVIa6mKm/DUCF2zFFJhERh/QWp1ufm4cNUvxsONBmfPg8uZ9pZBdOmF6qFGr/HlT6ABBkCSx/dlEtvWg==} engines: {node: '>=12 <14 || 14.2 - 14.9 || >14.10.0'} dependencies: @@ -21585,23 +22792,23 @@ packages: tslib: 1.14.1 dev: true - /@yarnpkg/lockfile/1.1.0: + /@yarnpkg/lockfile@1.1.0: resolution: {integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==} - /@yarnpkg/parsers/3.0.0-rc.42: + /@yarnpkg/parsers@3.0.0-rc.42: resolution: {integrity: sha512-eW9Mbegmb5bJjwawJM9ghjUjUqciNMhC6L7XrQPF/clXS5bbP66MstsgCT5hy9VlfUh/CfBT+0Wucf531dMjHA==} engines: {node: '>=14.15.0'} dependencies: js-yaml: 3.14.1 tslib: 2.6.2 - /@zkochan/js-yaml/0.0.6: + /@zkochan/js-yaml@0.0.6: resolution: {integrity: sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==} hasBin: true dependencies: argparse: 2.0.1 - /@zkochan/which/2.0.3: + /@zkochan/which@2.0.3: resolution: {integrity: sha512-C1ReN7vt2/2O0fyTsx5xnbQuxBrmG5NMSbcIkPKCCfCTJgpZBsuRYzFXHj3nVq8vTfK7vxHUmzfCpSHgO7j4rg==} engines: {node: '>= 8'} hasBin: true @@ -21609,66 +22816,65 @@ packages: isexe: 2.0.0 dev: true - /JSONStream/1.3.5: + /JSONStream@1.3.5: resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} hasBin: true dependencies: jsonparse: 1.3.1 through: 2.3.8 - /abab/2.0.6: + /abab@2.0.6: resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==} - /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 dev: false - /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 - /ace-builds/1.16.0: + /ace-builds@1.16.0: resolution: {integrity: sha512-EriMhoxdfhh0zKm7icSt8EXekODAOVsYh9fpnlru9ALwf0Iw7J7bpuqLjhi3QRxvVKR7P0teQdJwTvjVMcYHuw==} dev: false - /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 - /acorn-globals/7.0.1: + /acorn-globals@7.0.1: resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==} dependencies: acorn: 8.10.0 acorn-walk: 8.2.0 dev: true - /acorn-import-assertions/1.8.0_acorn@8.8.2: + /acorn-import-assertions@1.8.0(acorn@8.8.2): resolution: {integrity: sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==} peerDependencies: acorn: ^8 dependencies: acorn: 8.8.2 - dev: true - /acorn-import-assertions/1.9.0_acorn@8.10.0: + /acorn-import-assertions@1.9.0(acorn@8.10.0): resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==} peerDependencies: acorn: ^8 dependencies: acorn: 8.10.0 - /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 @@ -21676,14 +22882,14 @@ packages: acorn: 7.4.1 dev: true - /acorn-jsx/5.3.2_acorn@8.10.0: + /acorn-jsx@5.3.2(acorn@8.10.0): resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: acorn: 8.10.0 - /acorn-jsx/5.3.2_acorn@8.8.2: + /acorn-jsx@5.3.2(acorn@8.8.2): resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 @@ -21691,53 +22897,53 @@ packages: acorn: 8.8.2 dev: false - /acorn-walk/7.2.0: + /acorn-walk@7.2.0: resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==} engines: {node: '>=0.4.0'} - /acorn-walk/8.2.0: + /acorn-walk@8.2.0: resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==} engines: {node: '>=0.4.0'} - /acorn/7.4.1: + /acorn@7.4.1: resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} engines: {node: '>=0.4.0'} hasBin: true - /acorn/8.10.0: + /acorn@8.10.0: resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==} 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 - /add-px-to-style/1.0.0: + /add-px-to-style@1.0.0: resolution: {integrity: sha512-YMyxSlXpPjD8uWekCQGuN40lV4bnZagUwqa2m/uFv1z/tNImSk9fnXVMUI5qwME/zzI3MMQRvjZ+69zyfSSyew==} dev: false - /add-stream/1.0.0: + /add-stream@1.0.0: resolution: {integrity: sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==} dev: true - /address/1.2.2: + /address@1.2.2: resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==} engines: {node: '>= 10.0.0'} - /addressparser/1.0.1: + /addressparser@1.0.1: resolution: {integrity: sha512-aQX7AISOMM7HFE0iZ3+YnD07oIeJqWGVnJ+ZIKaBZAk03ftmVYVqsGas/rbXKR21n4D/hKCSHypvcyOkds/xzg==} dev: false - /adjust-sourcemap-loader/4.0.0: + /adjust-sourcemap-loader@4.0.0: resolution: {integrity: sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==} engines: {node: '>=8.9'} dependencies: loader-utils: 2.0.4 regex-parser: 2.2.11 - /africastalking/0.6.2: + /africastalking@0.6.2: resolution: {integrity: sha512-S3ev3hP7aevGiijsTkWtThva99nvK9Upjldd5Pw+ickPLrNSYwoN1cMRwqfUZf9ZsSPHDyZpp7/0IcKmyEYGVw==} engines: {node: '>=6'} dependencies: @@ -21753,47 +22959,47 @@ packages: - supports-color dev: false - /agent-base/5.1.1: + /agent-base@5.1.1: resolution: {integrity: sha512-TMeqbNl2fMW0nMjTEPOwe3J/PRFP4vqeoNuQMG0HlMrtm5QxKqdvAkZ1pRBQ/ulIyDD5Yq0nJ7YbdD8ey0TO3g==} engines: {node: '>= 6.0.0'} dev: true - /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@8.1.1) transitivePeerDependencies: - supports-color - /agent-base/7.1.0: + /agent-base@7.1.0: resolution: {integrity: sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==} engines: {node: '>= 14'} dependencies: - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) transitivePeerDependencies: - supports-color dev: false - /agentkeepalive/4.3.0: + /agentkeepalive@4.3.0: resolution: {integrity: sha512-7Epl1Blf4Sy37j4v9f9FjICCh4+KAQOyXgHEwlyBiAQLbhKdq/i2QQU3amQalS/wPhdPzDXPL5DMR5bkn+YeWg==} engines: {node: '>= 8.0.0'} dependencies: - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) depd: 2.0.0 humanize-ms: 1.2.1 transitivePeerDependencies: - supports-color dev: true - /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-formats/2.1.1_ajv@8.12.0: + /ajv-formats@2.1.1(ajv@8.12.0): resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==} peerDependencies: ajv: ^8.0.0 @@ -21803,14 +23009,14 @@ packages: dependencies: ajv: 8.12.0 - /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 - /ajv-keywords/5.1.0_ajv@8.12.0: + /ajv-keywords@5.1.0(ajv@8.12.0): resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==} peerDependencies: ajv: ^8.8.2 @@ -21818,7 +23024,7 @@ packages: ajv: 8.12.0 fast-deep-equal: 3.1.3 - /ajv/6.12.6: + /ajv@6.12.6: resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} dependencies: fast-deep-equal: 3.1.3 @@ -21826,7 +23032,7 @@ packages: json-schema-traverse: 0.4.1 uri-js: 4.4.1 - /ajv/8.12.0: + /ajv@8.12.0: resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==} dependencies: fast-deep-equal: 3.1.3 @@ -21834,7 +23040,7 @@ packages: require-from-string: 2.0.2 uri-js: 4.4.1 - /analytics-node/6.2.0: + /analytics-node@6.2.0: resolution: {integrity: sha512-NLU4tCHlWt0tzEaFQL7NIoWhq2KmQSmz0JvyS2lYn6fc4fEjTMSabhJUx8H1r5995FX8fE3rZ15uIHU6u+ovlQ==} engines: {node: '>=4'} dependencies: @@ -21850,164 +23056,164 @@ packages: - debug dev: false - /ansi-align/3.0.1: + /ansi-align@3.0.1: resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==} dependencies: string-width: 4.2.3 - /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-diff/1.1.1: + /ansi-diff@1.1.1: resolution: {integrity: sha512-XnTdFDQzbEewrDx8epWXdw7oqHMvv315vEtfqDiEhhWghIf4++h26c3/FMz7iTLhNrnj56DNIXpbxHZq+3s6qw==} dependencies: ansi-split: 1.0.1 dev: true - /ansi-escapes/3.2.0: + /ansi-escapes@3.2.0: resolution: {integrity: sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==} engines: {node: '>=4'} dev: true - /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-escapes/5.0.0: + /ansi-escapes@5.0.0: resolution: {integrity: sha512-5GFMVX8HqE/TB+FuBJGuO5XG0WrsA6ptUqoODaT/n9mmUaZFkqnBueB4leqGBCmrUHnCnC4PCZTCd0E7QQ83bA==} engines: {node: '>=12'} dependencies: type-fest: 1.4.0 dev: true - /ansi-html-community/0.0.8: + /ansi-html-community@0.0.8: resolution: {integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==} engines: {'0': node >= 0.8.0} hasBin: true - /ansi-regex/2.1.1: + /ansi-regex@2.1.1: resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==} engines: {node: '>=0.10.0'} - /ansi-regex/3.0.1: + /ansi-regex@3.0.1: resolution: {integrity: sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==} engines: {node: '>=4'} dev: true - /ansi-regex/4.1.1: + /ansi-regex@4.1.1: resolution: {integrity: sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==} engines: {node: '>=6'} dev: true - /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-sequence-parser/1.1.0: + /ansi-sequence-parser@1.1.0: resolution: {integrity: sha512-lEm8mt52to2fT8GhciPCGeCXACSz2UwIN4X2e2LJSnZ5uAbn2/dsYdOmUXq0AtWS5cpAupysIneExOgH0Vd2TQ==} dev: true - /ansi-split/1.0.1: + /ansi-split@1.0.1: resolution: {integrity: sha512-RRxQym4DFtDNmHIkW6aeFVvrXURb11lGAEPXNiryjCe8bK8RsANjzJ0M2aGOkvBYwP4Bl/xZ8ijtr6D3j1x/eg==} dependencies: ansi-regex: 3.0.1 dev: true - /ansi-styles/2.2.1: + /ansi-styles@2.2.1: resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==} engines: {node: '>=0.10.0'} dev: true - /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'} - /ansi-styles/6.2.1: + /ansi-styles@6.2.1: resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} engines: {node: '>=12'} - /ansicolors/0.3.2: + /ansicolors@0.3.2: resolution: {integrity: sha512-QXu7BPrP29VllRxH8GwB7x5iX5qWKAAMLqKQGWTeLWVlNHNOpVMJ91dsxQAIWXpjuW5wqvxu3Jd/nRjrJ+0pqg==} dev: true - /antd/4.24.8_sfoxds7t5ydpegc3knd667wn6m: + /antd@4.24.8(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-wrNy2Hi27uM3948okG3n2GwzQKBFUn1Qn5mn2I/ALcR28rC6cTjHYOuA248Zl9ECzz3jo4TY2R0SIa+5GZ/zGA==} peerDependencies: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: '@ant-design/colors': 6.0.0 - '@ant-design/icons': 4.8.0_sfoxds7t5ydpegc3knd667wn6m - '@ant-design/react-slick': 0.29.2_react@17.0.2 + '@ant-design/icons': 4.8.0(react-dom@17.0.2)(react@17.0.2) + '@ant-design/react-slick': 0.29.2(react@17.0.2) '@babel/runtime': 7.21.0 '@ctrl/tinycolor': 3.6.0 classnames: 2.3.2 copy-to-clipboard: 3.3.3 lodash: 4.17.21 moment: 2.29.4 - rc-cascader: 3.7.2_sfoxds7t5ydpegc3knd667wn6m - rc-checkbox: 2.3.2_sfoxds7t5ydpegc3knd667wn6m - rc-collapse: 3.4.2_sfoxds7t5ydpegc3knd667wn6m - rc-dialog: 9.0.2_sfoxds7t5ydpegc3knd667wn6m - rc-drawer: 6.1.5_sfoxds7t5ydpegc3knd667wn6m - rc-dropdown: 4.0.1_sfoxds7t5ydpegc3knd667wn6m - rc-field-form: 1.27.4_sfoxds7t5ydpegc3knd667wn6m - rc-image: 5.13.0_sfoxds7t5ydpegc3knd667wn6m - rc-input: 0.1.4_sfoxds7t5ydpegc3knd667wn6m - rc-input-number: 7.3.11_sfoxds7t5ydpegc3knd667wn6m - rc-mentions: 1.13.1_sfoxds7t5ydpegc3knd667wn6m - rc-menu: 9.8.4_sfoxds7t5ydpegc3knd667wn6m - rc-motion: 2.6.3_sfoxds7t5ydpegc3knd667wn6m - rc-notification: 4.6.1_sfoxds7t5ydpegc3knd667wn6m - rc-pagination: 3.2.0_sfoxds7t5ydpegc3knd667wn6m - rc-picker: 2.7.0_sfoxds7t5ydpegc3knd667wn6m - rc-progress: 3.4.1_sfoxds7t5ydpegc3knd667wn6m - rc-rate: 2.9.2_sfoxds7t5ydpegc3knd667wn6m - rc-resize-observer: 1.3.1_sfoxds7t5ydpegc3knd667wn6m - rc-segmented: 2.1.2_sfoxds7t5ydpegc3knd667wn6m - rc-select: 14.1.17_sfoxds7t5ydpegc3knd667wn6m - rc-slider: 10.0.1_sfoxds7t5ydpegc3knd667wn6m - rc-steps: 5.0.0_sfoxds7t5ydpegc3knd667wn6m - rc-switch: 3.2.2_sfoxds7t5ydpegc3knd667wn6m - rc-table: 7.26.0_sfoxds7t5ydpegc3knd667wn6m - rc-tabs: 12.5.10_sfoxds7t5ydpegc3knd667wn6m - rc-textarea: 0.4.7_sfoxds7t5ydpegc3knd667wn6m - rc-tooltip: 5.2.2_sfoxds7t5ydpegc3knd667wn6m - rc-tree: 5.7.3_sfoxds7t5ydpegc3knd667wn6m - rc-tree-select: 5.5.5_sfoxds7t5ydpegc3knd667wn6m - rc-trigger: 5.3.4_sfoxds7t5ydpegc3knd667wn6m - rc-upload: 4.3.4_sfoxds7t5ydpegc3knd667wn6m - rc-util: 5.29.3_sfoxds7t5ydpegc3knd667wn6m + rc-cascader: 3.7.2(react-dom@17.0.2)(react@17.0.2) + rc-checkbox: 2.3.2(react-dom@17.0.2)(react@17.0.2) + rc-collapse: 3.4.2(react-dom@17.0.2)(react@17.0.2) + rc-dialog: 9.0.2(react-dom@17.0.2)(react@17.0.2) + rc-drawer: 6.1.5(react-dom@17.0.2)(react@17.0.2) + rc-dropdown: 4.0.1(react-dom@17.0.2)(react@17.0.2) + rc-field-form: 1.27.4(react-dom@17.0.2)(react@17.0.2) + rc-image: 5.13.0(react-dom@17.0.2)(react@17.0.2) + rc-input: 0.1.4(react-dom@17.0.2)(react@17.0.2) + rc-input-number: 7.3.11(react-dom@17.0.2)(react@17.0.2) + rc-mentions: 1.13.1(react-dom@17.0.2)(react@17.0.2) + rc-menu: 9.8.4(react-dom@17.0.2)(react@17.0.2) + rc-motion: 2.6.3(react-dom@17.0.2)(react@17.0.2) + rc-notification: 4.6.1(react-dom@17.0.2)(react@17.0.2) + rc-pagination: 3.2.0(react-dom@17.0.2)(react@17.0.2) + rc-picker: 2.7.0(react-dom@17.0.2)(react@17.0.2) + rc-progress: 3.4.1(react-dom@17.0.2)(react@17.0.2) + rc-rate: 2.9.2(react-dom@17.0.2)(react@17.0.2) + rc-resize-observer: 1.3.1(react-dom@17.0.2)(react@17.0.2) + rc-segmented: 2.1.2(react-dom@17.0.2)(react@17.0.2) + rc-select: 14.1.17(react-dom@17.0.2)(react@17.0.2) + rc-slider: 10.0.1(react-dom@17.0.2)(react@17.0.2) + rc-steps: 5.0.0(react-dom@17.0.2)(react@17.0.2) + rc-switch: 3.2.2(react-dom@17.0.2)(react@17.0.2) + rc-table: 7.26.0(react-dom@17.0.2)(react@17.0.2) + rc-tabs: 12.5.10(react-dom@17.0.2)(react@17.0.2) + rc-textarea: 0.4.7(react-dom@17.0.2)(react@17.0.2) + rc-tooltip: 5.2.2(react-dom@17.0.2)(react@17.0.2) + rc-tree: 5.7.3(react-dom@17.0.2)(react@17.0.2) + rc-tree-select: 5.5.5(react-dom@17.0.2)(react@17.0.2) + rc-trigger: 5.3.4(react-dom@17.0.2)(react@17.0.2) + rc-upload: 4.3.4(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.29.3(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) scroll-into-view-if-needed: 2.2.31 dev: false - /any-observable/0.3.0_rxjs@6.6.7: + /any-observable@0.3.0(rxjs@6.6.7): resolution: {integrity: sha512-/FQM1EDkTsf63Ub2C6O7GuYFDsSXUwsaZDurV0np41ocwq0jthUAYCmhBX9f+KwlaCgIuWyr/4WlUQUBfKfZog==} engines: {node: '>=6'} peerDependencies: @@ -22022,72 +23228,72 @@ packages: rxjs: 6.6.7 dev: true - /any-promise/1.3.0: + /any-promise@1.3.0: resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} - /anymatch/1.3.2: + /anymatch@1.3.2: resolution: {integrity: sha512-0XNayC8lTHQ2OI8aljNCN3sSx6hsr/1+rlcDAotXJR7C1oZZHCNsfpbKwMjRA3Uqb5tF1Rae2oloTr4xpq+WjA==} dependencies: micromatch: 2.3.11 normalize-path: 2.1.1 dev: true - /anymatch/3.1.3: + /anymatch@3.1.3: resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} engines: {node: '>= 8'} dependencies: normalize-path: 3.0.0 picomatch: 2.3.1 - /apollo-boost/0.4.9_graphql@15.8.0: + /apollo-boost@0.4.9(graphql@15.8.0): resolution: {integrity: sha512-05y5BKcDaa8w47f8d81UVwKqrAjn8uKLv6QM9fNdldoNzQ+rnOHgFlnrySUZRz9QIT3vPftQkEz2UEASp1Mi5g==} peerDependencies: graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 dependencies: - apollo-cache: 1.3.5_graphql@15.8.0 - apollo-cache-inmemory: 1.6.6_graphql@15.8.0 - apollo-client: 2.6.10_graphql@15.8.0 - apollo-link: 1.2.14_graphql@15.8.0 - apollo-link-error: 1.1.13_graphql@15.8.0 - apollo-link-http: 1.5.17_graphql@15.8.0 + apollo-cache: 1.3.5(graphql@15.8.0) + apollo-cache-inmemory: 1.6.6(graphql@15.8.0) + apollo-client: 2.6.10(graphql@15.8.0) + apollo-link: 1.2.14(graphql@15.8.0) + apollo-link-error: 1.1.13(graphql@15.8.0) + apollo-link-http: 1.5.17(graphql@15.8.0) graphql: 15.8.0 - graphql-tag: 2.12.6_graphql@15.8.0 + graphql-tag: 2.12.6(graphql@15.8.0) ts-invariant: 0.4.4 tslib: 1.14.1 dev: true - /apollo-cache-inmemory/1.6.6_graphql@15.8.0: + /apollo-cache-inmemory@1.6.6(graphql@15.8.0): resolution: {integrity: sha512-L8pToTW/+Xru2FFAhkZ1OA9q4V4nuvfoPecBM34DecAugUZEBhI2Hmpgnzq2hTKZ60LAMrlqiASm0aqAY6F8/A==} peerDependencies: graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 dependencies: - apollo-cache: 1.3.5_graphql@15.8.0 - apollo-utilities: 1.3.4_graphql@15.8.0 + apollo-cache: 1.3.5(graphql@15.8.0) + apollo-utilities: 1.3.4(graphql@15.8.0) graphql: 15.8.0 optimism: 0.10.3 ts-invariant: 0.4.4 tslib: 1.14.1 dev: true - /apollo-cache/1.3.5_graphql@15.8.0: + /apollo-cache@1.3.5(graphql@15.8.0): resolution: {integrity: sha512-1XoDy8kJnyWY/i/+gLTEbYLnoiVtS8y7ikBr/IfmML4Qb+CM7dEEbIUOjnY716WqmZ/UpXIxTfJsY7rMcqiCXA==} peerDependencies: graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 dependencies: - apollo-utilities: 1.3.4_graphql@15.8.0 + apollo-utilities: 1.3.4(graphql@15.8.0) graphql: 15.8.0 tslib: 1.14.1 dev: true - /apollo-client/2.6.10_graphql@15.8.0: + /apollo-client@2.6.10(graphql@15.8.0): resolution: {integrity: sha512-jiPlMTN6/5CjZpJOkGeUV0mb4zxx33uXWdj/xQCfAMkuNAC3HN7CvYDyMHHEzmcQ5GV12LszWoQ/VlxET24CtA==} peerDependencies: graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 dependencies: '@types/zen-observable': 0.8.3 - apollo-cache: 1.3.5_graphql@15.8.0 - apollo-link: 1.2.14_graphql@15.8.0 - apollo-utilities: 1.3.4_graphql@15.8.0 + apollo-cache: 1.3.5(graphql@15.8.0) + apollo-link: 1.2.14(graphql@15.8.0) + apollo-utilities: 1.3.4(graphql@15.8.0) graphql: 15.8.0 symbol-observable: 1.2.0 ts-invariant: 0.4.4 @@ -22095,51 +23301,51 @@ packages: zen-observable: 0.8.15 dev: true - /apollo-link-error/1.1.13_graphql@15.8.0: + /apollo-link-error@1.1.13(graphql@15.8.0): resolution: {integrity: sha512-jAZOOahJU6bwSqb2ZyskEK1XdgUY9nkmeclCrW7Gddh1uasHVqmoYc4CKdb0/H0Y1J9lvaXKle2Wsw/Zx1AyUg==} dependencies: - apollo-link: 1.2.14_graphql@15.8.0 - apollo-link-http-common: 0.2.16_graphql@15.8.0 + apollo-link: 1.2.14(graphql@15.8.0) + apollo-link-http-common: 0.2.16(graphql@15.8.0) tslib: 1.14.1 transitivePeerDependencies: - graphql dev: true - /apollo-link-http-common/0.2.16_graphql@15.8.0: + /apollo-link-http-common@0.2.16(graphql@15.8.0): resolution: {integrity: sha512-2tIhOIrnaF4UbQHf7kjeQA/EmSorB7+HyJIIrUjJOKBgnXwuexi8aMecRlqTIDWcyVXCeqLhUnztMa6bOH/jTg==} peerDependencies: graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 dependencies: - apollo-link: 1.2.14_graphql@15.8.0 + apollo-link: 1.2.14(graphql@15.8.0) graphql: 15.8.0 ts-invariant: 0.4.4 tslib: 1.14.1 dev: true - /apollo-link-http/1.5.17_graphql@15.8.0: + /apollo-link-http@1.5.17(graphql@15.8.0): resolution: {integrity: sha512-uWcqAotbwDEU/9+Dm9e1/clO7hTB2kQ/94JYcGouBVLjoKmTeJTUPQKcJGpPwUjZcSqgYicbFqQSoJIW0yrFvg==} peerDependencies: graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 dependencies: - apollo-link: 1.2.14_graphql@15.8.0 - apollo-link-http-common: 0.2.16_graphql@15.8.0 + apollo-link: 1.2.14(graphql@15.8.0) + apollo-link-http-common: 0.2.16(graphql@15.8.0) graphql: 15.8.0 tslib: 1.14.1 dev: true - /apollo-link/1.2.14_graphql@15.8.0: + /apollo-link@1.2.14(graphql@15.8.0): resolution: {integrity: sha512-p67CMEFP7kOG1JZ0ZkYZwRDa369w5PIjtMjvrQd/HnIV8FRsHRqLqK+oAZQnFa1DDdZtOtHTi+aMIW6EatC2jg==} peerDependencies: graphql: ^0.11.3 || ^0.12.3 || ^0.13.0 || ^14.0.0 || ^15.0.0 dependencies: - apollo-utilities: 1.3.4_graphql@15.8.0 + apollo-utilities: 1.3.4(graphql@15.8.0) graphql: 15.8.0 ts-invariant: 0.4.4 tslib: 1.14.1 zen-observable-ts: 0.8.21 dev: true - /apollo-utilities/1.3.4_graphql@15.8.0: + /apollo-utilities@1.3.4(graphql@15.8.0): resolution: {integrity: sha512-pk2hiWrCXMAy2fRPwEyhvka+mqwzeP60Jr1tRYi5xru+3ko94HI9o6lK0CT33/w4RDlxWchmdhDCrvdr+pHCig==} peerDependencies: graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 @@ -22151,26 +23357,26 @@ packages: tslib: 1.14.1 dev: true - /app-root-dir/1.0.2: + /app-root-dir@1.0.2: resolution: {integrity: sha512-jlpIfsOoNoafl92Sz//64uQHGSyMrD2vYG5d8o2a4qGvyNCvXur7bzIsWtAC/6flI2RYAp3kv8rsfBtaLm7w0g==} - /append-field/1.0.0: + /append-field@1.0.0: resolution: {integrity: sha512-klpgFSWLW1ZEs8svjfb7g4qWY0YS5imI82dTg+QahUvJ8YqAY0P10Uk8tTyh9ZGuYEZEMaeJYCF5BFuX552hsw==} - /append-transform/2.0.0: + /append-transform@2.0.0: resolution: {integrity: sha512-7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg==} engines: {node: '>=8'} dependencies: default-require-extensions: 3.0.1 dev: true - /aproba/2.0.0: + /aproba@2.0.0: resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==} - /arch/2.2.0: + /arch@2.2.0: resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==} - /archiver-utils/2.1.0: + /archiver-utils@2.1.0: resolution: {integrity: sha512-bEL/yUb/fNNiNTuUz979Z0Yg5L+LzLxGJz8x79lYmR54fmTIb6ob/hNQgkQnIUDWIFjZVQwl9Xs356I6BAMHfw==} engines: {node: '>= 6'} dependencies: @@ -22186,7 +23392,7 @@ packages: readable-stream: 2.3.8 dev: false - /archiver/5.3.1: + /archiver@5.3.1: resolution: {integrity: sha512-8KyabkmbYrH+9ibcTScQ1xCJC/CGcugdVIwB+53f5sZziXgwUh3iXlAlANMxcZyDEfTHMe6+Z5FofV8nopXP7w==} engines: {node: '>= 10'} dependencies: @@ -22199,11 +23405,11 @@ packages: zip-stream: 4.1.0 dev: false - /archy/1.0.0: + /archy@1.0.0: resolution: {integrity: sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==} dev: true - /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: @@ -22211,7 +23417,7 @@ packages: readable-stream: 3.6.2 dev: false - /are-we-there-yet/3.0.1: + /are-we-there-yet@3.0.1: resolution: {integrity: sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: @@ -22219,107 +23425,107 @@ packages: readable-stream: 3.6.2 dev: true - /arg/4.1.3: + /arg@4.1.3: resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} - /arg/5.0.2: + /arg@5.0.2: resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} - /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==} - /argv-formatter/1.0.0: + /argv-formatter@1.0.0: resolution: {integrity: sha512-F2+Hkm9xFaRg+GkaNnbwXNDV5O6pnCFEmqyhvfC/Ic5LbgOWjJh3L+mN/s91rxVL3znE7DYVpW0GJFT+4YBgWw==} dev: true - /argv/0.0.2: + /argv@0.0.2: resolution: {integrity: sha512-dEamhpPEwRUBpLNHeuCm/v+g0anFByHahxodVO/BbAarHVBBg2MccCwf9K+o1Pof+2btdnkJelYVUWjW/VrATw==} engines: {node: '>=0.6.10'} deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dev: true - /aria-hidden/1.2.3: + /aria-hidden@1.2.3: resolution: {integrity: sha512-xcLxITLe2HYa1cnYnwCjkOO1PqUHQpozB8x9AR0OgWN2woOBi5kSDVxKfd0b7sb1hw5qFeJhXm9H1nu3xSfLeQ==} engines: {node: '>=10'} dependencies: tslib: 2.6.2 - /aria-query/4.2.2: + /aria-query@4.2.2: resolution: {integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==} engines: {node: '>=6.0'} dependencies: '@babel/runtime': 7.21.0 '@babel/runtime-corejs3': 7.21.0 - /aria-query/5.1.3: + /aria-query@5.1.3: resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==} dependencies: deep-equal: 2.2.0 - /arr-diff/2.0.0: + /arr-diff@2.0.0: resolution: {integrity: sha512-dtXTVMkh6VkEEA7OhXnN1Ecb8aAGFdZ1LFxtOCoqj4qkyOJMt7+qs6Ahdy6p/NQCPYsRSXXivhSB/J5E9jmYKA==} engines: {node: '>=0.10.0'} dependencies: arr-flatten: 1.1.0 dev: true - /arr-diff/4.0.0: + /arr-diff@4.0.0: resolution: {integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==} engines: {node: '>=0.10.0'} dev: true - /arr-flatten/1.1.0: + /arr-flatten@1.1.0: resolution: {integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==} engines: {node: '>=0.10.0'} dev: true - /arr-union/3.1.0: + /arr-union@3.1.0: resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==} engines: {node: '>=0.10.0'} dev: true - /array-back/3.1.0: + /array-back@3.1.0: resolution: {integrity: sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q==} engines: {node: '>=6'} dev: true - /array-back/4.0.2: + /array-back@4.0.2: resolution: {integrity: sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==} engines: {node: '>=8'} dev: true - /array-buffer-byte-length/1.0.0: + /array-buffer-byte-length@1.0.0: resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==} dependencies: call-bind: 1.0.2 is-array-buffer: 3.0.2 - /array-differ/3.0.0: + /array-differ@3.0.0: resolution: {integrity: sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==} engines: {node: '>=8'} dev: true - /array-find-index/1.0.2: + /array-find-index@1.0.2: resolution: {integrity: sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==} engines: {node: '>=0.10.0'} dev: true - /array-flatten/1.1.1: + /array-flatten@1.1.1: resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} - /array-flatten/2.1.2: + /array-flatten@2.1.2: resolution: {integrity: sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==} - /array-ify/1.0.0: + /array-ify@1.0.0: resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==} dev: true - /array-includes/3.1.6: + /array-includes@3.1.6: resolution: {integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==} engines: {node: '>= 0.4'} dependencies: @@ -22329,55 +23535,54 @@ packages: get-intrinsic: 1.2.1 is-string: 1.0.7 - /array-timsort/1.0.3: + /array-timsort@1.0.3: resolution: {integrity: sha512-/+3GRL7dDAGEfM6TseQk/U+mi18TU2Ms9I3UlLdUMhz2hbvGNTKdj9xniwXfUqgYhHxRx0+8UnKkvlNwVU+cWQ==} dev: true - /array-tree-filter/2.1.0: + /array-tree-filter@2.1.0: resolution: {integrity: sha512-4ROwICNlNw/Hqa9v+rk5h22KjmzB1JGTMVKP2AKJBOCgb0yL0ASf0+YvCcLNNwquOHNX48jkeZIJ3a+oOQqKcw==} dev: false - /array-union/1.0.2: + /array-union@1.0.2: resolution: {integrity: sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==} engines: {node: '>=0.10.0'} dependencies: array-uniq: 1.0.3 dev: true - /array-union/2.1.0: + /array-union@2.1.0: resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} engines: {node: '>=8'} - /array-union/3.0.1: + /array-union@3.0.1: resolution: {integrity: sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==} engines: {node: '>=12'} dev: true - /array-uniq/1.0.3: + /array-uniq@1.0.3: resolution: {integrity: sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==} engines: {node: '>=0.10.0'} dev: true - /array-unique/0.2.1: + /array-unique@0.2.1: resolution: {integrity: sha512-G2n5bG5fSUCpnsXz4+8FUkYsGPkNfLn9YvS66U5qbTIXI2Ynnlo4Bi42bWv+omKUCqz+ejzfClwne0alJWJPhg==} engines: {node: '>=0.10.0'} dev: true - /array-unique/0.3.2: + /array-unique@0.3.2: resolution: {integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==} engines: {node: '>=0.10.0'} dev: true - /array.prototype.find/2.2.2: + /array.prototype.find@2.2.2: resolution: {integrity: sha512-DRumkfW97iZGOfn+lIXbkVrXL04sfYKX+EfOodo8XboR5sxPDVvOjZTF/rysusa9lmhmSOeD6Vp6RKQP+eP4Tg==} dependencies: call-bind: 1.0.2 define-properties: 1.2.0 es-abstract: 1.22.1 es-shim-unscopables: 1.0.0 - dev: true - /array.prototype.findlastindex/1.2.3: + /array.prototype.findlastindex@1.2.3: resolution: {integrity: sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==} engines: {node: '>= 0.4'} dependencies: @@ -22387,7 +23592,7 @@ packages: es-shim-unscopables: 1.0.0 get-intrinsic: 1.2.1 - /array.prototype.flat/1.3.1: + /array.prototype.flat@1.3.1: resolution: {integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==} engines: {node: '>= 0.4'} dependencies: @@ -22396,7 +23601,7 @@ packages: es-abstract: 1.22.1 es-shim-unscopables: 1.0.0 - /array.prototype.flatmap/1.3.1: + /array.prototype.flatmap@1.3.1: resolution: {integrity: sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==} engines: {node: '>= 0.4'} dependencies: @@ -22405,7 +23610,7 @@ packages: es-abstract: 1.22.1 es-shim-unscopables: 1.0.0 - /array.prototype.reduce/1.0.6: + /array.prototype.reduce@1.0.6: resolution: {integrity: sha512-UW+Mz8LG/sPSU8jRDCjVr6J/ZKAGpHfwrZ6kWTG5qCxIEiXdVshqGnu5vEZA8S1y6X4aCSbQZ0/EEsfvEvBiSg==} engines: {node: '>= 0.4'} dependencies: @@ -22415,7 +23620,7 @@ packages: es-array-method-boxes-properly: 1.0.0 is-string: 1.0.7 - /array.prototype.tosorted/1.1.1: + /array.prototype.tosorted@1.1.1: resolution: {integrity: sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==} dependencies: call-bind: 1.0.2 @@ -22424,7 +23629,7 @@ packages: es-shim-unscopables: 1.0.0 get-intrinsic: 1.2.1 - /arraybuffer.prototype.slice/1.0.1: + /arraybuffer.prototype.slice@1.0.1: resolution: {integrity: sha512-09x0ZWFEjj4WD8PDbykUwo3t9arLn8NIzmmYEJFpYekOAQjpkGSyrQhNoRTcwwcFRu+ycWF78QZ63oWTqSjBcw==} engines: {node: '>= 0.4'} dependencies: @@ -22435,34 +23640,34 @@ packages: is-array-buffer: 3.0.2 is-shared-array-buffer: 1.0.2 - /arrify/1.0.1: + /arrify@1.0.1: resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} engines: {node: '>=0.10.0'} dev: true - /arrify/2.0.1: + /arrify@2.0.1: resolution: {integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==} engines: {node: '>=8'} - /as-table/1.0.55: + /as-table@1.0.55: resolution: {integrity: sha512-xvsWESUJn0JN421Xb9MQw6AsMHRCUknCe0Wjlxvjud80mU4E6hQf1A6NzQKcYNmYw62MfzEtXc+badstZP3JpQ==} dependencies: printable-characters: 1.0.42 dev: true - /asap/2.0.6: + /asap@2.0.6: resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==} - /asn1/0.2.6: + /asn1@0.2.6: resolution: {integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==} dependencies: safer-buffer: 2.1.2 - /assert-plus/1.0.0: + /assert-plus@1.0.0: resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==} engines: {node: '>=0.8'} - /assert/2.1.0: + /assert@2.1.0: resolution: {integrity: sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==} dependencies: call-bind: 1.0.2 @@ -22471,117 +23676,117 @@ packages: object.assign: 4.1.4 util: 0.12.5 - /assertion-error/1.1.0: + /assertion-error@1.1.0: resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==} dev: true - /assign-symbols/1.0.0: + /assign-symbols@1.0.0: resolution: {integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==} engines: {node: '>=0.10.0'} dev: true - /ast-types-flow/0.0.7: + /ast-types-flow@0.0.7: resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==} - /ast-types/0.13.4: + /ast-types@0.13.4: resolution: {integrity: sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==} engines: {node: '>=4'} dependencies: tslib: 2.6.2 dev: false - /ast-types/0.14.2: + /ast-types@0.14.2: resolution: {integrity: sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==} engines: {node: '>=4'} dependencies: tslib: 2.6.2 dev: true - /ast-types/0.15.2: + /ast-types@0.15.2: resolution: {integrity: sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==} engines: {node: '>=4'} dependencies: tslib: 2.6.2 dev: true - /ast-types/0.16.1: + /ast-types@0.16.1: resolution: {integrity: sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==} engines: {node: '>=4'} dependencies: tslib: 2.6.2 - /astral-regex/2.0.0: + /astral-regex@2.0.0: resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} engines: {node: '>=8'} - /async-each/1.0.6: + /async-each@1.0.6: resolution: {integrity: sha512-c646jH1avxr+aVpndVMeAfYw7wAa6idufrlN3LPA4PmKS0QEGp6PIC9nwz0WQkkvBGAMEki3pFdtxaF39J9vvg==} dev: true - /async-limiter/1.0.1: + /async-limiter@1.0.1: resolution: {integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==} dev: true - /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-validator/4.2.5: + /async-validator@4.2.5: resolution: {integrity: sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==} dev: false - /async/2.6.4: + /async@2.6.4: resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==} dependencies: lodash: 4.17.21 dev: true - /async/3.2.3: + /async@3.2.3: resolution: {integrity: sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g==} 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'} - /atob/2.1.2: + /atob@2.1.2: resolution: {integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==} engines: {node: '>= 4.5.0'} hasBin: true dev: true - /atomic-sleep/1.0.0: + /atomic-sleep@1.0.0: resolution: {integrity: sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==} engines: {node: '>=8.0.0'} dev: false - /attr-accept/2.2.2: + /attr-accept@2.2.2: resolution: {integrity: sha512-7prDjvt9HmqiZ0cl5CRjtS84sEyhsHP2coDkaZKRKVfCDo9s7iw7ChVmar78Gu9pC4SoR/28wFu/G5JJhTnqEg==} engines: {node: '>=4'} dev: false - /author-regex/1.0.0: + /author-regex@1.0.0: resolution: {integrity: sha512-KbWgR8wOYRAPekEmMXrYYdc7BRyhn2Ftk7KWfMUnQ43hFdojWEFRxhhRUm3/OFEdPa1r0KAvTTg9YQK57xTe0g==} engines: {node: '>=0.8'} dev: true - /auto/10.44.0_j6r65ghnzvzk7vhdh4hyogrm4a: + /auto@10.44.0(@swc/core@1.3.49)(@types/node@16.11.7)(typescript@4.9.5): resolution: {integrity: sha512-svAU/G3CJvc7z1lcEjBLUVrmL5C/6Z1jEMECeFtZJweqSEne3VWsSkZN1xDhvFWIvzX48uNFaQyXpZ5bSJGSpw==} engines: {node: '>=10.x'} hasBin: true dependencies: - '@auto-it/core': 10.44.0_j6r65ghnzvzk7vhdh4hyogrm4a - '@auto-it/npm': 10.44.0_j6r65ghnzvzk7vhdh4hyogrm4a - '@auto-it/released': 10.44.0_j6r65ghnzvzk7vhdh4hyogrm4a - '@auto-it/version-file': 10.44.0_j6r65ghnzvzk7vhdh4hyogrm4a + '@auto-it/core': 10.44.0(@swc/core@1.3.49)(@types/node@16.11.7)(typescript@4.9.5) + '@auto-it/npm': 10.44.0(@swc/core@1.3.49)(@types/node@16.11.7)(typescript@4.9.5) + '@auto-it/released': 10.44.0(@swc/core@1.3.49)(@types/node@16.11.7)(typescript@4.9.5) + '@auto-it/version-file': 10.44.0(@swc/core@1.3.49)(@types/node@16.11.7)(typescript@4.9.5) await-to-js: 3.0.0 chalk: 4.1.2 command-line-application: 0.10.1 @@ -22599,7 +23804,7 @@ packages: - typescript dev: true - /autoprefixer/10.4.13_postcss@8.4.21: + /autoprefixer@10.4.13(postcss@8.4.21): resolution: {integrity: sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==} engines: {node: ^10 || ^12 || >=14} hasBin: true @@ -22615,7 +23820,7 @@ packages: postcss-value-parser: 4.2.0 dev: true - /autoprefixer/10.4.14_postcss@8.4.21: + /autoprefixer@10.4.14(postcss@8.4.21): resolution: {integrity: sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==} engines: {node: ^10 || ^12 || >=14} hasBin: true @@ -22630,7 +23835,7 @@ packages: postcss: 8.4.21 postcss-value-parser: 4.2.0 - /autoprefixer/9.8.8: + /autoprefixer@9.8.8: resolution: {integrity: sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==} hasBin: true dependencies: @@ -22643,16 +23848,16 @@ packages: postcss-value-parser: 4.2.0 dev: false - /available-typed-arrays/1.0.5: + /available-typed-arrays@1.0.5: resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} engines: {node: '>= 0.4'} - /await-to-js/3.0.0: + /await-to-js@3.0.0: resolution: {integrity: sha512-zJAaP9zxTcvTHRlejau3ZOY4V7SRpiByf3/dxx2uyKxxor19tpmpV2QRsTKikckwhaPmr2dVpxxMr7jOCYVp5g==} engines: {node: '>=6.0.0'} dev: true - /aws-sdk/2.1354.0: + /aws-sdk@2.1354.0: resolution: {integrity: sha512-3aDxvyuOqMB9DqJguCq6p8momdsz0JR1axwkWOOCzHA7a35+Bw+WLmqt3pWwRjR1tGIwkkZ2CvGJObYHsOuw3w==} engines: {node: '>= 10.0.0'} dependencies: @@ -22668,30 +23873,30 @@ packages: xml2js: 0.5.0 dev: false - /aws-sign2/0.7.0: + /aws-sign2@0.7.0: resolution: {integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==} - /aws4/1.12.0: + /aws4@1.12.0: resolution: {integrity: sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==} - /axe-core/4.6.3: + /axe-core@4.6.3: resolution: {integrity: sha512-/BQzOX780JhsxDnPpH4ZiyrJAzcd8AfzFPkv+89veFSr1rcMjuq2JDCwypKaPeB6ljHp9KjXhPpjgCvQlWYuqg==} engines: {node: '>=4'} - /axios-retry/3.2.0: + /axios-retry@3.2.0: resolution: {integrity: sha512-RK2cLMgIsAQBDhlIsJR5dOhODPigvel18XUv1dDXW+4k1FzebyfRk+C+orot6WPZOYFKSfhLwHPwVmTVOODQ5w==} dependencies: is-retry-allowed: 1.2.0 dev: false - /axios/0.21.4: + /axios@0.21.4: resolution: {integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==} dependencies: follow-redirects: 1.15.2 transitivePeerDependencies: - debug - /axios/0.25.0: + /axios@0.25.0: resolution: {integrity: sha512-cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g==} dependencies: follow-redirects: 1.15.2 @@ -22699,14 +23904,14 @@ packages: - debug dev: false - /axios/0.26.1: + /axios@0.26.1: resolution: {integrity: sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA==} dependencies: follow-redirects: 1.15.2 transitivePeerDependencies: - debug - /axios/0.27.2: + /axios@0.27.2: resolution: {integrity: sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==} dependencies: follow-redirects: 1.15.2 @@ -22715,7 +23920,7 @@ packages: - debug dev: false - /axios/1.3.5: + /axios@1.3.5: resolution: {integrity: sha512-glL/PvG/E+xCWwV8S6nCHcrfg1exGx7vxyUIivIA1iL7BIh6bePylCfVHwp6k13ao7SATxB6imau2kqY+I67kw==} dependencies: follow-redirects: 1.15.2 @@ -22725,7 +23930,7 @@ packages: - debug dev: false - /axios/1.4.0: + /axios@1.4.0: resolution: {integrity: sha512-S4XCWMEmzvo64T9GfvQDOXgYRDJ/wsSZc7Jvdgx5u1sd0JwsuPLqb3SYmusag+edF6ziyMensPVqLTSc1PiSEA==} dependencies: follow-redirects: 1.15.2 @@ -22734,12 +23939,12 @@ packages: transitivePeerDependencies: - debug - /axobject-query/3.1.1: + /axobject-query@3.1.1: resolution: {integrity: sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==} dependencies: deep-equal: 2.2.0 - /babel-core/7.0.0-bridge.0_@babel+core@7.22.11: + /babel-core@7.0.0-bridge.0(@babel/core@7.22.11): resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -22747,7 +23952,7 @@ packages: '@babel/core': 7.22.11 dev: true - /babel-jest/27.5.1_@babel+core@7.21.4: + /babel-jest@27.5.1(@babel/core@7.21.4): resolution: {integrity: sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} peerDependencies: @@ -22758,14 +23963,14 @@ packages: '@jest/types': 27.5.1 '@types/babel__core': 7.20.0 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 27.5.1_@babel+core@7.21.4 + babel-preset-jest: 27.5.1(@babel/core@7.21.4) chalk: 4.1.2 graceful-fs: 4.2.11 slash: 3.0.0 transitivePeerDependencies: - supports-color - /babel-jest/27.5.1_@babel+core@7.22.11: + /babel-jest@27.5.1(@babel/core@7.22.11): resolution: {integrity: sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} peerDependencies: @@ -22776,14 +23981,14 @@ packages: '@jest/types': 27.5.1 '@types/babel__core': 7.20.0 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 27.5.1_@babel+core@7.22.11 + babel-preset-jest: 27.5.1(@babel/core@7.22.11) chalk: 4.1.2 graceful-fs: 4.2.11 slash: 3.0.0 transitivePeerDependencies: - supports-color - /babel-jest/29.5.0_@babel+core@7.22.11: + /babel-jest@29.5.0(@babel/core@7.22.11): resolution: {integrity: sha512-mA4eCDh5mSo2EcA9xQjVTpmbbNk32Zb3Q3QFQsNhaK56Q+yoXowzFodLux30HRgyOho5rsQ6B0P9QpMkvvnJ0Q==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: @@ -22793,7 +23998,7 @@ packages: '@jest/transform': 29.5.0 '@types/babel__core': 7.20.0 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 29.5.0_@babel+core@7.22.11 + babel-preset-jest: 29.5.0(@babel/core@7.22.11) chalk: 4.1.2 graceful-fs: 4.2.11 slash: 3.0.0 @@ -22801,7 +24006,7 @@ packages: - supports-color dev: true - /babel-loader/8.3.0_2bpkfvz2mezbew2j5yjox7n6pu: + /babel-loader@8.3.0(@babel/core@7.21.4)(webpack@5.78.0): resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==} engines: {node: '>= 8.9'} peerDependencies: @@ -22813,9 +24018,9 @@ packages: loader-utils: 2.0.4 make-dir: 3.1.0 schema-utils: 2.7.1 - webpack: 5.78.0_u5c4qderjagc6tepfyiby6xhau + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) - /babel-loader/8.3.0_pzz2ydzkafj27vzf3wnu5rjngu: + /babel-loader@8.3.0(@babel/core@7.22.11)(webpack@5.82.1): resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==} engines: {node: '>= 8.9'} peerDependencies: @@ -22827,59 +24032,59 @@ packages: loader-utils: 2.0.4 make-dir: 3.1.0 schema-utils: 2.7.1 - webpack: 5.82.1_w67ycjwq2niq3jlxgktvf5aow4 + webpack: 5.82.1(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) dev: true - /babel-loader/9.1.2_5nlhjoewt6bwtyl7wlqhrgzuxm: + /babel-loader@9.1.2(@babel/core@7.20.12)(webpack@5.76.1): resolution: {integrity: sha512-mN14niXW43tddohGl8HPu5yfQq70iUThvFL/4QzESA7GcZoC0eVOhvWdQ8+3UlSjaDE9MVtsW9mxDY07W7VpVA==} engines: {node: '>= 14.15.0'} peerDependencies: '@babel/core': ^7.12.0 webpack: '>=5' dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.20.12 find-cache-dir: 3.3.2 schema-utils: 4.0.0 - webpack: 5.78.0_u5c4qderjagc6tepfyiby6xhau + webpack: 5.76.1(@swc/core@1.3.49)(esbuild@0.17.8) dev: true - /babel-loader/9.1.2_vbwv3zr3kwaf4v2iytwakh6feu: + /babel-loader@9.1.2(@babel/core@7.22.11)(webpack@5.78.0): resolution: {integrity: sha512-mN14niXW43tddohGl8HPu5yfQq70iUThvFL/4QzESA7GcZoC0eVOhvWdQ8+3UlSjaDE9MVtsW9mxDY07W7VpVA==} engines: {node: '>= 14.15.0'} peerDependencies: '@babel/core': ^7.12.0 webpack: '>=5' dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.22.11 find-cache-dir: 3.3.2 schema-utils: 4.0.0 - webpack: 5.76.1 + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) dev: true - /babel-plugin-add-react-displayname/0.0.5: + /babel-plugin-add-react-displayname@0.0.5: resolution: {integrity: sha512-LY3+Y0XVDYcShHHorshrDbt4KFWL4bSeniCtl4SYZbask+Syngk1uMPCeN9+nSiZo6zX5s0RTq/J9Pnaaf/KHw==} dev: true - /babel-plugin-const-enum/1.2.0_@babel+core@7.22.11: + /babel-plugin-const-enum@1.2.0(@babel/core@7.22.11): resolution: {integrity: sha512-o1m/6iyyFnp9MRsK1dHF3bneqyf3AlM2q3A/YbgQr2pCat6B6XJVDv2TXqzfY2RYUi4mak6WAksSBPlyYGx9dg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-typescript': 7.21.4_@babel+core@7.22.11 + '@babel/plugin-syntax-typescript': 7.21.4(@babel/core@7.22.11) '@babel/traverse': 7.22.11 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-import/1.13.6: + /babel-plugin-import@1.13.6: resolution: {integrity: sha512-N7FYnGh0DFsvDRkAPsvFq/metVfVD7P2h1rokOPpEH4cZbdRHCW+2jbXt0nnuqowkm/xhh2ww1anIdEpfYa7ZA==} dependencies: '@babel/helper-module-imports': 7.21.4 dev: false - /babel-plugin-istanbul/6.1.1: + /babel-plugin-istanbul@6.1.1: resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} engines: {node: '>=8'} dependencies: @@ -22891,7 +24096,7 @@ packages: transitivePeerDependencies: - supports-color - /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: @@ -22900,7 +24105,7 @@ packages: '@types/babel__core': 7.20.0 '@types/babel__traverse': 7.18.3 - /babel-plugin-jest-hoist/29.5.0: + /babel-plugin-jest-hoist@29.5.0: resolution: {integrity: sha512-zSuuuAlTMT4mzLj2nPnUm6fsE6270vdOfnpbJ+RmruU75UhLFvL0N2NgI7xpeS7NaB6hGqmd5pVpGTDYvi4Q3w==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -22910,7 +24115,7 @@ packages: '@types/babel__traverse': 7.18.3 dev: true - /babel-plugin-macros/2.8.0: + /babel-plugin-macros@2.8.0: resolution: {integrity: sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==} dependencies: '@babel/runtime': 7.21.0 @@ -22918,7 +24123,7 @@ packages: resolve: 1.22.2 dev: true - /babel-plugin-macros/3.1.0: + /babel-plugin-macros@3.1.0: resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} engines: {node: '>=10', npm: '>=6'} dependencies: @@ -22926,120 +24131,120 @@ packages: cosmiconfig: 7.1.0 resolve: 1.22.2 - /babel-plugin-named-asset-import/0.3.8_@babel+core@7.21.4: + /babel-plugin-named-asset-import@0.3.8(@babel/core@7.21.4): resolution: {integrity: sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==} peerDependencies: '@babel/core': ^7.1.0 dependencies: '@babel/core': 7.21.4 - /babel-plugin-named-exports-order/0.0.2: + /babel-plugin-named-exports-order@0.0.2: resolution: {integrity: sha512-OgOYHOLoRK+/mvXU9imKHlG6GkPLYrUCvFXG/CM93R/aNNO8pOOF4aS+S8CCHMDQoNSeiOYEZb/G6RwL95Jktw==} dev: true - /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.20.12: + /babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.20.12): resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/compat-data': 7.22.20 '@babel/core': 7.20.12 - '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.12 + '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.20.12) semver: 6.3.1 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.22.11: + /babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.22.11): resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/compat-data': 7.22.20 '@babel/core': 7.22.11 - '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.22.11 + '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.22.11) semver: 6.3.1 transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-corejs2/0.4.5_@babel+core@7.22.11: + /babel-plugin-polyfill-corejs2@0.4.5(@babel/core@7.22.11): resolution: {integrity: sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: '@babel/compat-data': 7.22.20 '@babel/core': 7.22.11 - '@babel/helper-define-polyfill-provider': 0.4.2_@babel+core@7.22.11 + '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.22.11) semver: 6.3.1 transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.20.12: + /babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.20.12): resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.20.12 - '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.12 + '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.20.12) core-js-compat: 3.32.2 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.22.11: + /babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.22.11): resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.11 - '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.22.11 + '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.22.11) core-js-compat: 3.32.2 transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-corejs3/0.8.3_@babel+core@7.22.11: + /babel-plugin-polyfill-corejs3@0.8.3(@babel/core@7.22.11): resolution: {integrity: sha512-z41XaniZL26WLrvjy7soabMXrfPWARN25PZoriDEiLMxAp50AUW3t35BGQUMg5xK3UrpVTtagIDklxYa+MhiNA==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: '@babel/core': 7.22.11 - '@babel/helper-define-polyfill-provider': 0.4.2_@babel+core@7.22.11 + '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.22.11) core-js-compat: 3.32.2 transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.20.12: + /babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.20.12): resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.20.12 - '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.12 + '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.20.12) transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.22.11: + /babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.22.11): resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.11 - '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.22.11 + '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.22.11) transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-regenerator/0.5.2_@babel+core@7.22.11: + /babel-plugin-polyfill-regenerator@0.5.2(@babel/core@7.22.11): resolution: {integrity: sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: '@babel/core': 7.22.11 - '@babel/helper-define-polyfill-provider': 0.4.2_@babel+core@7.22.11 + '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.22.11) transitivePeerDependencies: - supports-color - /babel-plugin-react-docgen/4.2.1: + /babel-plugin-react-docgen@4.2.1: resolution: {integrity: sha512-UQ0NmGHj/HAqi5Bew8WvNfCk8wSsmdgNd8ZdMjBCICtyCJCq9LiqgqvjCYe570/Wg7AQArSq1VQ60Dd/CHN7mQ==} dependencies: ast-types: 0.14.2 @@ -23049,10 +24254,10 @@ packages: - supports-color dev: true - /babel-plugin-transform-react-remove-prop-types/0.4.24: + /babel-plugin-transform-react-remove-prop-types@0.4.24: resolution: {integrity: sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==} - /babel-plugin-transform-typescript-metadata/0.3.2_@babel+core@7.22.11: + /babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.22.11): resolution: {integrity: sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==} peerDependencies: '@babel/core': ^7 @@ -23065,45 +24270,45 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /babel-preset-current-node-syntax/1.0.1_@babel+core@7.21.4: + /babel-preset-current-node-syntax@1.0.1(@babel/core@7.21.4): resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.21.4 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.21.4 - '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.21.4 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.21.4 - '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.21.4 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.21.4 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.21.4 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.21.4 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.21.4 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.21.4 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.21.4 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.21.4 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.21.4 - - /babel-preset-current-node-syntax/1.0.1_@babel+core@7.22.11: + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.21.4) + '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.21.4) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.21.4) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.21.4) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.21.4) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.21.4) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.21.4) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.21.4) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.4) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.21.4) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.4) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.21.4) + + /babel-preset-current-node-syntax@1.0.1(@babel/core@7.22.11): resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.22.11 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.22.11 - '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.22.11 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.22.11 - '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.22.11 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.22.11 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.22.11 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.22.11 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.22.11 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.22.11 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.22.11 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.22.11 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.22.11 - - /babel-preset-jest/27.5.1_@babel+core@7.21.4: + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.11) + '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.22.11) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.11) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.22.11) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.11) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.11) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.11) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.11) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.11) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.11) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.11) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.22.11) + + /babel-preset-jest@27.5.1(@babel/core@7.21.4): resolution: {integrity: sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} peerDependencies: @@ -23111,9 +24316,9 @@ packages: dependencies: '@babel/core': 7.21.4 babel-plugin-jest-hoist: 27.5.1 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.21.4 + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.21.4) - /babel-preset-jest/27.5.1_@babel+core@7.22.11: + /babel-preset-jest@27.5.1(@babel/core@7.22.11): resolution: {integrity: sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} peerDependencies: @@ -23121,9 +24326,9 @@ packages: dependencies: '@babel/core': 7.22.11 babel-plugin-jest-hoist: 27.5.1 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.22.11 + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.22.11) - /babel-preset-jest/29.5.0_@babel+core@7.22.11: + /babel-preset-jest@29.5.0(@babel/core@7.22.11): resolution: {integrity: sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: @@ -23131,60 +24336,73 @@ packages: dependencies: '@babel/core': 7.22.11 babel-plugin-jest-hoist: 29.5.0 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.22.11 + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.22.11) dev: true - /babel-preset-react-app/10.0.1: + /babel-preset-react-app@10.0.1: resolution: {integrity: sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==} dependencies: '@babel/core': 7.22.11 - '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.22.11 - '@babel/plugin-proposal-decorators': 7.21.0_@babel+core@7.22.11 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.22.11 - '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.22.11 - '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.22.11 - '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.22.11 - '@babel/plugin-proposal-private-property-in-object': 7.21.0_@babel+core@7.22.11 - '@babel/plugin-transform-flow-strip-types': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-react-display-name': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-runtime': 7.21.4_@babel+core@7.22.11 - '@babel/preset-env': 7.22.20_@babel+core@7.22.11 - '@babel/preset-react': 7.22.15_@babel+core@7.22.11 - '@babel/preset-typescript': 7.21.4_@babel+core@7.22.11 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.11) + '@babel/plugin-proposal-decorators': 7.21.0(@babel/core@7.22.11) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.11) + '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.22.11) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.11) + '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.22.11) + '@babel/plugin-proposal-private-property-in-object': 7.21.0(@babel/core@7.22.11) + '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.22.11) + '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.22.11) + '@babel/plugin-transform-runtime': 7.21.4(@babel/core@7.22.11) + '@babel/preset-env': 7.22.20(@babel/core@7.22.11) + '@babel/preset-react': 7.22.15(@babel/core@7.22.11) + '@babel/preset-typescript': 7.21.4(@babel/core@7.22.11) '@babel/runtime': 7.21.0 babel-plugin-macros: 3.1.0 babel-plugin-transform-react-remove-prop-types: 0.4.24 transitivePeerDependencies: - supports-color - /babel-runtime/6.26.0: + /babel-runtime@6.26.0: resolution: {integrity: sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==} dependencies: core-js: 2.6.12 regenerator-runtime: 0.11.1 dev: true - /backo2/1.0.2: + /backo2@1.0.2: resolution: {integrity: sha512-zj6Z6M7Eq+PBZ7PQxl5NT665MvJdAkzp0f60nAJ+sLaSCBPMwVak5ZegFbgVCzFcCJTKFoMizvM5Ld7+JrRJHA==} + requiresBuild: true dev: false optional: true - /bail/2.0.2: + /bail@2.0.2: resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==} dev: true - /balanced-match/1.0.2: + /balanced-match@1.0.2: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} - /base-64/0.1.0: + /base-64@0.1.0: resolution: {integrity: sha512-Y5gU45svrR5tI2Vt/X9GPd3L0HNIKzGu202EjxrXMpuc2V2CiKgemAbUUsqYmZJvPtCXoUKjNZwBJzsNScUbXA==} dev: false - /base-64/1.0.0: + /base-64@1.0.0: resolution: {integrity: sha512-kwDPIFCGx0NZHog36dj+tHiwP4QMzsZ3AgMViUBKI0+V5n4U0ufTCUMhnQ04diaRI8EX/QcPfql7zlhZ7j4zgg==} dev: false - /base/0.11.2: + /base64-js@1.5.1: + resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} + + /base64id@2.0.0: + resolution: {integrity: sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==} + engines: {node: ^4.5.0 || >= 5.9} + + /base64url@3.0.1: + resolution: {integrity: sha512-ir1UPr3dkwexU7FdV8qBBbNDRUhMmIekYMFZfi+C/sLNnRESKPl23nB9b2pltqfOQNnGzsDdId90AEtG5tCx4A==} + engines: {node: '>=6.0.0'} + dev: false + + /base@0.11.2: resolution: {integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==} engines: {node: '>=0.10.0'} dependencies: @@ -23197,37 +24415,25 @@ packages: pascalcase: 0.1.1 dev: true - /base64-js/1.5.1: - resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} - - /base64id/2.0.0: - resolution: {integrity: sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==} - engines: {node: ^4.5.0 || >= 5.9} - - /base64url/3.0.1: - resolution: {integrity: sha512-ir1UPr3dkwexU7FdV8qBBbNDRUhMmIekYMFZfi+C/sLNnRESKPl23nB9b2pltqfOQNnGzsDdId90AEtG5tCx4A==} - engines: {node: '>=6.0.0'} - dev: false - - /basic-auth/1.1.0: + /basic-auth@1.1.0: resolution: {integrity: sha512-CtGuTyWf3ig+sgRyC7uP6DM3N+5ur/p8L+FPfsd+BbIfIs74TFfCajZTHnCw6K5dqM0bZEbRIqRy1fAdiUJhTA==} engines: {node: '>= 0.6'} dev: true - /basic-ftp/5.0.3: + /basic-ftp@5.0.3: resolution: {integrity: sha512-QHX8HLlncOLpy54mh+k/sWIFd0ThmRqwe9ZjELybGZK+tZ8rUb9VO0saKJUROTbE+KhzDUT7xziGpGrW8Kmd+g==} engines: {node: '>=10.0.0'} dev: false - /batch/0.6.1: + /batch@0.6.1: resolution: {integrity: sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=} - /bcrypt-pbkdf/1.0.2: + /bcrypt-pbkdf@1.0.2: resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==} dependencies: tweetnacl: 0.14.5 - /bcrypt/5.0.1: + /bcrypt@5.0.1: resolution: {integrity: sha512-9BTgmrhZM2t1bNuDtrtIMVSmmxZBrJ71n8Wg+YgdjHuIWYF7SjjmCPZFB+/5i/o/PIeRpwVJR3P+NrpIItUjqw==} engines: {node: '>= 10.0.0'} requiresBuild: true @@ -23239,25 +24445,25 @@ packages: - supports-color dev: false - /before-after-hook/2.2.3: + /before-after-hook@2.2.3: resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==} dev: true - /better-opn/3.0.2: + /better-opn@3.0.2: resolution: {integrity: sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ==} engines: {node: '>=12.0.0'} dependencies: open: 8.4.2 dev: true - /better-path-resolve/1.0.0: + /better-path-resolve@1.0.0: resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==} engines: {node: '>=4'} dependencies: is-windows: 1.0.2 dev: true - /bfj/7.0.2: + /bfj@7.0.2: resolution: {integrity: sha512-+e/UqUzwmzJamNF50tBV6tZPTORow7gQ96iFow+8b562OdMpEK0BcJEq2OSPEDmAbSMBQ7PKZ87ubFkgxpYWgw==} engines: {node: '>= 8.0.0'} dependencies: @@ -23266,19 +24472,19 @@ packages: hoopy: 0.1.4 tryer: 1.0.1 - /big-integer/1.6.51: + /big-integer@1.6.51: resolution: {integrity: sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==} engines: {node: '>=0.6'} dev: true - /big.js/5.2.2: + /big.js@5.2.2: resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==} - /bignumber.js/9.1.1: + /bignumber.js@9.1.1: resolution: {integrity: sha512-pHm4LsMJ6lzgNGVfZHjMoO8sdoRhOzOH4MLmY65Jg70bpxCKu5iOHNJyfF6OyvYw7t8Fpf35RuzUyqnQsj8Vig==} dev: false - /bin-links/3.0.3: + /bin-links@3.0.3: resolution: {integrity: sha512-zKdnMPWEdh4F5INR07/eBrodC7QrF5JKvqskjz/ZZRXg5YSAZIbn8zGhbhUrElzHBZ2fvEQdOU59RHcTG3GiwA==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: @@ -23290,16 +24496,16 @@ packages: write-file-atomic: 4.0.2 dev: true - /binary-extensions/1.13.1: + /binary-extensions@1.13.1: resolution: {integrity: sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==} engines: {node: '>=0.10.0'} dev: true - /binary-extensions/2.2.0: + /binary-extensions@2.2.0: resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} engines: {node: '>=8'} - /bindings/1.5.0: + /bindings@1.5.0: resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==} requiresBuild: true dependencies: @@ -23307,24 +24513,24 @@ packages: dev: true optional: true - /bl/4.1.0: + /bl@4.1.0: resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} dependencies: buffer: 5.7.1 inherits: 2.0.4 readable-stream: 3.6.2 - /blob-util/2.0.2: + /blob-util@2.0.2: resolution: {integrity: sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==} - /bluebird/2.11.0: + /bluebird@2.11.0: resolution: {integrity: sha512-UfFSr22dmHPQqPP9XWHRhq+gWnHCYguQGkXQlbyPtW5qTnhFWA8/iXg765tH0cAjy7l/zPJ1aBTO0g5XgA7kvQ==} dev: false - /bluebird/3.7.2: + /bluebird@3.7.2: resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==} - /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: @@ -23343,7 +24549,7 @@ packages: transitivePeerDependencies: - supports-color - /body-parser/1.20.2: + /body-parser@1.20.2: resolution: {integrity: sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==} engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} dependencies: @@ -23362,14 +24568,14 @@ packages: transitivePeerDependencies: - supports-color - /bole/5.0.3: + /bole@5.0.3: resolution: {integrity: sha512-4o8wk9dlpU0e69sXhIsPIaFfXgOvj6en2GgZkG8hadkqNEqYKcz9Y70ijg7Kjq9hz2prJkWXljca5OBJZ451xg==} dependencies: fast-safe-stringify: 2.1.1 individual: 3.0.0 dev: true - /bonjour-service/1.1.1: + /bonjour-service@1.1.1: resolution: {integrity: sha512-Z/5lQRMOG9k7W+FkeGTNjh7htqn/2LMnfOvBZ8pynNZCM9MwkQkI3zeI4oz09uWdcgmgHugVvBqxGg4VQJ5PCg==} dependencies: array-flatten: 2.1.2 @@ -23377,18 +24583,18 @@ packages: fast-deep-equal: 3.1.3 multicast-dns: 7.2.5 - /boolbase/1.0.0: + /boolbase@1.0.0: resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} - /bottleneck/2.19.5: + /bottleneck@2.19.5: resolution: {integrity: sha512-VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw==} dev: true - /bowser/2.11.0: + /bowser@2.11.0: resolution: {integrity: sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA==} dev: false - /boxen/5.1.2: + /boxen@5.1.2: resolution: {integrity: sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==} engines: {node: '>=10'} dependencies: @@ -23401,25 +24607,25 @@ packages: widest-line: 3.1.0 wrap-ansi: 7.0.0 - /bplist-parser/0.2.0: + /bplist-parser@0.2.0: resolution: {integrity: sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==} engines: {node: '>= 5.10.0'} dependencies: big-integer: 1.6.51 dev: true - /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/1.8.5: + /braces@1.8.5: resolution: {integrity: sha512-xU7bpz2ytJl1bH9cgIurjpg/n8Gohy9GTw81heDYLJQ4RU60dlyJsa+atVF2pI0yMMvKxI9HkKwjePCj5XI1hw==} engines: {node: '>=0.10.0'} dependencies: @@ -23428,7 +24634,7 @@ packages: repeat-element: 1.1.4 dev: true - /braces/2.3.2: + /braces@2.3.2: resolution: {integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==} engines: {node: '>=0.10.0'} dependencies: @@ -23446,30 +24652,30 @@ packages: - supports-color dev: true - /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-assert/1.2.1: + /browser-assert@1.2.1: resolution: {integrity: sha512-nfulgvOR6S4gt9UKCeGJOuSGBPGiFT6oQ/2UBnvTY/5aQ1PnksW72fhZkM30DzoRRv2WpwZf1vHHEr3mtuXIWQ==} dev: true - /browser-process-hrtime/1.0.0: + /browser-process-hrtime@1.0.0: resolution: {integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==} - /browser-stdout/1.3.1: + /browser-stdout@1.3.1: resolution: {integrity: sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==} dev: true - /browserify-zlib/0.1.4: + /browserify-zlib@0.1.4: resolution: {integrity: sha512-19OEpq7vWgsH6WkvkBJQDFvJS1uPcbFOQ4v9CU839dO+ZZXUZO6XpE6hNCqvlIIj+4fZvRiJ6DsAQ382GwiyTQ==} dependencies: pako: 0.2.9 dev: true - /browserslist/4.21.10: + /browserslist@4.21.10: resolution: {integrity: sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true @@ -23477,9 +24683,9 @@ packages: caniuse-lite: 1.0.30001525 electron-to-chromium: 1.4.508 node-releases: 2.0.13 - update-browserslist-db: 1.0.11_browserslist@4.21.10 + update-browserslist-db: 1.0.11(browserslist@4.21.10) - /browserslist/4.21.5: + /browserslist@4.21.5: resolution: {integrity: sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true @@ -23487,36 +24693,36 @@ packages: caniuse-lite: 1.0.30001525 electron-to-chromium: 1.4.508 node-releases: 2.0.13 - update-browserslist-db: 1.0.11_browserslist@4.21.5 + update-browserslist-db: 1.0.11(browserslist@4.21.5) - /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 - /bson/5.5.0: + /bson@5.5.0: resolution: {integrity: sha512-B+QB4YmDx9RStKv8LLSl/aVIEV3nYJc3cJNNTK2Cd1TL+7P+cNpw9mAPeCgc5K+j01Dv6sxUzcITXDx7ZU3F0w==} engines: {node: '>=14.20.1'} dev: false - /buffer-crc32/0.2.13: + /buffer-crc32@0.2.13: resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} - /buffer-equal-constant-time/1.0.1: + /buffer-equal-constant-time@1.0.1: resolution: {integrity: sha1-+OcRMvf/5uAaXJaXpMbz5I1cyBk=} dev: false - /buffer-from/1.1.2: + /buffer-from@1.1.2: resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} - /buffer/4.9.2: + /buffer@4.9.2: resolution: {integrity: sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==} dependencies: base64-js: 1.5.1 @@ -23524,39 +24730,39 @@ packages: isarray: 1.0.0 dev: false - /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 - /build-url/1.3.3: + /build-url@1.3.3: resolution: {integrity: sha512-uSC8d+d4SlbXTu/9nBhwEKi33CE0KQgCvfy8QwyrrO5vCuXr9hN021ZBh8ip5vxPbMOrZiPwgqcupuhezxiP3g==} deprecated: This package is no longer maintained dev: false - /builtin-modules/3.3.0: + /builtin-modules@3.3.0: resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} engines: {node: '>=6'} - /builtins/1.0.3: + /builtins@1.0.3: resolution: {integrity: sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==} dev: true - /builtins/5.0.1: + /builtins@5.0.1: resolution: {integrity: sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==} dependencies: semver: 7.5.4 dev: true - /bull/4.10.4: + /bull@4.10.4: resolution: {integrity: sha512-o9m/7HjS/Or3vqRd59evBlWCXd9Lp+ALppKseoSKHaykK46SmRjAilX98PgmOz1yeVaurt8D5UtvEt4bUjM3eA==} engines: {node: '>=12'} dependencies: @@ -23572,7 +24778,7 @@ packages: - supports-color dev: false - /bullmq/3.10.4: + /bullmq@3.10.4: resolution: {integrity: sha512-KHYopaoAJpf9Fe9qMjY2xxbMTqgrEIgfrQr81wU0V/wLf4eijNpjVjGVhfQ/bWuHMmwKY1xgOzSIF3+lmdkiOg==} dependencies: cron-parser: 4.8.1 @@ -23587,7 +24793,7 @@ packages: - supports-color dev: false - /bullmq/3.6.6: + /bullmq@3.6.6: resolution: {integrity: sha512-W71jXrcTdcT3Y5tzMyTx22Cd8O3dTML7vl6KG3YdGVGrO3+UmKRLYfGLn1QwIhIoTQJVvIrSB4qfGs1hgqYRVw==} dependencies: cron-parser: 4.8.1 @@ -23603,26 +24809,26 @@ packages: dev: false optional: true - /busboy/1.6.0: + /busboy@1.6.0: resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} engines: {node: '>=10.16.0'} dependencies: streamsearch: 1.1.0 - /byte-size/7.0.1: + /byte-size@7.0.1: resolution: {integrity: sha512-crQdqyCwhokxwV1UyDzLZanhkugAgft7vt0qbbdt60C6Zf3CAiGmtUCylbtYwrU6loOUw3euGrNtW1J651ot1A==} engines: {node: '>=10'} dev: true - /bytes/3.0.0: + /bytes@3.0.0: resolution: {integrity: sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=} engines: {node: '>= 0.8'} - /bytes/3.1.2: + /bytes@3.1.2: resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} engines: {node: '>= 0.8'} - /c8/7.13.0: + /c8@7.13.0: resolution: {integrity: sha512-/NL4hQTv1gBL6J6ei80zu3IiTrmePDKXKXOTLpHvcIWZTVYQlDhVWjjWvkhICylE8EwwnMVzDZugCvdx0/DIIA==} engines: {node: '>=10.12.0'} hasBin: true @@ -23641,7 +24847,7 @@ packages: yargs-parser: 20.2.9 dev: true - /cacache/16.1.3: + /cacache@16.1.3: resolution: {integrity: sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: @@ -23667,7 +24873,7 @@ packages: - bluebird dev: true - /cacache/17.0.4: + /cacache@17.0.4: resolution: {integrity: sha512-Z/nL3gU+zTUjz5pCA5vVjYM8pmaw2kxM7JEiE0fv3w77Wj+sFbi70CrBruUWH0uNcEdvLDixFpgA2JM4F4DBjA==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: @@ -23688,7 +24894,7 @@ packages: - bluebird dev: true - /cacache/17.0.5: + /cacache@17.0.5: resolution: {integrity: sha512-Y/PRQevNSsjAPWykl9aeGz8Pr+OI6BYM9fYDNMvOkuUiG9IhG4LEmaYrZZZvioMUEQ+cBCxT0v8wrnCURccyKA==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: @@ -23709,7 +24915,7 @@ packages: - bluebird dev: true - /cache-base/1.0.1: + /cache-base@1.0.1: resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==} engines: {node: '>=0.10.0'} dependencies: @@ -23724,11 +24930,11 @@ packages: unset-value: 1.0.0 dev: true - /cachedir/2.3.0: + /cachedir@2.3.0: resolution: {integrity: sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==} engines: {node: '>=6'} - /caching-transform/4.0.0: + /caching-transform@4.0.0: resolution: {integrity: sha512-kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA==} engines: {node: '>=8'} dependencies: @@ -23738,53 +24944,53 @@ packages: write-file-atomic: 3.0.3 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.2.1 - /caller-callsite/2.0.0: + /caller-callsite@2.0.0: resolution: {integrity: sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==} engines: {node: '>=4'} dependencies: callsites: 2.0.0 dev: true - /caller-path/2.0.0: + /caller-path@2.0.0: resolution: {integrity: sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==} engines: {node: '>=4'} dependencies: caller-callsite: 2.0.0 dev: true - /callsites/2.0.0: + /callsites@2.0.0: resolution: {integrity: sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==} engines: {node: '>=4'} dev: true - /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: true - /camel-case/4.1.2: + /camel-case@4.1.2: resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==} dependencies: pascal-case: 3.1.2 tslib: 2.6.2 - /camelcase-css/2.0.1: + /camelcase-css@2.0.1: resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} engines: {node: '>= 6'} - /camelcase-keys/4.2.0: + /camelcase-keys@4.2.0: resolution: {integrity: sha512-Ej37YKYbFUI8QiYlvj9YHb6/Z60dZyPJW0Cs8sFilMbd2lP0bw3ylAq9yJkK4lcTA2dID5fG8LjmJYbO7kWb7Q==} engines: {node: '>=4'} dependencies: @@ -23793,7 +24999,7 @@ packages: quick-lru: 1.1.0 dev: true - /camelcase-keys/6.2.2: + /camelcase-keys@6.2.2: resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} engines: {node: '>=8'} dependencies: @@ -23802,7 +25008,7 @@ packages: quick-lru: 4.0.1 dev: true - /camelcase-keys/7.0.2: + /camelcase-keys@7.0.2: resolution: {integrity: sha512-Rjs1H+A9R+Ig+4E/9oyB66UC5Mj9Xq3N//vcLf2WzgdTi/3gUu3Z9KoqmlrEG4VuuLK8wJHofxzdQXz/knhiYg==} engines: {node: '>=12'} dependencies: @@ -23812,27 +25018,27 @@ packages: type-fest: 1.4.0 dev: true - /camelcase/4.1.0: + /camelcase@4.1.0: resolution: {integrity: sha512-FxAv7HpHrXbh3aPo4o2qxHay2lkLY3x5Mw3KeE4KQE8ysVfziWeRZDwcjauvwBSGEC/nXUPzZy8zeh4HokqOnw==} engines: {node: '>=4'} dev: true - /camelcase/5.3.1: + /camelcase@5.3.1: resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} engines: {node: '>=6'} - /camelcase/6.3.0: + /camelcase@6.3.0: resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} engines: {node: '>=10'} - /can-write-to-dir/1.1.1: + /can-write-to-dir@1.1.1: resolution: {integrity: sha512-eOgiEWqjppB+3DN/5E82EQ8dTINus8d9GXMCbEsUnp2hcUIcXmBvzWmD3tXMk3CuBK0v+ddK9qw0EAF+JVRMjQ==} engines: {node: '>=10.13'} dependencies: path-temp: 2.0.0 dev: true - /caniuse-api/3.0.0: + /caniuse-api@3.0.0: resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} dependencies: browserslist: 4.21.10 @@ -23840,14 +25046,14 @@ packages: lodash.memoize: 4.1.2 lodash.uniq: 4.5.0 - /caniuse-lite/1.0.30001477: + /caniuse-lite@1.0.30001477: resolution: {integrity: sha512-lZim4iUHhGcy5p+Ri/G7m84hJwncj+Kz7S5aD4hoQfslKZJgt0tHc/hafVbqHC5bbhHb+mrW2JOUHkI5KH7toQ==} dev: false - /caniuse-lite/1.0.30001525: + /caniuse-lite@1.0.30001525: resolution: {integrity: sha512-/3z+wB4icFt3r0USMwxujAqRvaD/B7rvGTsKhbhSQErVrJvkZCLhgNLJxU8MevahQVH6hCU9FsHdNUFbiwmE7Q==} - /cardinal/2.1.1: + /cardinal@2.1.1: resolution: {integrity: sha512-JSr5eOgoEymtYHBjNWyjrMqet9Am2miJhlfKNdqLp6zoeAh0KN5dRAcxlecj5mAJrmQomgiOBj35xHLrFjqBpw==} hasBin: true dependencies: @@ -23855,26 +25061,27 @@ packages: redeyed: 2.1.1 dev: true - /case-sensitive-paths-webpack-plugin/2.4.0: + /case-sensitive-paths-webpack-plugin@2.4.0: resolution: {integrity: sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==} engines: {node: '>=4'} - /caseless/0.12.0: + /caseless@0.12.0: resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==} - /catharsis/0.9.0: + /catharsis@0.9.0: resolution: {integrity: sha512-prMTQVpcns/tzFgFVkVp6ak6RykZyWb3gu8ckUpd6YkTlacOd3DXGJjIpD4Q6zJirizvaiAjSSHlOsA+6sNh2A==} engines: {node: '>= 10'} + requiresBuild: true dependencies: lodash: 4.17.21 dev: false optional: true - /ccount/2.0.1: + /ccount@2.0.1: resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} dev: true - /chai/4.3.7: + /chai@4.3.7: resolution: {integrity: sha512-HLnAzZ2iupm25PlN0xFreAlBA5zaBSv3og0DdeGA4Ar6h6rJ3A0rolRUKJhSF2V10GZKDgWF/VmAEsNWjCRB+A==} engines: {node: '>=4'} dependencies: @@ -23887,7 +25094,7 @@ packages: type-detect: 4.0.8 dev: true - /chalk-animation/1.6.0: + /chalk-animation@1.6.0: resolution: {integrity: sha512-Q8vVq6eD5IOhWI0s9WdUawDzMRjNrR4rOCiu409eZRTIHID5OjoTTEkpGZngL/BPQnL7yYmBhlXXpPJ9SYuARw==} engines: {node: '>=4'} hasBin: true @@ -23897,7 +25104,7 @@ packages: meow: 4.0.1 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: @@ -23908,7 +25115,7 @@ packages: supports-color: 2.0.0 dev: true - /chalk/2.4.2: + /chalk@2.4.2: resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} engines: {node: '>=4'} dependencies: @@ -23916,7 +25123,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: @@ -23924,7 +25131,7 @@ packages: supports-color: 7.2.0 dev: false - /chalk/4.1.0: + /chalk@4.1.0: resolution: {integrity: sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==} engines: {node: '>=10'} dependencies: @@ -23932,19 +25139,19 @@ 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 - /chalk/5.2.0: + /chalk@5.2.0: resolution: {integrity: sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==} engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} dev: true - /change-case/3.1.0: + /change-case@3.1.0: resolution: {integrity: sha512-2AZp7uJZbYEzRPsFoa+ijKdvp9zsrnnt6+yFokfwEpeJm0xuJDVoxiRCAaTzyJND8GJkofo2IcKWaUZ/OECVzw==} dependencies: camel-case: 3.0.0 @@ -23967,58 +25174,58 @@ packages: upper-case-first: 1.1.2 dev: true - /char-regex/1.0.2: + /char-regex@1.0.2: resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} engines: {node: '>=10'} - /char-regex/2.0.1: + /char-regex@2.0.1: resolution: {integrity: sha512-oSvEeo6ZUD7NepqAat3RqoucZ5SeqLJgOvVIwkafu6IP3V0pO38s/ypdVUmDDK6qIIHNlYHJAKX9E7R7HoKElw==} engines: {node: '>=12.20'} - /character-entities-legacy/1.1.4: + /character-entities-legacy@1.1.4: resolution: {integrity: sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==} dev: false - /character-entities/1.2.4: + /character-entities@1.2.4: resolution: {integrity: sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==} dev: false - /character-entities/2.0.2: + /character-entities@2.0.2: resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} dev: true - /character-reference-invalid/1.1.4: + /character-reference-invalid@1.1.4: resolution: {integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==} dev: false - /chardet/0.7.0: + /chardet@0.7.0: resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} - /charenc/0.0.2: + /charenc@0.0.2: resolution: {integrity: sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==} dev: false - /chart.js/3.9.1: + /chart.js@3.9.1: resolution: {integrity: sha512-Ro2JbLmvg83gXF5F4sniaQ+lTbSv18E+TIf2cOeiH1Iqd2PGFOtem+DUufMZsCJwFE7ywPOpfXFBwRTGq7dh6w==} dev: false - /check-disk-space/3.4.0: + /check-disk-space@3.4.0: resolution: {integrity: sha512-drVkSqfwA+TvuEhFipiR1OC9boEGZL5RrWvVsOthdcvQNXyCCuKkEiTOTXZ7qxSf/GLwq4GvzfrQD/Wz325hgw==} engines: {node: '>=16'} dev: false - /check-error/1.0.2: + /check-error@1.0.2: resolution: {integrity: sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA==} dev: true - /check-more-types/2.24.0: + /check-more-types@2.24.0: resolution: {integrity: sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==} engines: {node: '>= 0.8.0'} - /check-types/11.2.2: + /check-types@11.2.2: resolution: {integrity: sha512-HBiYvXvn9Z70Z88XKjz3AEKd4HJhBXsa3j7xFnITAzoS8+q6eIGi8qDB8FKPBAjtuxjI/zFpwuiCb8oDtKOYrA==} - /cheerio-select/2.1.0: + /cheerio-select@2.1.0: resolution: {integrity: sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==} dependencies: boolbase: 1.0.0 @@ -24029,7 +25236,7 @@ packages: domutils: 3.0.1 dev: false - /cheerio/1.0.0-rc.12: + /cheerio@1.0.0-rc.12: resolution: {integrity: sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==} engines: {node: '>= 6'} dependencies: @@ -24042,7 +25249,7 @@ packages: parse5-htmlparser2-tree-adapter: 7.0.0 dev: false - /chokidar/1.7.0: + /chokidar@1.7.0: resolution: {integrity: sha512-mk8fAWcRUOxY7btlLtitj3A45jOwSAxH4tOFOoEGbVsl6cL6pPMWUy7dwZ/canfj3QEdP6FHSnf/l1c6/WkzVg==} deprecated: Chokidar 2 will break on node v14+. Upgrade to chokidar 3 with 15x less dependencies. dependencies: @@ -24060,7 +25267,7 @@ packages: - supports-color dev: true - /chokidar/3.5.1: + /chokidar@3.5.1: resolution: {integrity: sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw==} engines: {node: '>= 8.10.0'} dependencies: @@ -24075,7 +25282,7 @@ packages: fsevents: 2.3.3 dev: true - /chokidar/3.5.3: + /chokidar@3.5.3: resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} engines: {node: '>= 8.10.0'} dependencies: @@ -24089,37 +25296,37 @@ packages: optionalDependencies: fsevents: 2.3.3 - /chownr/1.1.4: + /chownr@1.1.4: resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==} dev: true - /chownr/2.0.0: + /chownr@2.0.0: resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} engines: {node: '>=10'} - /chroma-js/2.4.2: + /chroma-js@2.4.2: resolution: {integrity: sha512-U9eDw6+wt7V8z5NncY2jJfZa+hUH8XEj8FQHgFJTrUFnJfXYf4Ml4adI2vXZOjqRDpFWtYVWypDfZwnJ+HIR4A==} dev: false - /chrome-trace-event/1.0.3: + /chrome-trace-event@1.0.3: resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==} engines: {node: '>=6.0'} - /ci-info/2.0.0: + /ci-info@2.0.0: resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==} dev: true - /ci-info/3.8.0: + /ci-info@3.8.0: resolution: {integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==} engines: {node: '>=8'} - /cjs-module-lexer/1.2.2: + /cjs-module-lexer@1.2.2: resolution: {integrity: sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==} - /class-transformer/0.5.1: + /class-transformer@0.5.1: resolution: {integrity: sha512-SQa1Ws6hUbfC98vKGxZH3KFY0Y1lm5Zm0SY8XX9zbK7FJCyVEac3ATW0RIpwzW+oOfmHE5PMPufDG9hCfoEOMw==} - /class-utils/0.3.6: + /class-utils@0.3.6: resolution: {integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==} engines: {node: '>=0.10.0'} dependencies: @@ -24129,39 +25336,39 @@ packages: static-extend: 0.1.2 dev: true - /class-validator/0.14.0: + /class-validator@0.14.0: resolution: {integrity: sha512-ct3ltplN8I9fOwUd8GrP8UQixwff129BkEtuWDKL5W45cQuLd19xqmTLu5ge78YDm/fdje6FMt0hGOhl0lii3A==} dependencies: '@types/validator': 13.7.14 libphonenumber-js: 1.10.26 validator: 13.9.0 - /classcat/5.0.4: + /classcat@5.0.4: resolution: {integrity: sha512-sbpkOw6z413p+HDGcBENe498WM9woqWHiJxCq7nvmxe9WmrUmqfAcxpIwAiMtM5Q3AhYkzXcNQHqsWq0mND51g==} dev: false - /classnames/2.3.2: + /classnames@2.3.2: resolution: {integrity: sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==} dev: false - /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-css/5.3.2: + /clean-css@5.3.2: resolution: {integrity: sha512-JVJbM+f3d3Q704rF4bqQ5UUyTtuJ0JRKNbTKVEeujCCBoMdkEi+V+e8oktO9qGQNSvHrFTM6JZRXrUvGR1czww==} engines: {node: '>= 10.0'} dependencies: source-map: 0.6.1 - /clean-stack/2.2.0: + /clean-stack@2.2.0: resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} engines: {node: '>=6'} - /clear-module/4.1.2: + /clear-module@4.1.2: resolution: {integrity: sha512-LWAxzHqdHsAZlPlEyJ2Poz6AIs384mPeqLVCru2p0BrP9G/kVGuhNyZYClLO6cXlnuJjzC8xtsJIuMjKqLXoAw==} engines: {node: '>=8'} dependencies: @@ -24169,11 +25376,11 @@ packages: resolve-from: 5.0.0 dev: true - /cli-boxes/2.2.1: + /cli-boxes@2.2.1: resolution: {integrity: sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==} engines: {node: '>=6'} - /cli-columns/4.0.0: + /cli-columns@4.0.0: resolution: {integrity: sha512-XW2Vg+w+L9on9wtwKpyzluIPCWXjaBahI7mTcYjx+BVIYD9c3yqcv/yKC7CmdCZat4rq2yiE1UMSJC5ivKfMtQ==} engines: {node: '>= 10'} dependencies: @@ -24181,28 +25388,28 @@ packages: strip-ansi: 6.0.1 dev: true - /cli-cursor/2.1.0: + /cli-cursor@2.1.0: resolution: {integrity: sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==} engines: {node: '>=4'} dependencies: restore-cursor: 2.0.0 dev: true - /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'} - /cli-spinners/2.8.0: + /cli-spinners@2.8.0: resolution: {integrity: sha512-/eG5sJcvEIwxcdYM86k5tPwn0MUzkX5YY3eImTGpJOZgVe4SdTMY14vQpcxgBzJ0wXwAYrS8E+c3uHeK4JNyzQ==} engines: {node: '>=6'} - /cli-table3/0.6.3: + /cli-table3@0.6.3: resolution: {integrity: sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==} engines: {node: 10.* || >= 12.*} dependencies: @@ -24210,7 +25417,7 @@ packages: optionalDependencies: '@colors/colors': 1.5.0 - /cli-truncate/0.2.1: + /cli-truncate@0.2.1: resolution: {integrity: sha512-f4r4yJnbT++qUPI9NR4XLDLq41gQ+uqnPItWG0F5ZkehuNiTTa3EY0S4AqTSUOeJ7/zU41oWPQSNkW5BqPL9bg==} engines: {node: '>=0.10.0'} dependencies: @@ -24218,18 +25425,18 @@ packages: string-width: 1.0.2 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-width/3.0.0: + /cli-width@3.0.0: resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==} engines: {node: '>= 10'} - /clicksend/5.0.37: + /clicksend@5.0.37: resolution: {integrity: sha512-f6kEXKxByZx+i9yKLGH6GhbkdUxxZ285LEJUV6amKMc/gHkEmcM/3UMmLHOeHeNhj91zYSwsZOcrcTkASv5S7w==} dependencies: fs: 0.0.1-security @@ -24237,7 +25444,7 @@ packages: request: 2.88.2 dev: false - /cliui/5.0.0: + /cliui@5.0.0: resolution: {integrity: sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==} dependencies: string-width: 3.1.0 @@ -24245,7 +25452,7 @@ packages: wrap-ansi: 5.1.0 dev: true - /cliui/6.0.0: + /cliui@6.0.0: resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==} dependencies: string-width: 4.2.3 @@ -24253,14 +25460,14 @@ 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 - /cliui/8.0.1: + /cliui@8.0.1: resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} engines: {node: '>=12'} dependencies: @@ -24268,7 +25475,7 @@ packages: strip-ansi: 6.0.1 wrap-ansi: 7.0.0 - /clone-deep/4.0.1: + /clone-deep@4.0.1: resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==} engines: {node: '>=6'} dependencies: @@ -24276,40 +25483,40 @@ packages: kind-of: 6.0.3 shallow-clone: 3.0.1 - /clone/1.0.4: + /clone@1.0.4: resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} engines: {node: '>=0.8'} - /clone/2.1.2: + /clone@2.1.2: resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==} engines: {node: '>=0.8'} - /clsx/1.1.1: + /clsx@1.1.1: resolution: {integrity: sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA==} engines: {node: '>=6'} dev: false - /clsx/1.2.1: + /clsx@1.2.1: resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==} engines: {node: '>=6'} dev: false - /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'} - /cmd-shim/5.0.0: + /cmd-shim@5.0.0: resolution: {integrity: sha512-qkCtZ59BidfEwHltnJwkyVZn+XQojdAySM1D1gSeh11Z4pW1Kpolkyo53L5noc0nrxmIvyFwTmJRo4xs7FFLPw==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: mkdirp-infer-owner: 2.0.0 dev: true - /co/4.6.0: + /co@4.6.0: resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==} engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} - /coa/2.0.2: + /coa@2.0.2: resolution: {integrity: sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==} engines: {node: '>= 4.0'} dependencies: @@ -24317,12 +25524,12 @@ packages: chalk: 2.4.2 q: 1.5.1 - /code-point-at/1.1.0: + /code-point-at@1.1.0: resolution: {integrity: sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==} engines: {node: '>=0.10.0'} dev: true - /codecov/3.8.3: + /codecov@3.8.3: resolution: {integrity: sha512-Y8Hw+V3HgR7V71xWH2vQ9lyS358CbGCldWlJFR0JirqoGtOoas3R3/OclRTvgUYFK29mmJICDPauVKmpqbwhOA==} engines: {node: '>=4.0'} deprecated: https://about.codecov.io/blog/codecov-uploader-deprecation-plan/ @@ -24338,18 +25545,18 @@ packages: - supports-color dev: true - /codex-notifier/1.1.2: + /codex-notifier@1.1.2: resolution: {integrity: sha512-DCp6xe/LGueJ1N5sXEwcBc3r3PyVkEEDNWCVigfvywAkeXcZMk9K41a31tkEFBW0Ptlwji6/JlAb49E3Yrxbtg==} dev: false - /codex-tooltip/1.0.5: + /codex-tooltip@1.0.5: resolution: {integrity: sha512-IuA8LeyLU5p1B+HyhOsqR6oxyFQ11k3i9e9aXw40CrHFTRO2Y1npNBVU3W1SvhKAbUU7R/YikUBdcYFP0RcJag==} dev: false - /collect-v8-coverage/1.0.1: + /collect-v8-coverage@1.0.1: resolution: {integrity: sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==} - /collection-visit/1.0.0: + /collection-visit@1.0.0: resolution: {integrity: sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==} engines: {node: '>=0.10.0'} dependencies: @@ -24357,65 +25564,65 @@ packages: object-visit: 1.0.1 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-string/1.9.1: + /color-string@1.9.1: resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==} dependencies: color-name: 1.1.4 simple-swizzle: 0.2.2 dev: false - /color-support/1.1.3: + /color-support@1.1.3: resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==} hasBin: true - /color/3.2.1: + /color@3.2.1: resolution: {integrity: sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==} dependencies: color-convert: 1.9.3 color-string: 1.9.1 dev: false - /colord/2.9.3: + /colord@2.9.3: resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==} - /colorette/2.0.19: + /colorette@2.0.19: resolution: {integrity: sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==} - /colors/1.0.3: + /colors@1.0.3: resolution: {integrity: sha512-pFGrxThWcWQ2MsAz6RtgeWe4NK2kUE1WfsrvvlctdII745EW9I0yflqhe7++M5LEc7bV2c/9/5zc8sFcpL0Drw==} engines: {node: '>=0.1.90'} dev: true - /colors/1.4.0: + /colors@1.4.0: resolution: {integrity: sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==} engines: {node: '>=0.1.90'} dev: true - /colorspace/1.1.4: + /colorspace@1.1.4: resolution: {integrity: sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==} dependencies: color: 3.2.1 text-hex: 1.0.0 dev: false - /columnify/1.6.0: + /columnify@1.6.0: resolution: {integrity: sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q==} engines: {node: '>=8.0.0'} dependencies: @@ -24423,17 +25630,17 @@ packages: wcwidth: 1.0.1 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 - /comma-separated-tokens/1.0.8: + /comma-separated-tokens@1.0.8: resolution: {integrity: sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==} dev: false - /command-line-application/0.10.1: + /command-line-application@0.10.1: resolution: {integrity: sha512-PWZ4nRkz09MbBRocqEe/Fil3RjTaMNqw0didl1n/i3flDcw/vecVfvsw3r+ZHhGs4BOuW7sk3cEYSdfM3Wv5/Q==} dependencies: '@types/command-line-args': 5.2.0 @@ -24446,7 +25653,7 @@ packages: tslib: 1.10.0 dev: true - /command-line-args/5.2.1: + /command-line-args@5.2.1: resolution: {integrity: sha512-H4UfQhZyakIjC74I9d34fGYDwk3XpSr17QhEd0Q3I9Xq1CETHo4Hcuo87WyWHpAF1aSLjLRf5lD9ZGX2qStUvg==} engines: {node: '>=4.0.0'} dependencies: @@ -24456,7 +25663,7 @@ packages: typical: 4.0.0 dev: true - /command-line-usage/6.1.3: + /command-line-usage@6.1.3: resolution: {integrity: sha512-sH5ZSPr+7UStsloltmDh7Ce5fb8XPlHyoPzTpyyMuYCtervL65+ubVZ6Q61cFtFl62UyJlc8/JwERRbAFPUqgw==} engines: {node: '>=8.0.0'} dependencies: @@ -24466,45 +25673,44 @@ packages: typical: 5.2.0 dev: true - /commander/10.0.0: + /commander@10.0.0: resolution: {integrity: sha512-zS5PnTI22FIRM6ylNW8G4Ap0IEOyk62fhLSD0+uHRT9McRCLGpkVNvao4bjimpK/GShynyQkFFxHhwMcETmduA==} engines: {node: '>=14'} dev: true - /commander/10.0.1: + /commander@10.0.1: resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==} engines: {node: '>=14'} - dev: true - /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/6.2.1: + /commander@6.2.1: resolution: {integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==} engines: {node: '>= 6'} - /commander/7.2.0: + /commander@7.2.0: resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} engines: {node: '>= 10'} - /commander/8.3.0: + /commander@8.3.0: resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} engines: {node: '>= 12'} - /commander/9.4.1: + /commander@9.4.1: resolution: {integrity: sha512-5EEkTNyHNGFPD2H+c/dXXfQZYa/scCKasxWcXJaWnNJ99pnQN9Vnmqow+p+PlFPE63Q6mThaZws1T+HxfpgtPw==} engines: {node: ^12.20.0 || >=14} dev: true - /commander/9.5.0: + /commander@9.5.0: resolution: {integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==} engines: {node: ^12.20.0 || >=14} - /comment-json/4.2.3: + /comment-json@4.2.3: resolution: {integrity: sha512-SsxdiOf064DWoZLH799Ata6u7iV658A11PlWtZATDlXPpKGJnbJZ5Z24ybixAi+LUUqJ/GKowAejtC5GFUG7Tw==} engines: {node: '>= 6'} dependencies: @@ -24515,13 +25721,13 @@ packages: repeat-string: 1.6.1 dev: true - /commitizen/4.3.0_@swc+core@1.3.49: + /commitizen@4.3.0(@swc/core@1.3.49): resolution: {integrity: sha512-H0iNtClNEhT0fotHvGV3E9tDejDeS04sN1veIebsKYGMuGscFaswRoYJKmT3eW85eIJAs0F28bG2+a/9wCOfPw==} engines: {node: '>= 12'} hasBin: true dependencies: cachedir: 2.3.0 - cz-conventional-changelog: 3.3.0_@swc+core@1.3.49 + cz-conventional-changelog: 3.3.0(@swc/core@1.3.49) dedent: 0.7.0 detect-indent: 6.1.0 find-node-modules: 2.1.3 @@ -24539,35 +25745,35 @@ packages: - '@swc/wasm' dev: true - /common-ancestor-path/1.0.1: + /common-ancestor-path@1.0.1: resolution: {integrity: sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==} dev: true - /common-path-prefix/3.0.0: + /common-path-prefix@3.0.0: resolution: {integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==} - /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'} - /commondir/1.0.1: + /commondir@1.0.1: resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} - /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 - /component-emitter/1.3.0: + /component-emitter@1.3.0: resolution: {integrity: sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==} - /component-type/1.2.1: + /component-type@1.2.1: resolution: {integrity: sha512-Kgy+2+Uwr75vAi6ChWXgHuLvd+QLD7ssgpaRq2zCvt80ptvAfMc/hijcJxXkBa2wMlEZcJvC2H8Ubo+A9ATHIg==} dev: false - /compress-commons/4.1.1: + /compress-commons@4.1.1: resolution: {integrity: sha512-QLdDLCKNV2dtoTorqgxngQCMA+gWXkM/Nwu7FpeBhk/RdkzimqC3jueb/FDmaZeXh+uby1jkBqE3xArsLBE5wQ==} engines: {node: '>= 10'} dependencies: @@ -24577,13 +25783,13 @@ packages: readable-stream: 3.6.2 dev: false - /compressible/2.0.18: + /compressible@2.0.18: resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==} engines: {node: '>= 0.6'} dependencies: mime-db: 1.52.0 - /compression-webpack-plugin/10.0.0_webpack@5.82.1: + /compression-webpack-plugin@10.0.0(webpack@5.82.1): resolution: {integrity: sha512-wLXLIBwpul/ALcm7Aj+69X0pYT3BYt6DdPn3qrgBIh9YejV9Bju9ShhlAsjujLyWMo6SAweFIWaUoFmXZNuNrg==} engines: {node: '>= 14.15.0'} peerDependencies: @@ -24591,10 +25797,10 @@ packages: dependencies: schema-utils: 4.0.0 serialize-javascript: 6.0.1 - webpack: 5.82.1_w67ycjwq2niq3jlxgktvf5aow4 + webpack: 5.82.1(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) dev: true - /compression/1.7.4: + /compression@1.7.4: resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==} engines: {node: '>= 0.8.0'} dependencies: @@ -24608,14 +25814,14 @@ packages: transitivePeerDependencies: - supports-color - /compute-scroll-into-view/1.0.20: + /compute-scroll-into-view@1.0.20: resolution: {integrity: sha512-UCB0ioiyj8CRjtrvaceBLqqhZCVP+1B8+NWQhmdsm0VXOJtobBCf1dBQmebCCo34qZmUwZfIH2MZLqNHazrfjg==} 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: @@ -24624,7 +25830,7 @@ packages: readable-stream: 2.3.8 typedarray: 0.0.6 - /concat-stream/2.0.0: + /concat-stream@2.0.0: resolution: {integrity: sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==} engines: {'0': node >= 6.0} dependencies: @@ -24633,7 +25839,7 @@ packages: readable-stream: 3.6.2 typedarray: 0.0.6 - /concurrently/5.3.0: + /concurrently@5.3.0: resolution: {integrity: sha512-8MhqOB6PWlBfA2vJ8a0bSFKATOdWlHiQlk11IfmQBPaHVP8oP2gsh2MObE6UR3hqDHqvaIvLTyceNW6obVuFHQ==} engines: {node: '>=6.0.0'} hasBin: true @@ -24649,7 +25855,7 @@ packages: yargs: 13.3.2 dev: true - /condense-newlines/0.2.1: + /condense-newlines@0.2.1: resolution: {integrity: sha512-P7X+QL9Hb9B/c8HI5BFFKmjgBu2XpQuF98WZ9XkO+dBGgk5XgwiQz7o1SmpglNWId3581UcS0SFAWfoIhMHPfg==} engines: {node: '>=0.10.0'} dependencies: @@ -24658,13 +25864,13 @@ packages: kind-of: 3.2.2 dev: false - /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 - /configstore/5.0.1: + /configstore@5.0.1: resolution: {integrity: sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==} engines: {node: '>=8'} dependencies: @@ -24675,14 +25881,14 @@ packages: write-file-atomic: 3.0.3 xdg-basedir: 4.0.0 - /confusing-browser-globals/1.0.11: + /confusing-browser-globals@1.0.11: resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==} - /connect-history-api-fallback/2.0.0: + /connect-history-api-fallback@2.0.0: resolution: {integrity: sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==} engines: {node: '>=0.8'} - /connect/3.7.0: + /connect@3.7.0: resolution: {integrity: sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==} engines: {node: '>= 0.10.0'} dependencies: @@ -24694,34 +25900,34 @@ 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/2.0.0: + /constant-case@2.0.0: resolution: {integrity: sha512-eS0N9WwmjTqrOmR3o83F5vW8Z+9R1HnVz3xmzT2PMFug9ly+Au/fxRWlEBSb6LcZwspSsEn9Xs1uw9YgzAg1EQ==} dependencies: snake-case: 2.1.0 upper-case: 1.1.3 dev: true - /constants-browserify/1.0.0: + /constants-browserify@1.0.0: resolution: {integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==} dev: true - /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.5: + /content-type@1.0.5: resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==} 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: @@ -24729,7 +25935,7 @@ packages: q: 1.5.1 dev: true - /conventional-changelog-conventionalcommits/5.0.0: + /conventional-changelog-conventionalcommits@5.0.0: resolution: {integrity: sha512-lCDbA+ZqVFQGUj7h9QBKoIpLhl8iihkO0nCTyRNzuXtcd7ubODpYB04IFy31JloiJgG0Uovu8ot8oxRzn7Nwtw==} engines: {node: '>=10'} dependencies: @@ -24738,7 +25944,7 @@ packages: q: 1.5.1 dev: true - /conventional-changelog-core/4.2.4: + /conventional-changelog-core@4.2.4: resolution: {integrity: sha512-gDVS+zVJHE2v4SLc6B0sLsPiloR0ygU7HaDW14aNJE1v4SlqJPILPl/aJC7YdtRE4CybBf8gDwObBvKha8Xlyg==} engines: {node: '>=10'} dependencies: @@ -24758,12 +25964,12 @@ packages: through2: 4.0.2 dev: true - /conventional-changelog-preset-loader/2.3.4: + /conventional-changelog-preset-loader@2.3.4: resolution: {integrity: sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g==} engines: {node: '>=10'} dev: true - /conventional-changelog-writer/5.0.1: + /conventional-changelog-writer@5.0.1: resolution: {integrity: sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ==} engines: {node: '>=10'} hasBin: true @@ -24779,11 +25985,11 @@ packages: through2: 4.0.2 dev: true - /conventional-commit-types/3.0.0: + /conventional-commit-types@3.0.0: resolution: {integrity: sha512-SmmCYnOniSsAa9GqWOeLqc179lfr5TRu5b4QFDkbsrJ5TZjPJx85wtOr3zn+1dbeNiXDKGPbZ72IKbPhLXh/Lg==} dev: true - /conventional-commits-filter/2.0.7: + /conventional-commits-filter@2.0.7: resolution: {integrity: sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA==} engines: {node: '>=10'} dependencies: @@ -24791,7 +25997,7 @@ packages: modify-values: 1.0.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 @@ -24804,7 +26010,7 @@ packages: through2: 4.0.2 dev: true - /conventional-recommended-bump/6.1.0: + /conventional-recommended-bump@6.1.0: resolution: {integrity: sha512-uiApbSiNGM/kkdL9GTOLAqC4hbptObFo4wW2QRyHsKciGAfQuLU1ShZ1BIVI/+K2BE/W1AWYQMCXAsv4dyKPaw==} engines: {node: '>=10'} hasBin: true @@ -24819,50 +26025,50 @@ packages: q: 1.5.1 dev: true - /convert-source-map/1.9.0: + /convert-source-map@1.9.0: resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} - /convert-source-map/2.0.0: + /convert-source-map@2.0.0: resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} - /cookie-signature/1.0.6: + /cookie-signature@1.0.6: resolution: {integrity: sha1-4wOogrNCzD7oylE6eZmXNNqzriw=} - /cookie/0.4.2: + /cookie@0.4.2: resolution: {integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==} engines: {node: '>= 0.6'} - /cookie/0.5.0: + /cookie@0.5.0: resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==} engines: {node: '>= 0.6'} - /cookiejar/2.1.4: + /cookiejar@2.1.4: resolution: {integrity: sha512-LDx6oHrK+PhzLKJU9j5S7/Y3jM/mUHvD/DeI1WQmJn652iPC5Y4TBzC9l+5OMOXlyTTA+SmVUPm0HQUwpD5Jqw==} - /copy-anything/2.0.6: + /copy-anything@2.0.6: resolution: {integrity: sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==} dependencies: is-what: 3.14.1 - /copy-anything/3.0.3: + /copy-anything@3.0.3: resolution: {integrity: sha512-fpW2W/BqEzqPp29QS+MwwfisHCQZtiduTe/m8idFo0xbti9fIZ2WVhAsCv4ggFVH3AgCkVdpoOCtQC6gBrdhjw==} engines: {node: '>=12.13'} dependencies: is-what: 4.1.8 dev: false - /copy-descriptor/0.1.1: + /copy-descriptor@0.1.1: resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==} engines: {node: '>=0.10.0'} dev: true - /copy-to-clipboard/3.3.3: + /copy-to-clipboard@3.3.3: resolution: {integrity: sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==} dependencies: toggle-selection: 1.0.6 dev: false - /copy-webpack-plugin/11.0.0_webpack@5.76.1: + /copy-webpack-plugin@11.0.0(webpack@5.76.1): resolution: {integrity: sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==} engines: {node: '>= 14.15.0'} peerDependencies: @@ -24874,53 +26080,53 @@ packages: normalize-path: 3.0.0 schema-utils: 4.0.0 serialize-javascript: 6.0.1 - webpack: 5.76.1 + webpack: 5.76.1(@swc/core@1.3.49)(esbuild@0.17.8) dev: true - /core-js-compat/3.30.0: + /core-js-compat@3.30.0: resolution: {integrity: sha512-P5A2h/9mRYZFIAP+5Ab8ns6083IyVpSclU74UNvbGVQ8VM7n3n3/g2yF3AkKQ9NXz2O+ioxLbEWKnDtgsFamhg==} dependencies: browserslist: 4.21.10 dev: true - /core-js-compat/3.32.2: + /core-js-compat@3.32.2: resolution: {integrity: sha512-+GjlguTDINOijtVRUxrQOv3kfu9rl+qPNdX2LTbJ/ZyVTuxK+ksVSAGX1nHstu4hrv1En/uPTtWgq2gI5wt4AQ==} dependencies: browserslist: 4.21.10 - /core-js-pure/3.30.0: + /core-js-pure@3.30.0: resolution: {integrity: sha512-+2KbMFGeBU0ln/csoPqTe0i/yfHbrd2EUhNMObsGtXMKS/RTtlkYyi+/3twLcevbgNR0yM/r0Psa3TEoQRpFMQ==} requiresBuild: true - /core-js/2.6.12: + /core-js@2.6.12: resolution: {integrity: sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==} 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: true - /core-js/3.30.0: + /core-js@3.30.0: resolution: {integrity: sha512-hQotSSARoNh1mYPi9O2YaWeiq/cEB95kOrFb4NCrO4RIFt1qqNpKsaE+vy/L3oiqvND5cThqXzUU3r9F7Efztg==} requiresBuild: true - /core-util-is/1.0.2: + /core-util-is@1.0.2: resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==} - /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-typescript-loader/4.3.0_b5dwmsbekyevytdgwiizfpibom: + /cosmiconfig-typescript-loader@4.3.0(@types/node@14.18.42)(cosmiconfig@8.2.0)(ts-node@10.9.1)(typescript@4.9.5): resolution: {integrity: sha512-NTxV1MFfZDLPiBMjxbHRwSh5LaLcPMwNdCutmnHJCKoVnlvldPWlllonKwrsRJ5pYZBIBGRWWU2tfvzxgeSW5Q==} engines: {node: '>=12', npm: '>=6'} peerDependencies: @@ -24929,14 +26135,13 @@ packages: ts-node: '>=10' typescript: '>=3' dependencies: - '@types/node': 20.4.7 + '@types/node': 14.18.42 cosmiconfig: 8.2.0 - ts-node: 10.9.1_3oc4l4vkwjasz4xtxrjz3zw4u4 + ts-node: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typescript: 4.9.5 dev: true - optional: true - /cosmiconfig-typescript-loader/4.3.0_jevzlj2cgfjah73lpomwhwagra: + /cosmiconfig-typescript-loader@4.3.0(@types/node@20.4.7)(cosmiconfig@8.2.0)(ts-node@10.9.1)(typescript@4.9.5): resolution: {integrity: sha512-NTxV1MFfZDLPiBMjxbHRwSh5LaLcPMwNdCutmnHJCKoVnlvldPWlllonKwrsRJ5pYZBIBGRWWU2tfvzxgeSW5Q==} engines: {node: '>=12', npm: '>=6'} peerDependencies: @@ -24945,13 +26150,14 @@ packages: ts-node: '>=10' typescript: '>=3' dependencies: - '@types/node': 14.18.42 + '@types/node': 20.4.7 cosmiconfig: 8.2.0 - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna + ts-node: 10.9.1(@swc/core@1.3.49)(@types/node@20.4.7)(typescript@4.9.5) typescript: 4.9.5 dev: true + optional: true - /cosmiconfig/5.2.1: + /cosmiconfig@5.2.1: resolution: {integrity: sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==} engines: {node: '>=4'} dependencies: @@ -24961,7 +26167,7 @@ packages: parse-json: 4.0.0 dev: true - /cosmiconfig/6.0.0: + /cosmiconfig@6.0.0: resolution: {integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==} engines: {node: '>=8'} dependencies: @@ -24971,7 +26177,7 @@ packages: path-type: 4.0.0 yaml: 1.10.2 - /cosmiconfig/7.0.0: + /cosmiconfig@7.0.0: resolution: {integrity: sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==} engines: {node: '>=10'} dependencies: @@ -24982,7 +26188,7 @@ packages: yaml: 1.10.2 dev: true - /cosmiconfig/7.1.0: + /cosmiconfig@7.1.0: resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} engines: {node: '>=10'} dependencies: @@ -24992,7 +26198,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: @@ -25002,7 +26208,7 @@ packages: path-type: 4.0.0 dev: true - /cosmiconfig/8.1.3: + /cosmiconfig@8.1.3: resolution: {integrity: sha512-/UkO2JKI18b5jVMJUp0lvKFMpa/Gye+ZgZjKD+DGEN9y7NRcf/nK1A0sp67ONmKtnDCNMS44E6jrk0Yc3bDuUw==} engines: {node: '>=14'} dependencies: @@ -25012,7 +26218,7 @@ packages: path-type: 4.0.0 dev: true - /cosmiconfig/8.2.0: + /cosmiconfig@8.2.0: resolution: {integrity: sha512-3rTMnFJA1tCOPwRxtgF4wd7Ab2qvDbL8jX+3smjIbS4HlZBagTlpERbdN7iAbWlrfxE3M8c27kTwTawQ7st+OQ==} engines: {node: '>=14'} dependencies: @@ -25022,7 +26228,7 @@ packages: path-type: 4.0.0 dev: true - /coveralls/3.1.1: + /coveralls@3.1.1: resolution: {integrity: sha512-+dxnG2NHncSD1NrqbSM3dn/lE57O6Qf/koe9+I7c+wzkqRmEvcp0kgJdxKInzYzkICKkFMZsX3Vct3++tsF9ww==} engines: {node: '>=6'} hasBin: true @@ -25034,7 +26240,7 @@ packages: request: 2.88.2 dev: true - /cpx/1.5.0: + /cpx@1.5.0: resolution: {integrity: sha512-jHTjZhsbg9xWgsP2vuNW2jnnzBX+p4T+vNI9Lbjzs1n4KhOfa22bQppiFYLsWQKd8TzmL5aSP/Me3yfsCwXbDA==} hasBin: true dependencies: @@ -25053,13 +26259,13 @@ packages: - supports-color dev: true - /crc-32/1.2.2: + /crc-32@1.2.2: resolution: {integrity: sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==} engines: {node: '>=0.8'} hasBin: true dev: false - /crc32-stream/4.0.2: + /crc32-stream@4.0.2: resolution: {integrity: sha512-DxFZ/Hk473b/muq1VJ///PMNLj0ZMnzye9thBpmjpJKCc5eMgB95aK8zCGrGfQ90cWo561Te6HK9D+j4KPdM6w==} engines: {node: '>= 10'} dependencies: @@ -25067,10 +26273,10 @@ packages: readable-stream: 3.6.2 dev: false - /create-require/1.1.1: + /create-require@1.1.1: resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} - /critters/0.0.16: + /critters@0.0.16: resolution: {integrity: sha512-JwjgmO6i3y6RWtLYmXwO5jMd+maZt8Tnfu7VVISmEWyQqfLpB8soBswf8/2bu6SBXxtKA68Al3c+qIG1ApT68A==} dependencies: chalk: 4.1.2 @@ -25081,14 +26287,14 @@ packages: pretty-bytes: 5.6.0 dev: true - /cron-parser/4.8.1: + /cron-parser@4.8.1: resolution: {integrity: sha512-jbokKWGcyU4gl6jAfX97E1gDpY12DJ1cLJZmoDzaAln/shZ+S3KBFBuA2Q6WeUN4gJf/8klnV1EfvhA2lK5IRQ==} engines: {node: '>=12.0.0'} dependencies: luxon: 3.3.0 dev: false - /cross-env/5.2.1: + /cross-env@5.2.1: resolution: {integrity: sha512-1yHhtcfAd1r4nwQgknowuUNfIT9E8dOMMspC36g45dN+iD1blloi7xp8X/xAIDnjHWyt1uQ8PHk2fkNaym7soQ==} engines: {node: '>=4.0'} hasBin: true @@ -25096,14 +26302,14 @@ packages: cross-spawn: 6.0.5 dev: true - /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 dependencies: cross-spawn: 7.0.3 - /cross-fetch/3.1.5: + /cross-fetch@3.1.5: resolution: {integrity: sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==} dependencies: node-fetch: 2.6.7 @@ -25111,7 +26317,7 @@ packages: - encoding dev: false - /cross-spawn/6.0.5: + /cross-spawn@6.0.5: resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==} engines: {node: '>=4.8'} dependencies: @@ -25122,7 +26328,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: @@ -25130,15 +26336,15 @@ packages: shebang-command: 2.0.0 which: 2.0.2 - /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'} - /cspell-dictionary/6.19.2: + /cspell-dictionary@6.19.2: resolution: {integrity: sha512-XLVIsoiy97VAtC4V3tNJkYU7CqWuSejrXIyLdzIaN4yBsC1kOrV1fwJ3vaAuSIqQauDYeST2gBIsHcDuGYEcew==} engines: {node: '>=14'} dependencies: @@ -25149,7 +26355,7 @@ packages: gensequence: 4.0.3 dev: true - /cspell-dictionary/6.31.1: + /cspell-dictionary@6.31.1: resolution: {integrity: sha512-7+K7aQGarqbpucky26wled7QSCJeg6VkLUWS+hLjyf0Cqc9Zew5xsLa4QjReExWUJx+a97jbiflITZNuWxgMrg==} engines: {node: '>=14'} dependencies: @@ -25160,7 +26366,7 @@ packages: gensequence: 5.0.2 dev: true - /cspell-gitignore/6.19.2: + /cspell-gitignore@6.19.2: resolution: {integrity: sha512-dPxGxakkBs5dmD+nCom6t74ejWsd6RJJkgs0sccPDFKULXAInjeKMeTraskYTg4wXqybbiuXCB2sOIdeQmNq6w==} engines: {node: '>=14'} hasBin: true @@ -25169,28 +26375,28 @@ packages: find-up: 5.0.0 dev: true - /cspell-glob/0.1.25: + /cspell-glob@0.1.25: resolution: {integrity: sha512-/XaSHrGBpMJa+duFz3GKOWfrijrfdHT7a/XGgIcq3cymCSpOH+DPho42sl0jLI/hjM+8yv2m8aEoxRT8yVSnlg==} engines: {node: '>=10.0.0'} dependencies: micromatch: 4.0.5 dev: true - /cspell-glob/6.19.2: + /cspell-glob@6.19.2: resolution: {integrity: sha512-raco5vbd3Exb1uQaD5Bn6aS0KpRbNM7etmn/Q2T2KSwhvH+DRSEMTAkSG3rb0+y0ixkA/Qspjt68QnYxsbFPmw==} engines: {node: '>=14'} dependencies: micromatch: 4.0.5 dev: true - /cspell-glob/6.31.1: + /cspell-glob@6.31.1: resolution: {integrity: sha512-ygEmr5hgE4QtO5+L3/ihfMKBhPipbapfS22ilksFSChKMc15Regds0z+z/1ZBoe+OFAPneQfIuBxMwQ/fB00GQ==} engines: {node: '>=14'} dependencies: micromatch: 4.0.5 dev: true - /cspell-grammar/6.19.2: + /cspell-grammar@6.19.2: resolution: {integrity: sha512-f1IswIPxHX0uQaFzmDWJtgWVd3KkFElTnxj0cgvSZs8ehEaC+/jT30q4K36oVA7jgLtdLuDXafQf9Lp2FHf9bA==} engines: {node: '>=14'} hasBin: true @@ -25199,7 +26405,7 @@ packages: '@cspell/cspell-types': 6.19.2 dev: true - /cspell-grammar/6.31.1: + /cspell-grammar@6.31.1: resolution: {integrity: sha512-AsRVP0idcNFVSb9+p9XjMumFj3BUV67WIPWApaAzJl/dYyiIygQObRE+si0/QtFWGNw873b7hNhWZiKjqIdoaQ==} engines: {node: '>=14'} hasBin: true @@ -25208,7 +26414,7 @@ packages: '@cspell/cspell-types': 6.31.1 dev: true - /cspell-io/4.1.7: + /cspell-io@4.1.7: resolution: {integrity: sha512-V0/tUu9FnIS3v+vAvDT6NNa14Nc/zUNX8+YUUOfFAiDJJTdqefmvcWjOJBIMYBf3wIk9iWLmLbMM+bNHqr7DSQ==} engines: {node: '>=10.0.0'} dependencies: @@ -25216,7 +26422,7 @@ packages: iterable-to-stream: 1.0.1 dev: true - /cspell-io/6.19.2: + /cspell-io@6.19.2: resolution: {integrity: sha512-ZVyygx4N8cTF2HeNUXV7IpX/LXSOSCNE+W3gY4/fju1PJWh+roTf7pVDURGtMxpSV7cq44ewYA3/qCgnF8QnkA==} engines: {node: '>=14'} dependencies: @@ -25226,7 +26432,7 @@ packages: - encoding dev: true - /cspell-io/6.31.1: + /cspell-io@6.31.1: resolution: {integrity: sha512-deZcpvTYY/NmLfOdOtzcm+nDvJZozKmj4TY3pPpX0HquPX0A/w42bFRT/zZNmRslFl8vvrCZZUog7SOc6ha3uA==} engines: {node: '>=14'} dependencies: @@ -25236,7 +26442,7 @@ packages: - encoding dev: true - /cspell-lib/4.3.12: + /cspell-lib@4.3.12: resolution: {integrity: sha512-yCCb6MoW1K8Tsr/WVEQoO4dfYhH9bCsjQayccb8MlyDaNNuWJHuX+gUGHsZSXSuChSh8PrTWKXJzs13/uM977g==} engines: {node: '>=10.0.0'} dependencies: @@ -25286,7 +26492,7 @@ packages: vscode-uri: 3.0.7 dev: true - /cspell-lib/6.19.2: + /cspell-lib@6.19.2: resolution: {integrity: sha512-phPyt68bKeTUZKdmnjke2ffnIJPaXLdiUFAeU0kMNk15ljkczjMR4J6WkgYCKc+SCNQjYJSS+z4nLbtQivqDxg==} engines: {node: '>=14.6'} dependencies: @@ -25315,7 +26521,7 @@ packages: - encoding dev: true - /cspell-lib/6.31.1: + /cspell-lib@6.31.1: resolution: {integrity: sha512-KgSiulbLExY+z2jGwkO77+aAkyugsPAw7y07j3hTQLpd+0esPCZqrmbo2ItnkvkDNd/c34PqQCr7/044/rz8gw==} engines: {node: '>=14.6'} dependencies: @@ -25344,14 +26550,14 @@ packages: - encoding dev: true - /cspell-trie-lib/4.2.8: + /cspell-trie-lib@4.2.8: resolution: {integrity: sha512-Nt3c0gxOYXIc3/yhALDukpje1BgR6guvlUKWQO2zb0r7qRWpwUw2j2YM4dWbHQeH/3Hx5ei4Braa6cMaiJ5YBw==} engines: {node: '>=10.0.0'} dependencies: gensequence: 3.1.1 dev: true - /cspell-trie-lib/6.19.2: + /cspell-trie-lib@6.19.2: resolution: {integrity: sha512-4rfiq0FeSlLG1hBQv5DpOgsbOzNs5hGz/V6Kmv0gbqaxRZyw+8sYECqdTNDx+0OXMgSRhUrwMoCpCMyWiq7tBA==} engines: {node: '>=14'} dependencies: @@ -25361,7 +26567,7 @@ packages: gensequence: 4.0.3 dev: true - /cspell-trie-lib/6.31.1: + /cspell-trie-lib@6.31.1: resolution: {integrity: sha512-MtYh7s4Sbr1rKT31P2BK6KY+YfOy3dWsuusq9HnqCXmq6aZ1HyFgjH/9p9uvqGi/TboMqn1KOV8nifhXK3l3jg==} engines: {node: '>=14'} dependencies: @@ -25370,12 +26576,12 @@ packages: gensequence: 5.0.2 dev: true - /cspell-util-bundle/4.1.11: + /cspell-util-bundle@4.1.11: resolution: {integrity: sha512-or3OGKydZs1NwweMIgnA48k8H3F5zK4e5lonjUhpEzLYQZ2nB23decdoqZ8ogFC8pFTA40tZKDsMJ0b+65gX4Q==} engines: {node: '>=10.0.0'} dev: true - /cspell/4.2.8: + /cspell@4.2.8: resolution: {integrity: sha512-eqan8+lCU9bSp8Tl4+SR/ccBnuPyMmp7evck/RlMdFTjLh/s+3vQ5hQyBzbzK8w2MMqL84CymW7BwIOKjpylSg==} engines: {node: '>=10.0.0'} hasBin: true @@ -25392,7 +26598,7 @@ packages: minimatch: 3.1.2 dev: true - /cspell/6.19.2: + /cspell@6.19.2: resolution: {integrity: sha512-nyrxnTcv1UzzdElZe96OMU8mxJGaLBnmPCR/HOaFE367EZD+WS5fcpoDBHC9tfD7yJv4+q5sjByYZltcV6jo0A==} engines: {node: '>=14'} hasBin: true @@ -25416,7 +26622,7 @@ packages: - encoding dev: true - /css-blank-pseudo/3.0.3_postcss@8.4.21: + /css-blank-pseudo@3.0.3(postcss@8.4.21): resolution: {integrity: sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==} engines: {node: ^12 || ^14 || >=16} hasBin: true @@ -25426,7 +26632,7 @@ packages: postcss: 8.4.21 postcss-selector-parser: 6.0.13 - /css-declaration-sorter/6.4.0_postcss@8.4.29: + /css-declaration-sorter@6.4.0(postcss@8.4.29): resolution: {integrity: sha512-jDfsatwWMWN0MODAFuHszfjphEXfNw9JUAhmY4pLu3TyTU+ohUpsbVtbU+1MZn4a47D9kqh03i4eyOm+74+zew==} engines: {node: ^10 || ^12 || >=14} peerDependencies: @@ -25434,7 +26640,7 @@ packages: dependencies: postcss: 8.4.29 - /css-has-pseudo/3.0.4_postcss@8.4.21: + /css-has-pseudo@3.0.4(postcss@8.4.21): resolution: {integrity: sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==} engines: {node: ^12 || ^14 || >=16} hasBin: true @@ -25444,40 +26650,40 @@ packages: postcss: 8.4.21 postcss-selector-parser: 6.0.13 - /css-loader/6.7.3_webpack@5.76.1: + /css-loader@6.7.3(webpack@5.76.1): resolution: {integrity: sha512-qhOH1KlBMnZP8FzRO6YCH9UHXQhVMcEGLyNdb7Hv2cpcmJbW0YrddO+tG1ab5nT41KpHIYGsbeHqxB9xPu1pKQ==} engines: {node: '>= 12.13.0'} peerDependencies: webpack: ^5.0.0 dependencies: - icss-utils: 5.1.0_postcss@8.4.29 + icss-utils: 5.1.0(postcss@8.4.29) postcss: 8.4.29 - postcss-modules-extract-imports: 3.0.0_postcss@8.4.29 - postcss-modules-local-by-default: 4.0.0_postcss@8.4.29 - postcss-modules-scope: 3.0.0_postcss@8.4.29 - postcss-modules-values: 4.0.0_postcss@8.4.29 + postcss-modules-extract-imports: 3.0.0(postcss@8.4.29) + postcss-modules-local-by-default: 4.0.0(postcss@8.4.29) + postcss-modules-scope: 3.0.0(postcss@8.4.29) + postcss-modules-values: 4.0.0(postcss@8.4.29) postcss-value-parser: 4.2.0 semver: 7.5.4 - webpack: 5.76.1 + webpack: 5.76.1(@swc/core@1.3.49)(esbuild@0.17.8) dev: true - /css-loader/6.7.3_webpack@5.78.0: + /css-loader@6.7.3(webpack@5.78.0): resolution: {integrity: sha512-qhOH1KlBMnZP8FzRO6YCH9UHXQhVMcEGLyNdb7Hv2cpcmJbW0YrddO+tG1ab5nT41KpHIYGsbeHqxB9xPu1pKQ==} engines: {node: '>= 12.13.0'} peerDependencies: webpack: ^5.0.0 dependencies: - icss-utils: 5.1.0_postcss@8.4.29 + icss-utils: 5.1.0(postcss@8.4.29) postcss: 8.4.29 - postcss-modules-extract-imports: 3.0.0_postcss@8.4.29 - postcss-modules-local-by-default: 4.0.0_postcss@8.4.29 - postcss-modules-scope: 3.0.0_postcss@8.4.29 - postcss-modules-values: 4.0.0_postcss@8.4.29 + postcss-modules-extract-imports: 3.0.0(postcss@8.4.29) + postcss-modules-local-by-default: 4.0.0(postcss@8.4.29) + postcss-modules-scope: 3.0.0(postcss@8.4.29) + postcss-modules-values: 4.0.0(postcss@8.4.29) postcss-value-parser: 4.2.0 semver: 7.5.4 - webpack: 5.78.0_u5c4qderjagc6tepfyiby6xhau + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) - /css-minimizer-webpack-plugin/3.4.1_rw5du4nyxcvxj5knuew24gpv6a: + /css-minimizer-webpack-plugin@3.4.1(esbuild@0.18.20)(webpack@5.78.0): resolution: {integrity: sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==} engines: {node: '>= 12.13.0'} peerDependencies: @@ -25496,16 +26702,16 @@ packages: esbuild: optional: true dependencies: - cssnano: 5.1.15_postcss@8.4.29 + cssnano: 5.1.15(postcss@8.4.29) esbuild: 0.18.20 jest-worker: 27.5.1 postcss: 8.4.29 schema-utils: 4.0.0 serialize-javascript: 6.0.1 source-map: 0.6.1 - webpack: 5.78.0_u5c4qderjagc6tepfyiby6xhau + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) - /css-minimizer-webpack-plugin/3.4.1_webpack@5.78.0: + /css-minimizer-webpack-plugin@3.4.1(webpack@5.78.0): resolution: {integrity: sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==} engines: {node: '>= 12.13.0'} peerDependencies: @@ -25524,16 +26730,16 @@ packages: esbuild: optional: true dependencies: - cssnano: 5.1.15_postcss@8.4.29 + cssnano: 5.1.15(postcss@8.4.29) jest-worker: 27.5.1 postcss: 8.4.29 schema-utils: 4.0.0 serialize-javascript: 6.0.1 source-map: 0.6.1 - webpack: 5.78.0 + webpack: 5.78.0(@swc/core@1.3.49) dev: false - /css-prefers-color-scheme/6.0.3_postcss@8.4.21: + /css-prefers-color-scheme@6.0.3(postcss@8.4.21): resolution: {integrity: sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==} engines: {node: ^12 || ^14 || >=16} hasBin: true @@ -25542,16 +26748,16 @@ packages: dependencies: postcss: 8.4.21 - /css-rules/1.1.0: + /css-rules@1.1.0: resolution: {integrity: sha512-7L6krLIRwAEVCaVKyCEL6PQjQXUmf8DM9bWYKutlZd0DqOe0SiKIGQOkFb59AjDBb+3If7SDp3X8UlzDAgYSow==} dependencies: cssom: 0.5.0 dev: false - /css-select-base-adapter/0.1.1: + /css-select-base-adapter@0.1.1: resolution: {integrity: sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==} - /css-select/2.1.0: + /css-select@2.1.0: resolution: {integrity: sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==} dependencies: boolbase: 1.0.0 @@ -25559,7 +26765,7 @@ packages: domutils: 1.7.0 nth-check: 2.1.1 - /css-select/4.3.0: + /css-select@4.3.0: resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==} dependencies: boolbase: 1.0.0 @@ -25568,7 +26774,7 @@ packages: domutils: 2.8.0 nth-check: 2.1.1 - /css-select/5.1.0: + /css-select@5.1.0: resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==} dependencies: boolbase: 1.0.0 @@ -25578,33 +26784,33 @@ packages: nth-check: 2.1.1 dev: false - /css-tree/1.0.0-alpha.37: + /css-tree@1.0.0-alpha.37: resolution: {integrity: sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==} engines: {node: '>=8.0.0'} dependencies: mdn-data: 2.0.4 source-map: 0.6.1 - /css-tree/1.1.3: + /css-tree@1.1.3: resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==} engines: {node: '>=8.0.0'} dependencies: mdn-data: 2.0.14 source-map: 0.6.1 - /css-what/3.4.2: + /css-what@3.4.2: resolution: {integrity: sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==} engines: {node: '>= 6'} - /css-what/6.1.0: + /css-what@6.1.0: resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} engines: {node: '>= 6'} - /css.escape/1.5.1: + /css.escape@1.5.1: resolution: {integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==} dev: true - /css/2.2.4: + /css@2.2.4: resolution: {integrity: sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw==} dependencies: inherits: 2.0.4 @@ -25613,52 +26819,52 @@ packages: urix: 0.1.0 dev: true - /cssdb/7.5.4: + /cssdb@7.5.4: resolution: {integrity: sha512-fGD+J6Jlq+aurfE1VDXlLS4Pt0VtNlu2+YgfGOdMxRyl/HQ9bDiHTwSck1Yz8A97Dt/82izSK6Bp/4nVqacOsg==} - /cssesc/3.0.0: + /cssesc@3.0.0: resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} engines: {node: '>=4'} hasBin: true - /cssnano-preset-default/5.2.14_postcss@8.4.29: + /cssnano-preset-default@5.2.14(postcss@8.4.29): resolution: {integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - css-declaration-sorter: 6.4.0_postcss@8.4.29 - cssnano-utils: 3.1.0_postcss@8.4.29 + css-declaration-sorter: 6.4.0(postcss@8.4.29) + cssnano-utils: 3.1.0(postcss@8.4.29) postcss: 8.4.29 - postcss-calc: 8.2.4_postcss@8.4.29 - postcss-colormin: 5.3.1_postcss@8.4.29 - postcss-convert-values: 5.1.3_postcss@8.4.29 - postcss-discard-comments: 5.1.2_postcss@8.4.29 - postcss-discard-duplicates: 5.1.0_postcss@8.4.29 - postcss-discard-empty: 5.1.1_postcss@8.4.29 - postcss-discard-overridden: 5.1.0_postcss@8.4.29 - postcss-merge-longhand: 5.1.7_postcss@8.4.29 - postcss-merge-rules: 5.1.4_postcss@8.4.29 - postcss-minify-font-values: 5.1.0_postcss@8.4.29 - postcss-minify-gradients: 5.1.1_postcss@8.4.29 - postcss-minify-params: 5.1.4_postcss@8.4.29 - postcss-minify-selectors: 5.2.1_postcss@8.4.29 - postcss-normalize-charset: 5.1.0_postcss@8.4.29 - postcss-normalize-display-values: 5.1.0_postcss@8.4.29 - postcss-normalize-positions: 5.1.1_postcss@8.4.29 - postcss-normalize-repeat-style: 5.1.1_postcss@8.4.29 - postcss-normalize-string: 5.1.0_postcss@8.4.29 - postcss-normalize-timing-functions: 5.1.0_postcss@8.4.29 - postcss-normalize-unicode: 5.1.1_postcss@8.4.29 - postcss-normalize-url: 5.1.0_postcss@8.4.29 - postcss-normalize-whitespace: 5.1.1_postcss@8.4.29 - postcss-ordered-values: 5.1.3_postcss@8.4.29 - postcss-reduce-initial: 5.1.2_postcss@8.4.29 - postcss-reduce-transforms: 5.1.0_postcss@8.4.29 - postcss-svgo: 5.1.0_postcss@8.4.29 - postcss-unique-selectors: 5.1.1_postcss@8.4.29 - - /cssnano-utils/3.1.0_postcss@8.4.29: + postcss-calc: 8.2.4(postcss@8.4.29) + postcss-colormin: 5.3.1(postcss@8.4.29) + postcss-convert-values: 5.1.3(postcss@8.4.29) + postcss-discard-comments: 5.1.2(postcss@8.4.29) + postcss-discard-duplicates: 5.1.0(postcss@8.4.29) + postcss-discard-empty: 5.1.1(postcss@8.4.29) + postcss-discard-overridden: 5.1.0(postcss@8.4.29) + postcss-merge-longhand: 5.1.7(postcss@8.4.29) + postcss-merge-rules: 5.1.4(postcss@8.4.29) + postcss-minify-font-values: 5.1.0(postcss@8.4.29) + postcss-minify-gradients: 5.1.1(postcss@8.4.29) + postcss-minify-params: 5.1.4(postcss@8.4.29) + postcss-minify-selectors: 5.2.1(postcss@8.4.29) + postcss-normalize-charset: 5.1.0(postcss@8.4.29) + postcss-normalize-display-values: 5.1.0(postcss@8.4.29) + postcss-normalize-positions: 5.1.1(postcss@8.4.29) + postcss-normalize-repeat-style: 5.1.1(postcss@8.4.29) + postcss-normalize-string: 5.1.0(postcss@8.4.29) + postcss-normalize-timing-functions: 5.1.0(postcss@8.4.29) + postcss-normalize-unicode: 5.1.1(postcss@8.4.29) + postcss-normalize-url: 5.1.0(postcss@8.4.29) + postcss-normalize-whitespace: 5.1.1(postcss@8.4.29) + postcss-ordered-values: 5.1.3(postcss@8.4.29) + postcss-reduce-initial: 5.1.2(postcss@8.4.29) + postcss-reduce-transforms: 5.1.0(postcss@8.4.29) + postcss-svgo: 5.1.0(postcss@8.4.29) + postcss-unique-selectors: 5.1.1(postcss@8.4.29) + + /cssnano-utils@3.1.0(postcss@8.4.29): resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -25666,84 +26872,84 @@ packages: dependencies: postcss: 8.4.29 - /cssnano/5.1.15_postcss@8.4.29: + /cssnano@5.1.15(postcss@8.4.29): resolution: {integrity: sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - cssnano-preset-default: 5.2.14_postcss@8.4.29 + cssnano-preset-default: 5.2.14(postcss@8.4.29) lilconfig: 2.1.0 postcss: 8.4.29 yaml: 1.10.2 - /csso/4.2.0: + /csso@4.2.0: resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==} engines: {node: '>=8.0.0'} dependencies: css-tree: 1.1.3 - /cssom/0.3.8: + /cssom@0.3.8: resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==} - /cssom/0.4.4: + /cssom@0.4.4: resolution: {integrity: sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==} - /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 - /csstype/2.6.21: + /csstype@2.6.21: resolution: {integrity: sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==} - /csstype/3.0.9: + /csstype@3.0.9: resolution: {integrity: sha512-rpw6JPxK6Rfg1zLOYCSwle2GFOOsnjmDYDaBwEcwoOg4qlsIVCN789VkBZDJAGi4T07gI4YSutR43t9Zz4Lzuw==} dev: false - /csstype/3.1.2: + /csstype@3.1.2: resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==} - /cuint/0.2.2: + /cuint@0.2.2: resolution: {integrity: sha512-d4ZVpCW31eWwCMe1YT3ur7mUDnTXbgwyzaL320DrcRT45rfjYxkt5QWLrmOJ+/UEAI2+fQgKe/fCjR8l4TpRgw==} dev: true - /currently-unhandled/0.4.1: + /currently-unhandled@0.4.1: resolution: {integrity: sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng==} engines: {node: '>=0.10.0'} dependencies: array-find-index: 1.0.2 dev: true - /custom-event/1.0.1: + /custom-event@1.0.1: resolution: {integrity: sha512-GAj5FOq0Hd+RsCGVJxZuKaIDXDf3h6GQoNEjFgbLLI/trgtavwUbSnZ5pVfg27DVCaWjIohryS0JFwIJyT2cMg==} dev: true - /customize-cra/1.0.0: + /customize-cra@1.0.0: resolution: {integrity: sha512-DbtaLuy59224U+xCiukkxSq8clq++MOtJ1Et7LED1fLszWe88EoblEYFBJ895sB1mC6B4uu3xPT/IjClELhMbA==} dependencies: lodash.flow: 3.5.0 - /cycle/1.0.3: + /cycle@1.0.3: resolution: {integrity: sha512-TVF6svNzeQCOpjCqsy0/CSy8VgObG3wXusJ73xW2GbG5rGx7lC8zxDSURicsXI2UsGdi2L0QNRCi745/wUDvsA==} engines: {node: '>=0.4.0'} dev: true - /cyclist/1.0.1: + /cyclist@1.0.1: resolution: {integrity: sha512-NJGVKPS81XejHcLhaLJS7plab0fK3slPh11mESeeDq2W4ZI5kUKK/LRRdVDvjJseojbPB7ZwjnyOybg3Igea/A==} dev: true - /cypress-intellij-reporter/0.0.7: + /cypress-intellij-reporter@0.0.7: resolution: {integrity: sha512-P4A0BPz5h9TWLZFVhMJsAMktqCEdeKA0+bS+zfTGLohUtM89pmU5kAWLEGFOYRcRlVR39XbUWhyFyTjs8AoFLA==} dependencies: mocha: 10.2.0 dev: true - /cypress-localstorage-commands/2.2.4_cypress@13.3.1: + /cypress-localstorage-commands@2.2.4(cypress@13.3.1): resolution: {integrity: sha512-XiWFJhhgcoWf7p6sS5igGuN8WWGF0K1jRCPo2XlikwEWgts1uvPl80cybGiztYoNrU1xCbQO9/IOz6Y0eTl4Lg==} engines: {node: '>=14.0.0'} peerDependencies: @@ -25752,22 +26958,22 @@ packages: cypress: 13.3.1 dev: true - /cypress-network-idle/1.14.2: + /cypress-network-idle@1.14.2: resolution: {integrity: sha512-xAdR8dH58KFPv8eCDWjviScITrJOcUpuMXYfYTc175nk2/NvnJ+I6ylSn1CM7yZmoV/gLbFa36QLiH5NfNEaLQ==} dev: true - /cypress-wait-until/2.0.1: + /cypress-wait-until@2.0.1: resolution: {integrity: sha512-+IyVnYNiaX1+C+V/LazrJWAi/CqiwfNoRSrFviECQEyolW1gDRy765PZosL2alSSGK8V10Y7BGfOQyZUDgmnjQ==} dev: true - /cypress/13.3.1: + /cypress@13.3.1: resolution: {integrity: sha512-g4mJLZxYN+UAF2LMy3Znd4LBnUmS59Vynd81VES59RdW48Yt+QtR2cush3melOoVNz0PPbADpWr8DcUx6mif8Q==} engines: {node: ^16.0.0 || ^18.0.0 || >=20.0.0} hasBin: true requiresBuild: true dependencies: '@cypress/request': 3.0.1 - '@cypress/xvfb': 1.2.4_supports-color@8.1.1 + '@cypress/xvfb': 1.2.4(supports-color@8.1.1) '@types/node': 18.18.5 '@types/sinonjs__fake-timers': 8.1.1 '@types/sizzle': 2.3.3 @@ -25783,19 +26989,19 @@ packages: commander: 6.2.1 common-tags: 1.8.2 dayjs: 1.11.9 - debug: 4.3.4_supports-color@8.1.1 + debug: 4.3.4(supports-color@8.1.1) enquirer: 2.3.6 eventemitter2: 6.4.7 execa: 4.1.0 executable: 4.1.1 - extract-zip: 2.0.1_supports-color@8.1.1 + extract-zip: 2.0.1(supports-color@8.1.1) figures: 3.2.0 fs-extra: 9.1.0 getos: 3.2.1 is-ci: 3.0.1 is-installed-globally: 0.4.0 lazy-ass: 1.6.0 - listr2: 3.14.0_enquirer@2.3.6 + listr2: 3.14.0(enquirer@2.3.6) lodash: 4.17.21 log-symbols: 4.1.0 minimist: 1.2.8 @@ -25810,34 +27016,34 @@ packages: untildify: 4.0.0 yauzl: 2.10.0 - /cz-conventional-changelog/3.3.0_@swc+core@1.3.49: + /cz-conventional-changelog@3.3.0(@swc/core@1.3.49): resolution: {integrity: sha512-U466fIzU5U22eES5lTNiNbZ+d8dfcHcssH4o7QsdWaCcRs/feIPCxKYSWkYBNs5mny7MvEfwpTLWjvbm94hecw==} engines: {node: '>= 10'} dependencies: chalk: 2.4.2 - commitizen: 4.3.0_@swc+core@1.3.49 + commitizen: 4.3.0(@swc/core@1.3.49) conventional-commit-types: 3.0.0 lodash.map: 4.6.0 longest: 2.0.1 word-wrap: 1.2.5 optionalDependencies: - '@commitlint/load': 17.7.1_@swc+core@1.3.49 + '@commitlint/load': 17.7.1(@swc/core@1.3.49) transitivePeerDependencies: - '@swc/core' - '@swc/wasm' dev: true - /d3-color/3.1.0: + /d3-color@3.1.0: resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==} engines: {node: '>=12'} dev: false - /d3-dispatch/3.0.1: + /d3-dispatch@3.0.1: resolution: {integrity: sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==} engines: {node: '>=12'} dev: false - /d3-drag/3.0.0: + /d3-drag@3.0.0: resolution: {integrity: sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==} engines: {node: '>=12'} dependencies: @@ -25845,29 +27051,29 @@ packages: d3-selection: 3.0.0 dev: false - /d3-ease/3.0.1: + /d3-ease@3.0.1: resolution: {integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==} engines: {node: '>=12'} dev: false - /d3-interpolate/3.0.1: + /d3-interpolate@3.0.1: resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==} engines: {node: '>=12'} dependencies: d3-color: 3.1.0 dev: false - /d3-selection/3.0.0: + /d3-selection@3.0.0: resolution: {integrity: sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==} engines: {node: '>=12'} dev: false - /d3-timer/3.0.1: + /d3-timer@3.0.1: resolution: {integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==} engines: {node: '>=12'} dev: false - /d3-transition/3.0.1_d3-selection@3.0.0: + /d3-transition@3.0.1(d3-selection@3.0.0): resolution: {integrity: sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==} engines: {node: '>=12'} peerDependencies: @@ -25881,7 +27087,7 @@ packages: d3-timer: 3.0.1 dev: false - /d3-zoom/3.0.0: + /d3-zoom@3.0.0: resolution: {integrity: sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==} engines: {node: '>=12'} dependencies: @@ -25889,37 +27095,37 @@ packages: d3-drag: 3.0.0 d3-interpolate: 3.0.1 d3-selection: 3.0.0 - d3-transition: 3.0.1_d3-selection@3.0.0 + d3-transition: 3.0.1(d3-selection@3.0.0) dev: false - /damerau-levenshtein/1.0.8: + /damerau-levenshtein@1.0.8: resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} - /dargs/7.0.0: + /dargs@7.0.0: resolution: {integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==} engines: {node: '>=8'} dev: true - /dashdash/1.14.1: + /dashdash@1.14.1: resolution: {integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==} engines: {node: '>=0.10'} dependencies: assert-plus: 1.0.0 - /data-uri-to-buffer/2.0.2: + /data-uri-to-buffer@2.0.2: resolution: {integrity: sha512-ND9qDTLc6diwj+Xe5cdAgVTbLVdXbtxTJRXRhli8Mowuaan+0EJOtdqJ0QCHNSSPyoXGx9HX2/VMnKeC34AChA==} dev: true - /data-uri-to-buffer/4.0.1: + /data-uri-to-buffer@4.0.1: resolution: {integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==} engines: {node: '>= 12'} - /data-uri-to-buffer/5.0.1: + /data-uri-to-buffer@5.0.1: resolution: {integrity: sha512-a9l6T1qqDogvvnw0nKlfZzqsyikEBZBClF39V3TFoKhDtGBqHu2HkuomJc02j5zft8zrUaXEuoicLeW54RkzPg==} engines: {node: '>= 14'} dev: false - /data-urls/2.0.0: + /data-urls@2.0.0: resolution: {integrity: sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==} engines: {node: '>=10'} dependencies: @@ -25927,7 +27133,7 @@ packages: whatwg-mimetype: 2.3.0 whatwg-url: 8.7.0 - /data-urls/3.0.2: + /data-urls@3.0.2: resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==} engines: {node: '>=12'} dependencies: @@ -25936,35 +27142,35 @@ packages: whatwg-url: 11.0.0 dev: true - /date-fns/1.30.1: + /date-fns@1.30.1: resolution: {integrity: sha512-hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw==} dev: true - /date-fns/2.29.3: + /date-fns@2.29.3: resolution: {integrity: sha512-dDCnyH2WnnKusqvZZ6+jA1O51Ibt8ZMRNkDZdyAyK4YfbDwa/cEmuztzG5pk6hqlp9aSBPYcjOlktquahGwGeA==} engines: {node: '>=0.11'} - /date-format/4.0.14: + /date-format@4.0.14: resolution: {integrity: sha512-39BOQLs9ZjKh0/patS9nrT8wc3ioX3/eA/zgbKNopnF2wCqJEoxywwwElATYvRsXdnOxA/OQeQoFZ3rFjVajhg==} engines: {node: '>=4.0'} dev: true - /dateformat/3.0.3: + /dateformat@3.0.3: resolution: {integrity: sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==} dev: true - /dateformat/4.6.3: + /dateformat@4.6.3: resolution: {integrity: sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==} dev: false - /dayjs/1.11.9: + /dayjs@1.11.9: resolution: {integrity: sha512-QvzAURSbQ0pKdIye2txOzNaHmxtUBXerpY0FJsFXUMKbIZeFm5ht1LS/jFsrncjnmtv8HsG0W2g6c0zUjZWmpA==} - /de-indent/1.0.2: + /de-indent@1.0.2: resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==} dev: true - /debug/2.6.9: + /debug@2.6.9: resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} peerDependencies: supports-color: '*' @@ -25974,17 +27180,7 @@ packages: dependencies: ms: 2.0.0 - /debug/3.2.7: - resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - dependencies: - ms: 2.1.3 - - /debug/3.2.7_supports-color@5.5.0: + /debug@3.2.7(supports-color@5.5.0): resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} peerDependencies: supports-color: '*' @@ -25996,7 +27192,7 @@ packages: supports-color: 5.5.0 dev: true - /debug/3.2.7_supports-color@8.1.1: + /debug@3.2.7(supports-color@8.1.1): resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} peerDependencies: supports-color: '*' @@ -26007,7 +27203,7 @@ packages: ms: 2.1.3 supports-color: 8.1.1 - /debug/4.3.1_supports-color@8.1.1: + /debug@4.3.1(supports-color@8.1.1): resolution: {integrity: sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==} engines: {node: '>=6.0'} peerDependencies: @@ -26020,7 +27216,7 @@ packages: supports-color: 8.1.1 dev: true - /debug/4.3.3: + /debug@4.3.3: resolution: {integrity: sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==} engines: {node: '>=6.0'} peerDependencies: @@ -26032,18 +27228,7 @@ packages: ms: 2.1.2 dev: false - /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@8.1.1: + /debug@4.3.4(supports-color@8.1.1): resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} engines: {node: '>=6.0'} peerDependencies: @@ -26055,10 +27240,10 @@ packages: ms: 2.1.2 supports-color: 8.1.1 - /debuglog/1.0.1: + /debuglog@1.0.1: resolution: {integrity: sha512-syBZ+rnAK3EgMsH2aYEOLUW7mZSY9Gb+0wUMCFsZvcmiz+HigA0LOcq/HoQqVuGG+EKykunc7QG2bzrponfaSw==} - /decamelize-keys/1.1.1: + /decamelize-keys@1.1.1: resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} engines: {node: '>=0.10.0'} dependencies: @@ -26066,45 +27251,45 @@ 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 - /decamelize/5.0.1: + /decamelize@5.0.1: resolution: {integrity: sha512-VfxadyCECXgQlkoEAjeghAr5gY3Hf+IKjKb+X8tGVDtveCjN+USwprd2q3QXBR9T1+x2DG0XZF5/w+7HAtSaXA==} engines: {node: '>=10'} dev: true - /decimal.js/10.4.3: + /decimal.js@10.4.3: resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==} - /decode-named-character-reference/1.0.2: + /decode-named-character-reference@1.0.2: resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==} dependencies: character-entities: 2.0.2 dev: true - /decode-uri-component/0.2.2: + /decode-uri-component@0.2.2: resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==} engines: {node: '>=0.10'} - /dedent/0.7.0: + /dedent@0.7.0: resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==} - /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.2.0: + /deep-equal@2.2.0: resolution: {integrity: sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw==} dependencies: call-bind: 1.0.2 @@ -26125,19 +27310,19 @@ packages: which-collection: 1.0.1 which-typed-array: 1.1.11 - /deep-extend/0.6.0: + /deep-extend@0.6.0: resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} engines: {node: '>=4.0.0'} 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.3.1: + /deepmerge@4.3.1: resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} engines: {node: '>=0.10.0'} - /default-browser-id/3.0.0: + /default-browser-id@3.0.0: resolution: {integrity: sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==} engines: {node: '>=12'} dependencies: @@ -26145,50 +27330,50 @@ packages: untildify: 4.0.0 dev: true - /default-gateway/6.0.3: + /default-gateway@6.0.3: resolution: {integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==} engines: {node: '>= 10'} dependencies: execa: 5.1.1 - /default-require-extensions/3.0.1: + /default-require-extensions@3.0.1: resolution: {integrity: sha512-eXTJmRbm2TIt9MgWTsOH1wEuhew6XGZcMeGKCtLedIg/NCsg1iBePXkceTdK4Fii7pzmN9tGsZhKzZ4h7O/fxw==} engines: {node: '>=8'} dependencies: strip-bom: 4.0.0 dev: true - /defaults/1.0.4: + /defaults@1.0.4: resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} dependencies: clone: 1.0.4 - /define-lazy-prop/2.0.0: + /define-lazy-prop@2.0.0: resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} engines: {node: '>=8'} - /define-properties/1.2.0: + /define-properties@1.2.0: resolution: {integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==} engines: {node: '>= 0.4'} dependencies: has-property-descriptors: 1.0.0 object-keys: 1.1.1 - /define-property/0.2.5: + /define-property@0.2.5: resolution: {integrity: sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==} engines: {node: '>=0.10.0'} dependencies: is-descriptor: 0.1.6 dev: true - /define-property/1.0.0: + /define-property@1.0.0: resolution: {integrity: sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==} engines: {node: '>=0.10.0'} dependencies: is-descriptor: 1.0.2 dev: true - /define-property/2.0.2: + /define-property@2.0.2: resolution: {integrity: sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==} engines: {node: '>=0.10.0'} dependencies: @@ -26196,11 +27381,11 @@ packages: isobject: 3.0.1 dev: true - /defu/6.1.2: + /defu@6.1.2: resolution: {integrity: sha512-+uO4+qr7msjNNWKYPHqN/3+Dx3NFkmIzayk2L1MyZQlvgZb/J1A0fo410dpKrN2SnqFjt8n4JL8fDJE0wIgjFQ==} dev: true - /degenerator/5.0.1: + /degenerator@5.0.1: resolution: {integrity: sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==} engines: {node: '>= 14'} dependencies: @@ -26209,13 +27394,13 @@ packages: esprima: 4.0.1 dev: false - /degit/2.8.4: + /degit@2.8.4: resolution: {integrity: sha512-vqYuzmSA5I50J882jd+AbAhQtgK6bdKUJIex1JNfEUPENCgYsxugzKVZlFyMwV4i06MmnV47/Iqi5Io86zf3Ng==} engines: {node: '>=8.0.0'} hasBin: true dev: true - /del/6.1.1: + /del@6.1.1: resolution: {integrity: sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==} engines: {node: '>=10'} dependencies: @@ -26229,79 +27414,79 @@ packages: slash: 3.0.0 dev: true - /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'} - /depd/1.1.2: + /depd@1.1.2: resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==} engines: {node: '>= 0.6'} - /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 - /deprecation/2.3.1: + /deprecation@2.3.1: resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==} dev: true - /dequal/2.0.3: + /dequal@2.0.3: resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} engines: {node: '>=6'} - /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-file/1.0.0: + /detect-file@1.0.0: resolution: {integrity: sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==} engines: {node: '>=0.10.0'} dev: true - /detect-indent/5.0.0: + /detect-indent@5.0.0: resolution: {integrity: sha512-rlpvsxUtM0PQvy9iZe640/IWwWYyBsTApREbA1pHOpmOUIl9MkP/U4z7vTtg4Oaojvqhxt7sdufnT0EzGaR31g==} engines: {node: '>=4'} dev: true - /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'} - /detect-node-es/1.1.0: + /detect-node-es@1.1.0: resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==} - /detect-node/2.1.0: + /detect-node@2.1.0: resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==} - /detect-package-manager/2.0.1: + /detect-package-manager@2.0.1: resolution: {integrity: sha512-j/lJHyoLlWi6G1LDdLgvUtz60Zo5GEj+sVYtTVXnYLDPuzgC3llMxonXym9zIwhhUII8vjdw0LXxavpLqTbl1A==} engines: {node: '>=12'} dependencies: execa: 5.1.1 dev: true - /detect-port-alt/1.1.6: + /detect-port-alt@1.1.6: resolution: {integrity: sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==} engines: {node: '>= 4.2.1'} hasBin: true @@ -26311,105 +27496,105 @@ packages: transitivePeerDependencies: - supports-color - /detect-port/1.5.1: + /detect-port@1.5.1: resolution: {integrity: sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==} hasBin: true dependencies: address: 1.2.2 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) transitivePeerDependencies: - supports-color dev: true - /dezalgo/1.0.4: + /dezalgo@1.0.4: resolution: {integrity: sha512-rXSP0bf+5n0Qonsb+SVVfNfIsimO4HEtmnIpPHY8Q1UCzKlQrDMfdobr8nJOOsRgWCyMRqeSBQzmWUMq7zvVig==} dependencies: asap: 2.0.6 wrappy: 1.0.2 - /di/0.0.1: + /di@0.0.1: resolution: {integrity: sha512-uJaamHkagcZtHPqCIHZxnFrXlunQXgBOsZSUOWwFw31QJCAbyTBoHMW75YOTur5ZNx8pIeAKgf6GWIgaqqiLhA==} dev: true - /didyoumean/1.2.2: + /didyoumean@1.2.2: resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} - /diff-match-patch/1.0.5: + /diff-match-patch@1.0.5: resolution: {integrity: sha512-IayShXAgj/QMXgB0IWmKx+rOPuGMhqm5w6jvFxmVenXKIzRqTAAsbBPT3kWQeGANj3jGgvcvv4yK6SxqYmikgw==} dev: false - /diff-sequences/24.9.0: + /diff-sequences@24.9.0: resolution: {integrity: sha512-Dj6Wk3tWyTE+Fo1rW8v0Xhwk80um6yFYKbuAxc9c3EZxIHFDYwbi34Uk42u1CdnIiVorvt4RmlSDjIPyzGC2ew==} engines: {node: '>= 6'} 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} - /diff-sequences/29.4.3: + /diff-sequences@29.4.3: resolution: {integrity: sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - /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 - /dir-glob/2.2.2: + /dir-glob@2.2.2: resolution: {integrity: sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==} engines: {node: '>=4'} dependencies: path-type: 3.0.0 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 - /dlv/1.1.3: + /dlv@1.1.3: resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} - /dns-equal/1.0.0: + /dns-equal@1.0.0: resolution: {integrity: sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==} - /dns-packet/5.5.0: + /dns-packet@5.5.0: resolution: {integrity: sha512-USawdAUzRkV6xrqTjiAEp6M9YagZEzWcSUaZTcIFAiyQWW1SoI6KyId8y2+/71wbgHKQAKd+iupLv4YvEwYWvA==} engines: {node: '>=6'} dependencies: '@leichtgewicht/ip-codec': 2.0.4 - /doctrine/2.1.0: + /doctrine@2.1.0: resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} engines: {node: '>=0.10.0'} dependencies: esutils: 2.0.3 - /doctrine/3.0.0: + /doctrine@3.0.0: resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} engines: {node: '>=6.0.0'} dependencies: esutils: 2.0.3 - /dom-accessibility-api/0.5.16: + /dom-accessibility-api@0.5.16: resolution: {integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==} - /dom-align/1.12.4: + /dom-align@1.12.4: resolution: {integrity: sha512-R8LUSEay/68zE5c8/3BDxiTEvgb4xZTF0RKmAHfiEVN3klfIpXfi2/QCoiWPccVQ0J/ZGdz9OjzL4uJEP/MRAw==} dev: false - /dom-converter/0.2.0: + /dom-converter@0.2.0: resolution: {integrity: sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==} dependencies: utila: 0.4.0 - /dom-css/2.1.0: + /dom-css@2.1.0: resolution: {integrity: sha512-w9kU7FAbaSh3QKijL6n59ofAhkkmMJ31GclJIz/vyQdjogfyxcB6Zf8CZyibOERI5o0Hxz30VmJS7+7r5fEj2Q==} dependencies: add-px-to-style: 1.0.0 @@ -26417,14 +27602,14 @@ packages: to-camel-case: 1.0.0 dev: false - /dom-helpers/5.2.1: + /dom-helpers@5.2.1: resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==} dependencies: '@babel/runtime': 7.21.0 csstype: 3.1.2 dev: false - /dom-serialize/2.2.1: + /dom-serialize@2.2.1: resolution: {integrity: sha512-Yra4DbvoW7/Z6LBN560ZwXMjoNOSAN2wRsKFGc4iBeso+mpIA6qj1vfdf9HpMaKAqG6wXTy+1SYEzmNpKXOSsQ==} dependencies: custom-event: 1.0.1 @@ -26433,20 +27618,20 @@ packages: void-elements: 2.0.1 dev: true - /dom-serializer/0.2.2: + /dom-serializer@0.2.2: resolution: {integrity: sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==} dependencies: domelementtype: 2.3.0 entities: 2.2.0 - /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.2.0 - /dom-serializer/2.0.0: + /dom-serializer@2.0.0: resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} dependencies: domelementtype: 2.3.0 @@ -26454,52 +27639,52 @@ packages: entities: 4.4.0 dev: false - /domelementtype/1.3.1: + /domelementtype@1.3.1: resolution: {integrity: sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==} - /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 - /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/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/1.7.0: + /domutils@1.7.0: resolution: {integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==} dependencies: dom-serializer: 0.2.2 domelementtype: 1.3.1 - /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 @@ -26507,65 +27692,65 @@ packages: domhandler: 5.0.3 dev: false - /dot-case/2.1.1: + /dot-case@2.1.1: resolution: {integrity: sha512-HnM6ZlFqcajLsyudHq7LeeLDr2rFAVYtDv/hV5qchQEidSck8j9OPUsXY9KwJv/lHMtYlX4DjRQqwFYa+0r8Ug==} dependencies: no-case: 2.3.2 dev: true - /dot-case/3.0.4: + /dot-case@3.0.4: resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} dependencies: no-case: 3.0.4 tslib: 2.6.2 - /dot-prop/5.3.0: + /dot-prop@5.3.0: resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} engines: {node: '>=8'} dependencies: is-obj: 2.0.0 - /dot-prop/6.0.1: + /dot-prop@6.0.1: resolution: {integrity: sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==} engines: {node: '>=10'} dependencies: is-obj: 2.0.0 dev: true - /dotenv-expand/10.0.0: + /dotenv-expand@10.0.0: resolution: {integrity: sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==} engines: {node: '>=12'} - /dotenv-expand/5.1.0: + /dotenv-expand@5.1.0: resolution: {integrity: sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==} - /dotenv/10.0.0: + /dotenv@10.0.0: resolution: {integrity: sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==} engines: {node: '>=10'} - /dotenv/16.3.1: + /dotenv@16.3.1: resolution: {integrity: sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==} engines: {node: '>=12'} - /dotenv/8.6.0: + /dotenv@8.6.0: resolution: {integrity: sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==} engines: {node: '>=10'} - /dset/3.1.2: + /dset@3.1.2: resolution: {integrity: sha512-g/M9sqy3oHe477Ar4voQxWtaPIFw1jTdKZuomOjhCcBx9nHUNn0pu6NopuFFrTh/TRZIKEj+76vLWFu9BNKk+Q==} engines: {node: '>=4'} dev: false - /duplexer/0.1.2: - resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} - - /duplexer2/0.1.4: + /duplexer2@0.1.4: resolution: {integrity: sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==} dependencies: readable-stream: 2.3.8 dev: true - /duplexify/3.7.1: + /duplexer@0.1.2: + resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} + + /duplexify@3.7.1: resolution: {integrity: sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==} dependencies: end-of-stream: 1.4.4 @@ -26574,7 +27759,7 @@ packages: stream-shift: 1.0.1 dev: true - /duplexify/4.1.2: + /duplexify@4.1.2: resolution: {integrity: sha512-fz3OjcNCHmRP12MJoZMPglx8m4rrFP8rovnk4vT8Fs+aonZoCwGg10dSsQsfP/E62eZcPTMSMP6686fu9Qlqtw==} dependencies: end-of-stream: 1.4.4 @@ -26582,22 +27767,22 @@ packages: readable-stream: 3.6.2 stream-shift: 1.0.1 - /eastasianwidth/0.2.0: + /eastasianwidth@0.2.0: resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} - /ecc-jsbn/0.1.2: + /ecc-jsbn@0.1.2: resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==} dependencies: jsbn: 0.1.1 safer-buffer: 2.1.2 - /ecdsa-sig-formatter/1.0.11: + /ecdsa-sig-formatter@1.0.11: resolution: {integrity: sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==} dependencies: safe-buffer: 5.2.1 dev: false - /editorconfig/0.15.3: + /editorconfig@0.15.3: resolution: {integrity: sha512-M9wIMFx96vq0R4F+gRpY3o2exzb8hEj/n9S8unZtHSvYjibBp/iMufSzvmOcV/laG0ZtuTVGtiJggPOSW2r93g==} hasBin: true dependencies: @@ -26607,29 +27792,29 @@ packages: sigmund: 1.0.1 dev: false - /ee-first/1.1.1: + /ee-first@1.1.1: resolution: {integrity: sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=} - /ejs/3.1.9: + /ejs@3.1.9: resolution: {integrity: sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==} engines: {node: '>=0.10.0'} hasBin: true dependencies: jake: 10.8.5 - /electron-to-chromium/1.4.508: + /electron-to-chromium@1.4.508: resolution: {integrity: sha512-FFa8QKjQK/A5QuFr2167myhMesGrhlOBD+3cYNxO9/S4XzHEXesyTD/1/xF644gC8buFPz3ca6G1LOQD0tZrrg==} - /elegant-spinner/1.0.1: + /elegant-spinner@1.0.1: resolution: {integrity: sha512-B+ZM+RXvRqQaAmkMlO/oSe5nMUOaUnyfGYCEHoR8wrXsZR2mA0XVibsxV1bvTwxdRWah1PkQqso2EzhILGHtEQ==} engines: {node: '>=0.10.0'} dev: true - /email-addresses/3.1.0: + /email-addresses@3.1.0: resolution: {integrity: sha512-k0/r7GrWVL32kZlGwfPNgB2Y/mMXVTq/decgLczm/j34whdaspNrZO8CnXPf1laaHxI6ptUlsnAxN+UAPw+fzg==} dev: true - /emailjs/3.8.1_typescript@4.9.5: + /emailjs@3.8.1(typescript@4.9.5): resolution: {integrity: sha512-AOpQyi1op250n66ocgFQRkmsMcYAylmbBBfIQrwqv6OxuDSDG4Mr/7gROkKc7nNjLt0WycPRLRxiX1+XAhZJuQ==} engines: {node: '>=10'} peerDependencies: @@ -26641,58 +27826,58 @@ packages: typescript: 4.9.5 dev: false - /emitter-component/1.0.1: + /emitter-component@1.0.1: resolution: {integrity: sha512-ZftZYrg9n2OTnjp3CmvotV4oq7TLigHpe60yiabaif7o2TfHvb+kQrTspukst3tnXg9/xpS72c+v+zes7DFAjA==} dependencies: indexof: 0.0.1 - /emittery/0.10.2: + /emittery@0.10.2: resolution: {integrity: sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==} engines: {node: '>=12'} - /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'} - /emoji-regex/7.0.3: + /emoji-regex@7.0.3: resolution: {integrity: sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==} 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'} - /enabled/2.0.0: + /enabled@2.0.0: resolution: {integrity: sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==} dev: false - /encodeurl/1.0.2: + /encodeurl@1.0.2: resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} engines: {node: '>= 0.8'} - /encoding/0.1.13: + /encoding@0.1.13: resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==} requiresBuild: true dependencies: iconv-lite: 0.6.3 - /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 - /endent/2.1.0: + /endent@2.1.0: resolution: {integrity: sha512-r8VyPX7XL8U01Xgnb1CjZ3XV+z90cXIJ9JPE/R9SEC9vpw2P6CfsRPJmp20DppC5N7ZAMCmjYkJIa744Iyg96w==} dependencies: dedent: 0.7.0 @@ -26700,11 +27885,11 @@ packages: objectorarray: 1.0.5 dev: true - /engine.io-client/6.5.2: + /engine.io-client@6.5.2: resolution: {integrity: sha512-CQZqbrpEYnrpGqC07a9dJDz4gePZUgTPMU3NKJPSeQOyw27Tst4Pl3FemKoFGAlHzgZmKjoRmiJvbWfhCXUlIg==} dependencies: '@socket.io/component-emitter': 3.1.0 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) engine.io-parser: 5.2.1 ws: 8.11.0 xmlhttprequest-ssl: 2.0.0 @@ -26714,11 +27899,11 @@ packages: - utf-8-validate dev: false - /engine.io-parser/5.2.1: + /engine.io-parser@5.2.1: resolution: {integrity: sha512-9JktcM3u18nU9N2Lz3bWeBgxVgOKpw7yhRaoxQA3FUDZzzw+9WlA6p4G4u0RixNkg14fH7EfEc/RhpurtiROTQ==} engines: {node: '>=10.0.0'} - /engine.io/6.5.2: + /engine.io@6.5.2: resolution: {integrity: sha512-IXsMcGpw/xRfjra46sVZVHiSWo/nJ/3g1337q9KNXtS6YRzbW5yIzTCb9DjhrBe7r3GZQR0I4+nq+4ODk5g/cA==} engines: {node: '>=10.2.0'} dependencies: @@ -26729,7 +27914,7 @@ packages: base64id: 2.0.0 cookie: 0.4.2 cors: 2.8.5 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) engine.io-parser: 5.2.1 ws: 8.11.0 transitivePeerDependencies: @@ -26737,49 +27922,49 @@ packages: - supports-color - utf-8-validate - /enhanced-resolve/0.9.1: + /enhanced-resolve@0.9.1: resolution: {integrity: sha512-kxpoMgrdtkXZ5h0SeraBS1iRntpTpQ3R8ussdb38+UAFnMGX5DDyJXePm+OCHOcoXvHDw7mc2erbJBpDnl7TPw==} engines: {node: '>=0.6'} dependencies: graceful-fs: 4.2.11 memory-fs: 0.2.0 tapable: 0.1.10 - dev: true - /enhanced-resolve/5.15.0: + /enhanced-resolve@5.15.0: resolution: {integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==} engines: {node: '>=10.13.0'} dependencies: graceful-fs: 4.2.11 tapable: 2.2.1 - /enquirer/2.3.6: + /enquirer@2.3.6: resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} engines: {node: '>=8.6'} dependencies: ansi-colors: 4.1.3 - /ent/2.2.0: + /ent@2.2.0: resolution: {integrity: sha512-GHrMyVZQWvTIdDtpiEXdHZnFQKzeO09apj8Cbl4pKWy4i0Oprcq17usfDt5aO63swf0JOeMWjWQE/LzgSRuWpA==} - /entities/2.1.0: + /entities@2.1.0: resolution: {integrity: sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==} + requiresBuild: true dev: false optional: true - /entities/2.2.0: + /entities@2.2.0: resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} - /entities/3.0.1: + /entities@3.0.1: resolution: {integrity: sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==} engines: {node: '>=0.12'} dev: true - /entities/4.4.0: + /entities@4.4.0: resolution: {integrity: sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==} engines: {node: '>=0.12'} - /env-ci/5.5.0: + /env-ci@5.5.0: resolution: {integrity: sha512-o0JdWIbOLP+WJKIUt36hz1ImQQFuN92nhsfTkHHap+J8CiI8WgGpH/a9jEGHh4/TU5BUUGjlnKXNoDb57+ne+A==} engines: {node: '>=10.17'} dependencies: @@ -26788,12 +27973,12 @@ packages: java-properties: 1.0.2 dev: true - /env-paths/2.2.1: + /env-paths@2.2.1: resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} engines: {node: '>=6'} dev: true - /envalid/6.0.2: + /envalid@6.0.2: resolution: {integrity: sha512-ChJb9a5rjwZ/NkcXfBrzEl5cFZaGLg38N7MlWJkv5qsmSypX2WJe28LkoAWcklC60nKZXYKRlBbsjuJSjYw0Xg==} engines: {node: '>=8.12'} dependencies: @@ -26803,23 +27988,22 @@ packages: validator: 13.9.0 dev: false - /envalid/7.3.1: + /envalid@7.3.1: resolution: {integrity: sha512-KL1YRwn8WcoF/Ty7t+yLLtZol01xr9ZJMTjzoGRM8NaSU+nQQjSWOQKKJhJP2P57bpdakJ9jbxqQX4fGTOicZg==} engines: {node: '>=8.12'} dependencies: tslib: 2.3.1 dev: false - /envinfo/7.8.1: + /envinfo@7.8.1: resolution: {integrity: sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==} engines: {node: '>=4'} hasBin: true - dev: true - /err-code/2.0.3: + /err-code@2.0.3: resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==} - /errno/0.1.8: + /errno@0.1.8: resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==} hasBin: true requiresBuild: true @@ -26827,17 +28011,17 @@ packages: prr: 1.0.1 optional: true - /error-ex/1.3.2: + /error-ex@1.3.2: resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} dependencies: is-arrayish: 0.2.1 - /error-stack-parser/2.1.4: + /error-stack-parser@2.1.4: resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==} dependencies: stackframe: 1.3.4 - /es-abstract/1.22.1: + /es-abstract@1.22.1: resolution: {integrity: sha512-ioRRcXMO6OFyRpyzV3kE1IIBd4WG5/kltnzdxSCqoP8CMGs/Li+M1uF5o7lOkZVFjDs+NLesthnF66Pg/0q0Lw==} engines: {node: '>= 0.4'} dependencies: @@ -26881,10 +28065,10 @@ packages: unbox-primitive: 1.0.2 which-typed-array: 1.1.11 - /es-array-method-boxes-properly/1.0.0: + /es-array-method-boxes-properly@1.0.0: resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==} - /es-get-iterator/1.1.3: + /es-get-iterator@1.1.3: resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==} dependencies: call-bind: 1.0.2 @@ -26897,14 +28081,13 @@ packages: isarray: 2.0.5 stop-iteration-iterator: 1.0.0 - /es-module-lexer/0.9.3: + /es-module-lexer@0.9.3: resolution: {integrity: sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==} - /es-module-lexer/1.2.1: + /es-module-lexer@1.2.1: resolution: {integrity: sha512-9978wrXM50Y4rTMmW5kXIC09ZdXQZqkE4mxhwkd8VbzsGkXGPgV4zWuqQJgCEzYngdo2dYDa0l8xhX4fkSwJSg==} - dev: true - /es-set-tostringtag/2.0.1: + /es-set-tostringtag@2.0.1: resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==} engines: {node: '>= 0.4'} dependencies: @@ -26912,12 +28095,12 @@ packages: has: 1.0.3 has-tostringtag: 1.0.0 - /es-shim-unscopables/1.0.0: + /es-shim-unscopables@1.0.0: resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==} dependencies: has: 1.0.3 - /es-to-primitive/1.2.1: + /es-to-primitive@1.2.1: resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} engines: {node: '>= 0.4'} dependencies: @@ -26925,37 +28108,37 @@ packages: is-date-object: 1.0.5 is-symbol: 1.0.4 - /es6-error/4.1.1: + /es6-error@4.1.1: resolution: {integrity: sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==} dev: true - /esbuild-plugin-alias/0.2.1: + /esbuild-plugin-alias@0.2.1: resolution: {integrity: sha512-jyfL/pwPqaFXyKnj8lP8iLk6Z0m099uXR45aSN8Av1XD4vhvQutxxPzgA2bTcAwQpa1zCXDcWOlhFgyP3GKqhQ==} dev: true - /esbuild-register/3.5.0_esbuild@0.18.20: + /esbuild-register@3.5.0(esbuild@0.18.20): resolution: {integrity: sha512-+4G/XmakeBAsvJuDugJvtyF1x+XJT4FMocynNpxrvEBViirpfUn2PgNpCHedfWhF4WokNsO/OvMKrmJOIJsI5A==} peerDependencies: esbuild: '>=0.12 <1' dependencies: - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) esbuild: 0.18.20 transitivePeerDependencies: - supports-color - /esbuild-wasm/0.17.16: + /esbuild-wasm@0.17.16: resolution: {integrity: sha512-o5DNFwnYThm9LXYIEoZEnJrk7cI08GwVjHKMUHDFSN8vo0y8eKdEOAgNH3rSoBK/8E34PeKr1UO0liEBIH/GFQ==} engines: {node: '>=12'} hasBin: true dev: true - /esbuild-wasm/0.17.8: + /esbuild-wasm@0.17.8: resolution: {integrity: sha512-zCmpxv95E0FuCmvdw1K836UHnj4EdiQnFfjTby35y3LAjRPtXMj3sbHDRHjbD8Mqg5lTwq3knacr/1qIFU51CQ==} engines: {node: '>=12'} hasBin: true dev: true - /esbuild/0.17.16: + /esbuild@0.17.16: resolution: {integrity: sha512-aeSuUKr9aFVY9Dc8ETVELGgkj4urg5isYx8pLf4wlGgB0vTFjxJQdHnNH6Shmx4vYYrOTLCHtRI5i1XZ9l2Zcg==} engines: {node: '>=12'} hasBin: true @@ -26986,7 +28169,7 @@ packages: dev: true optional: true - /esbuild/0.17.8: + /esbuild@0.17.8: resolution: {integrity: sha512-g24ybC3fWhZddZK6R3uD2iF/RIPnRpwJAqLov6ouX3hMbY4+tKolP0VMF3zuIYCaXun+yHwS5IPQ91N2BT191g==} engines: {node: '>=12'} hasBin: true @@ -27015,9 +28198,8 @@ packages: '@esbuild/win32-ia32': 0.17.8 '@esbuild/win32-x64': 0.17.8 dev: true - optional: true - /esbuild/0.18.20: + /esbuild@0.18.20: resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==} engines: {node: '>=12'} hasBin: true @@ -27046,34 +28228,35 @@ packages: '@esbuild/win32-ia32': 0.18.20 '@esbuild/win32-x64': 0.18.20 - /escalade/3.1.1: + /escalade@3.1.1: resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} engines: {node: '>=6'} - /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'} - /escape-string-regexp/4.0.0: + /escape-string-regexp@4.0.0: resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} engines: {node: '>=10'} - /escape-string-regexp/5.0.0: + /escape-string-regexp@5.0.0: resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} engines: {node: '>=12'} dev: true - /escodegen/1.14.3: + /escodegen@1.14.3: resolution: {integrity: sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==} engines: {node: '>=4.0'} hasBin: true + requiresBuild: true dependencies: esprima: 4.0.1 estraverse: 4.3.0 @@ -27084,7 +28267,7 @@ packages: dev: false optional: true - /escodegen/2.1.0: + /escodegen@2.1.0: resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==} engines: {node: '>=6.0'} hasBin: true @@ -27095,7 +28278,7 @@ packages: optionalDependencies: source-map: 0.6.1 - /eslint-config-airbnb-base/15.0.0_dtwap2lpbyyqsycxkfjht2mjya: + /eslint-config-airbnb-base@15.0.0(eslint-plugin-import@2.28.1)(eslint@8.38.0): resolution: {integrity: sha512-xaX3z4ZZIcFLvh2oUNvcX5oEofXda7giYmuplVxoOg5A7EXJMrUyqRgR+mhDhPK8LZ4PttFOBvCYDbX3sUoUig==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -27104,13 +28287,13 @@ packages: dependencies: confusing-browser-globals: 1.0.11 eslint: 8.38.0 - eslint-plugin-import: 2.28.1_mqtuvpwfffxkinlbqzzyegexxa + eslint-plugin-import: 2.28.1(@typescript-eslint/parser@5.58.0)(eslint-import-resolver-webpack@0.13.7)(eslint@8.38.0) object.assign: 4.1.4 object.entries: 1.1.6 semver: 6.3.1 dev: true - /eslint-config-airbnb-typescript/17.1.0_do7ywwvi6jwswhx6pahjdup37u: + /eslint-config-airbnb-typescript@17.1.0(@typescript-eslint/eslint-plugin@5.58.0)(@typescript-eslint/parser@5.58.0)(eslint-plugin-import@2.28.1)(eslint@8.38.0): resolution: {integrity: sha512-GPxI5URre6dDpJ0CtcthSZVBAfI+Uw7un5OYNVxP2EYi3H81Jw701yFP7AU+/vCE7xBtFmjge7kfhhk4+RAiig==} peerDependencies: '@typescript-eslint/eslint-plugin': ^5.13.0 || ^6.0.0 @@ -27118,14 +28301,14 @@ packages: eslint: ^7.32.0 || ^8.2.0 eslint-plugin-import: ^2.25.3 dependencies: - '@typescript-eslint/eslint-plugin': 5.58.0_hzv37tkb63et4viajosjuuyxgi - '@typescript-eslint/parser': 5.58.0_ze6bmax3gcsfve3yrzu6npguhe + '@typescript-eslint/eslint-plugin': 5.58.0(@typescript-eslint/parser@5.58.0)(eslint@8.38.0)(typescript@4.9.5) + '@typescript-eslint/parser': 5.58.0(eslint@8.38.0)(typescript@4.9.5) eslint: 8.38.0 - eslint-config-airbnb-base: 15.0.0_dtwap2lpbyyqsycxkfjht2mjya - eslint-plugin-import: 2.28.1_mqtuvpwfffxkinlbqzzyegexxa + eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.28.1)(eslint@8.38.0) + eslint-plugin-import: 2.28.1(@typescript-eslint/parser@5.58.0)(eslint-import-resolver-webpack@0.13.7)(eslint@8.38.0) dev: true - /eslint-config-prettier/8.8.0_eslint@8.38.0: + /eslint-config-prettier@8.8.0(eslint@8.38.0): resolution: {integrity: sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA==} hasBin: true peerDependencies: @@ -27134,7 +28317,7 @@ packages: eslint: 8.38.0 dev: true - /eslint-config-react-app/7.0.1_sbdixes4cky6hqsocdpcwctiue: + /eslint-config-react-app@7.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint-import-resolver-webpack@0.13.7)(eslint@8.48.0)(jest@27.5.1)(typescript@4.9.5): resolution: {integrity: sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==} engines: {node: '>=14.0.0'} peerDependencies: @@ -27145,20 +28328,20 @@ packages: optional: true dependencies: '@babel/core': 7.22.11 - '@babel/eslint-parser': 7.21.3_uigyy4cvxrfgnh6h4oubbidkhu + '@babel/eslint-parser': 7.21.3(@babel/core@7.22.11)(eslint@8.48.0) '@rushstack/eslint-patch': 1.2.0 - '@typescript-eslint/eslint-plugin': 5.58.0_4k4x3vcwojrtyn7g4vcbgdgr5y - '@typescript-eslint/parser': 5.58.0_cgvy6hrg3pjeapqw5wnuqcmdo4 + '@typescript-eslint/eslint-plugin': 5.58.0(@typescript-eslint/parser@5.58.0)(eslint@8.48.0)(typescript@4.9.5) + '@typescript-eslint/parser': 5.58.0(eslint@8.48.0)(typescript@4.9.5) babel-preset-react-app: 10.0.1 confusing-browser-globals: 1.0.11 eslint: 8.48.0 - eslint-plugin-flowtype: 8.0.3_plg4yf4cnpgca527xiy32s2mgq - eslint-plugin-import: 2.28.1_3tkbfgrexmb4pdkflvp7rgxi4q - eslint-plugin-jest: 25.7.0_4ouuxk2y2kuljjbleohanxkb34 - eslint-plugin-jsx-a11y: 6.7.1_eslint@8.48.0 - eslint-plugin-react: 7.32.2_eslint@8.48.0 - eslint-plugin-react-hooks: 4.6.0_eslint@8.48.0 - eslint-plugin-testing-library: 5.10.2_cgvy6hrg3pjeapqw5wnuqcmdo4 + eslint-plugin-flowtype: 8.0.3(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint@8.48.0) + eslint-plugin-import: 2.28.1(@typescript-eslint/parser@5.58.0)(eslint-import-resolver-webpack@0.13.7)(eslint@8.48.0) + eslint-plugin-jest: 25.7.0(@typescript-eslint/eslint-plugin@5.58.0)(eslint@8.48.0)(jest@27.5.1)(typescript@4.9.5) + eslint-plugin-jsx-a11y: 6.7.1(eslint@8.48.0) + eslint-plugin-react: 7.32.2(eslint@8.48.0) + eslint-plugin-react-hooks: 4.6.0(eslint@8.48.0) + eslint-plugin-testing-library: 5.10.2(eslint@8.48.0)(typescript@4.9.5) typescript: 4.9.5 transitivePeerDependencies: - '@babel/plugin-syntax-flow' @@ -27168,16 +28351,16 @@ packages: - jest - supports-color - /eslint-import-resolver-node/0.3.7: + /eslint-import-resolver-node@0.3.7: resolution: {integrity: sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==} dependencies: - debug: 3.2.7 + debug: 3.2.7(supports-color@8.1.1) is-core-module: 2.13.0 resolve: 1.22.2 transitivePeerDependencies: - supports-color - /eslint-import-resolver-webpack/0.13.7_cgg6zkxgmecsi3sfqjiwsllzqq: + /eslint-import-resolver-webpack@0.13.7(eslint-plugin-import@2.28.1)(webpack@5.78.0): resolution: {integrity: sha512-2a+meyMeABBRO4K53Oj1ygkmt5lhQS79Lmx2f684Qnv6gjvD4RLOM5jfPGTXwQ0A2K03WSoKt3HRQu/uBgxF7w==} engines: {node: '>= 6'} peerDependencies: @@ -27185,9 +28368,9 @@ packages: webpack: '>=1.11.0' dependencies: array.prototype.find: 2.2.2 - debug: 3.2.7 + debug: 3.2.7(supports-color@8.1.1) enhanced-resolve: 0.9.1 - eslint-plugin-import: 2.28.1_mqtuvpwfffxkinlbqzzyegexxa + eslint-plugin-import: 2.28.1(@typescript-eslint/parser@5.58.0)(eslint-import-resolver-webpack@0.13.7)(eslint@8.38.0) find-root: 1.1.0 has: 1.0.3 interpret: 1.4.0 @@ -27196,12 +28379,11 @@ packages: lodash: 4.17.21 resolve: 2.0.0-next.4 semver: 5.7.2 - webpack: 5.78.0_@swc+core@1.3.49 + webpack: 5.78.0(@swc/core@1.3.49) transitivePeerDependencies: - supports-color - dev: true - /eslint-module-utils/2.8.0_cmbx4mgbjswbzzkey5t3ywmjhe: + /eslint-module-utils@2.8.0(@typescript-eslint/parser@5.58.0)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-webpack@0.13.7)(eslint@8.38.0): resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} engines: {node: '>=4'} peerDependencies: @@ -27222,16 +28404,15 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 5.58.0_ze6bmax3gcsfve3yrzu6npguhe - debug: 3.2.7 + '@typescript-eslint/parser': 5.58.0(eslint@8.38.0)(typescript@4.9.5) + debug: 3.2.7(supports-color@8.1.1) eslint: 8.38.0 eslint-import-resolver-node: 0.3.7 - eslint-import-resolver-webpack: 0.13.7_cgg6zkxgmecsi3sfqjiwsllzqq + eslint-import-resolver-webpack: 0.13.7(eslint-plugin-import@2.28.1)(webpack@5.78.0) transitivePeerDependencies: - supports-color - dev: true - /eslint-module-utils/2.8.0_gjxjedvhpvje3f4fipfwvwf6ly: + /eslint-module-utils@2.8.0(@typescript-eslint/parser@5.58.0)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-webpack@0.13.7)(eslint@8.48.0): resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} engines: {node: '>=4'} peerDependencies: @@ -27252,14 +28433,15 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 5.58.0_cgvy6hrg3pjeapqw5wnuqcmdo4 - debug: 3.2.7 + '@typescript-eslint/parser': 5.58.0(eslint@8.48.0)(typescript@4.9.5) + debug: 3.2.7(supports-color@8.1.1) eslint: 8.48.0 eslint-import-resolver-node: 0.3.7 + eslint-import-resolver-webpack: 0.13.7(eslint-plugin-import@2.28.1)(webpack@5.78.0) transitivePeerDependencies: - supports-color - /eslint-plugin-cypress/2.15.1_eslint@8.48.0: + /eslint-plugin-cypress@2.15.1(eslint@8.48.0): resolution: {integrity: sha512-eLHLWP5Q+I4j2AWepYq0PgFEei9/s5LvjuSqWrxurkg1YZ8ltxdvMNmdSf0drnsNo57CTgYY/NIHHLRSWejR7w==} peerDependencies: eslint: '>= 3.2.1' @@ -27267,7 +28449,7 @@ packages: eslint: 8.48.0 globals: 13.21.0 - /eslint-plugin-eslint-comments/3.2.0_eslint@8.38.0: + /eslint-plugin-eslint-comments@3.2.0(eslint@8.38.0): resolution: {integrity: sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ==} engines: {node: '>=6.5.0'} peerDependencies: @@ -27278,7 +28460,7 @@ packages: ignore: 5.2.4 dev: true - /eslint-plugin-flowtype/8.0.3_plg4yf4cnpgca527xiy32s2mgq: + /eslint-plugin-flowtype@8.0.3(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint@8.48.0): resolution: {integrity: sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==} engines: {node: '>=12.0.0'} peerDependencies: @@ -27286,13 +28468,13 @@ packages: '@babel/plugin-transform-react-jsx': ^7.14.9 eslint: ^8.1.0 dependencies: - '@babel/plugin-syntax-flow': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-react-jsx': 7.22.15_@babel+core@7.22.11 + '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.22.11) + '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.22.11) eslint: 8.48.0 lodash: 4.17.21 string-natural-compare: 3.0.1 - /eslint-plugin-functional/3.7.2_ze6bmax3gcsfve3yrzu6npguhe: + /eslint-plugin-functional@3.7.2(eslint@8.38.0)(typescript@4.9.5): resolution: {integrity: sha512-BuWPOeE0nuXYlZjObYOHnYf7G3iG+sysxw84I579MsrH+hy5XdXb2sdabmXQ5z7eFGCg2/DWNbZ/yz5GAgtcUg==} engines: {node: '>=10.18.0'} peerDependencies: @@ -27305,7 +28487,7 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/experimental-utils': 4.33.0_ze6bmax3gcsfve3yrzu6npguhe + '@typescript-eslint/experimental-utils': 4.33.0(eslint@8.38.0)(typescript@4.9.5) array.prototype.flatmap: 1.3.1 deepmerge: 4.3.1 escape-string-regexp: 4.0.0 @@ -27316,7 +28498,7 @@ packages: - supports-color dev: true - /eslint-plugin-import/2.28.1_3tkbfgrexmb4pdkflvp7rgxi4q: + /eslint-plugin-import@2.28.1(@typescript-eslint/parser@5.58.0)(eslint-import-resolver-webpack@0.13.7)(eslint@8.38.0): resolution: {integrity: sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A==} engines: {node: '>=4'} peerDependencies: @@ -27326,16 +28508,16 @@ packages: '@typescript-eslint/parser': optional: true dependencies: - '@typescript-eslint/parser': 5.58.0_cgvy6hrg3pjeapqw5wnuqcmdo4 + '@typescript-eslint/parser': 5.58.0(eslint@8.38.0)(typescript@4.9.5) array-includes: 3.1.6 array.prototype.findlastindex: 1.2.3 array.prototype.flat: 1.3.1 array.prototype.flatmap: 1.3.1 - debug: 3.2.7 + debug: 3.2.7(supports-color@8.1.1) doctrine: 2.1.0 - eslint: 8.48.0 + eslint: 8.38.0 eslint-import-resolver-node: 0.3.7 - eslint-module-utils: 2.8.0_gjxjedvhpvje3f4fipfwvwf6ly + eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.58.0)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-webpack@0.13.7)(eslint@8.38.0) has: 1.0.3 is-core-module: 2.13.0 is-glob: 4.0.3 @@ -27350,7 +28532,7 @@ packages: - eslint-import-resolver-webpack - supports-color - /eslint-plugin-import/2.28.1_mqtuvpwfffxkinlbqzzyegexxa: + /eslint-plugin-import@2.28.1(@typescript-eslint/parser@5.58.0)(eslint-import-resolver-webpack@0.13.7)(eslint@8.48.0): resolution: {integrity: sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A==} engines: {node: '>=4'} peerDependencies: @@ -27360,16 +28542,16 @@ packages: '@typescript-eslint/parser': optional: true dependencies: - '@typescript-eslint/parser': 5.58.0_ze6bmax3gcsfve3yrzu6npguhe + '@typescript-eslint/parser': 5.58.0(eslint@8.48.0)(typescript@4.9.5) array-includes: 3.1.6 array.prototype.findlastindex: 1.2.3 array.prototype.flat: 1.3.1 array.prototype.flatmap: 1.3.1 - debug: 3.2.7 + debug: 3.2.7(supports-color@8.1.1) doctrine: 2.1.0 - eslint: 8.38.0 + eslint: 8.48.0 eslint-import-resolver-node: 0.3.7 - eslint-module-utils: 2.8.0_cmbx4mgbjswbzzkey5t3ywmjhe + eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.58.0)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-webpack@0.13.7)(eslint@8.48.0) has: 1.0.3 is-core-module: 2.13.0 is-glob: 4.0.3 @@ -27383,9 +28565,8 @@ packages: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color - dev: true - /eslint-plugin-jest/25.7.0_4ouuxk2y2kuljjbleohanxkb34: + /eslint-plugin-jest@25.7.0(@typescript-eslint/eslint-plugin@5.58.0)(eslint@8.48.0)(jest@27.5.1)(typescript@4.9.5): resolution: {integrity: sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} peerDependencies: @@ -27398,15 +28579,15 @@ packages: jest: optional: true dependencies: - '@typescript-eslint/eslint-plugin': 5.58.0_4k4x3vcwojrtyn7g4vcbgdgr5y - '@typescript-eslint/experimental-utils': 5.58.0_cgvy6hrg3pjeapqw5wnuqcmdo4 + '@typescript-eslint/eslint-plugin': 5.58.0(@typescript-eslint/parser@5.58.0)(eslint@8.48.0)(typescript@4.9.5) + '@typescript-eslint/experimental-utils': 5.58.0(eslint@8.48.0)(typescript@4.9.5) eslint: 8.48.0 - jest: 27.5.1 + jest: 27.5.1(ts-node@10.9.1) transitivePeerDependencies: - supports-color - typescript - /eslint-plugin-jsx-a11y/6.7.1_eslint@8.38.0: + /eslint-plugin-jsx-a11y@6.7.1(eslint@8.38.0): resolution: {integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==} engines: {node: '>=4.0'} peerDependencies: @@ -27431,7 +28612,7 @@ packages: semver: 6.3.1 dev: true - /eslint-plugin-jsx-a11y/6.7.1_eslint@8.48.0: + /eslint-plugin-jsx-a11y@6.7.1(eslint@8.48.0): resolution: {integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==} engines: {node: '>=4.0'} peerDependencies: @@ -27455,7 +28636,7 @@ packages: object.fromentries: 2.0.6 semver: 6.3.1 - /eslint-plugin-prettier/4.2.1_6l7kvkw7pbq7sx3iiqo67pyozi: + /eslint-plugin-prettier@4.2.1(eslint-config-prettier@8.8.0)(eslint@7.32.0)(prettier@2.8.7): resolution: {integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==} engines: {node: '>=12.0.0'} peerDependencies: @@ -27467,11 +28648,12 @@ packages: optional: true dependencies: eslint: 7.32.0 + eslint-config-prettier: 8.8.0(eslint@8.38.0) prettier: 2.8.7 prettier-linter-helpers: 1.0.0 dev: true - /eslint-plugin-prettier/4.2.1_mrzcadguhkbme6yx3ehduvsjxu: + /eslint-plugin-prettier@4.2.1(eslint-config-prettier@8.8.0)(eslint@8.38.0)(prettier@2.8.7): resolution: {integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==} engines: {node: '>=12.0.0'} peerDependencies: @@ -27483,17 +28665,17 @@ packages: optional: true dependencies: eslint: 8.38.0 - eslint-config-prettier: 8.8.0_eslint@8.38.0 + eslint-config-prettier: 8.8.0(eslint@8.38.0) prettier: 2.8.7 prettier-linter-helpers: 1.0.0 dev: true - /eslint-plugin-promise/4.3.1: + /eslint-plugin-promise@4.3.1: resolution: {integrity: sha512-bY2sGqyptzFBDLh/GMbAxfdJC+b0f23ME63FOE4+Jao0oZ3E1LEwFtWJX/1pGMJLiTtrSSern2CRM/g+dfc0eQ==} engines: {node: '>=6'} dev: true - /eslint-plugin-react-hooks/4.6.0_eslint@8.38.0: + /eslint-plugin-react-hooks@4.6.0(eslint@8.38.0): resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} engines: {node: '>=10'} peerDependencies: @@ -27502,7 +28684,7 @@ packages: eslint: 8.38.0 dev: true - /eslint-plugin-react-hooks/4.6.0_eslint@8.48.0: + /eslint-plugin-react-hooks@4.6.0(eslint@8.48.0): resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} engines: {node: '>=10'} peerDependencies: @@ -27510,7 +28692,7 @@ packages: dependencies: eslint: 8.48.0 - /eslint-plugin-react/7.32.2_eslint@8.38.0: + /eslint-plugin-react@7.32.2(eslint@8.38.0): resolution: {integrity: sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==} engines: {node: '>=4'} peerDependencies: @@ -27534,7 +28716,7 @@ packages: string.prototype.matchall: 4.0.8 dev: true - /eslint-plugin-react/7.32.2_eslint@8.48.0: + /eslint-plugin-react@7.32.2(eslint@8.48.0): resolution: {integrity: sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==} engines: {node: '>=4'} peerDependencies: @@ -27557,7 +28739,7 @@ packages: semver: 6.3.1 string.prototype.matchall: 4.0.8 - /eslint-plugin-spellcheck/0.0.20_eslint@8.38.0: + /eslint-plugin-spellcheck@0.0.20(eslint@8.38.0): resolution: {integrity: sha512-GJa6vgzWAYqe0elKADAsiBRrhvqBnKyt7tpFSqlCZJsK2W9+K80oMyHhKolA7vJ13H5RCGs5/KCN+mKUyKoAiA==} peerDependencies: eslint: '>=0.8.0' @@ -27568,14 +28750,14 @@ packages: lodash: 4.17.21 dev: true - /eslint-plugin-storybook/0.6.13_cgvy6hrg3pjeapqw5wnuqcmdo4: + /eslint-plugin-storybook@0.6.13(eslint@8.48.0)(typescript@4.9.5): resolution: {integrity: sha512-smd+CS0WH1jBqUEJ3znGS7DU4ayBE9z6lkQAK2yrSUv1+rq8BT/tiI5C/rKE7rmiqiAfojtNYZRhzo5HrulccQ==} engines: {node: 12.x || 14.x || >= 16} peerDependencies: eslint: '>=6' dependencies: '@storybook/csf': 0.0.1 - '@typescript-eslint/utils': 5.58.0_cgvy6hrg3pjeapqw5wnuqcmdo4 + '@typescript-eslint/utils': 5.58.0(eslint@8.48.0)(typescript@4.9.5) eslint: 8.48.0 requireindex: 1.2.0 ts-dedent: 2.2.0 @@ -27584,66 +28766,65 @@ packages: - typescript dev: true - /eslint-plugin-testing-library/5.10.2_cgvy6hrg3pjeapqw5wnuqcmdo4: + /eslint-plugin-testing-library@5.10.2(eslint@8.48.0)(typescript@4.9.5): resolution: {integrity: sha512-f1DmDWcz5SDM+IpCkEX0lbFqrrTs8HRsEElzDEqN/EBI0hpRj8Cns5+IVANXswE8/LeybIJqPAOQIFu2j5Y5sw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: '>=6'} peerDependencies: eslint: ^7.5.0 || ^8.0.0 dependencies: - '@typescript-eslint/utils': 5.58.0_cgvy6hrg3pjeapqw5wnuqcmdo4 + '@typescript-eslint/utils': 5.58.0(eslint@8.48.0)(typescript@4.9.5) eslint: 8.48.0 transitivePeerDependencies: - supports-color - typescript - /eslint-plugin-vue/9.10.0_eslint@8.38.0: + /eslint-plugin-vue@9.10.0(eslint@8.38.0): resolution: {integrity: sha512-2MgP31OBf8YilUvtakdVMc8xVbcMp7z7/iQj8LHVpXrSXHPXSJRUIGSPFI6b6pyCx/buKaFJ45ycqfHvQRiW2g==} engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 dependencies: - '@eslint-community/eslint-utils': 4.4.0_eslint@8.38.0 + '@eslint-community/eslint-utils': 4.4.0(eslint@8.38.0) eslint: 8.38.0 natural-compare: 1.4.0 nth-check: 2.1.1 postcss-selector-parser: 6.0.11 semver: 7.4.0 - vue-eslint-parser: 9.1.1_eslint@8.38.0 + vue-eslint-parser: 9.1.1(eslint@8.38.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 - /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 - dev: true - /eslint-scope/7.2.2: + /eslint-scope@7.2.2: resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} 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.38.0: + /eslint-utils@3.0.0(eslint@8.38.0): resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} peerDependencies: @@ -27653,25 +28834,24 @@ packages: eslint-visitor-keys: 2.1.0 dev: true - /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.4.0: + /eslint-visitor-keys@3.4.0: resolution: {integrity: sha512-HPpKPUBQcAsZOsHAFwTtIKcYlCje62XB7SEAcxjtmW6TD1WVpkS6i6/hOVtTZIl4zGj/mBqpFVGvaDneik+VoQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dev: true - /eslint-visitor-keys/3.4.3: + /eslint-visitor-keys@3.4.3: resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - /eslint-webpack-plugin/3.2.0_hzv2vgrkwrkjb5sk6efnemby4e: + /eslint-webpack-plugin@3.2.0(eslint@8.48.0)(webpack@5.78.0): resolution: {integrity: sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==} engines: {node: '>= 12.13.0'} peerDependencies: @@ -27684,9 +28864,9 @@ packages: micromatch: 4.0.5 normalize-path: 3.0.0 schema-utils: 4.0.0 - webpack: 5.78.0_u5c4qderjagc6tepfyiby6xhau + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) - /eslint/7.32.0: + /eslint@7.32.0: resolution: {integrity: sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==} engines: {node: ^10.12.0 || >=12.0.0} hasBin: true @@ -27697,7 +28877,7 @@ packages: ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) doctrine: 3.0.0 enquirer: 2.3.6 escape-string-regexp: 4.0.0 @@ -27735,12 +28915,12 @@ packages: - supports-color dev: true - /eslint/8.38.0: + /eslint@8.38.0: resolution: {integrity: sha512-pIdsD2jwlUGf/U38Jv97t8lq6HpaU/G9NKbYmpWpZGw3LdTNhZLbJePqxOXGB5+JEKfOPU/XLxYxFh03nr1KTg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true dependencies: - '@eslint-community/eslint-utils': 4.4.0_eslint@8.38.0 + '@eslint-community/eslint-utils': 4.4.0(eslint@8.38.0) '@eslint-community/regexpp': 4.5.0 '@eslint/eslintrc': 2.0.2 '@eslint/js': 8.38.0 @@ -27750,7 +28930,7 @@ packages: ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.1.1 @@ -27782,14 +28962,13 @@ packages: text-table: 0.2.0 transitivePeerDependencies: - supports-color - dev: true - /eslint/8.48.0: + /eslint@8.48.0: resolution: {integrity: sha512-sb6DLeIuRXxeM1YljSe1KEx9/YYeZFQWcV8Rq9HfigmdDEugjLEVEa1ozDjL6YDjBpQHPJxJzze+alxi4T3OLg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true dependencies: - '@eslint-community/eslint-utils': 4.4.0_eslint@8.48.0 + '@eslint-community/eslint-utils': 4.4.0(eslint@8.48.0) '@eslint-community/regexpp': 4.8.0 '@eslint/eslintrc': 2.1.2 '@eslint/js': 8.48.0 @@ -27799,7 +28978,7 @@ packages: ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.2.2 @@ -27829,58 +29008,57 @@ packages: transitivePeerDependencies: - supports-color - /espree/7.3.1: + /espree@7.3.1: resolution: {integrity: sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==} engines: {node: ^10.12.0 || >=12.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.5.1: + /espree@9.5.1: resolution: {integrity: sha512-5yxtHSZXRSW5pvv3hAlXM5+/Oswi1AUFqBmbibKb5s6bp3rGIDkyXU6xCoyuuLhijr4SFwPrXRoZjz0AZDN9tg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: acorn: 8.10.0 - acorn-jsx: 5.3.2_acorn@8.10.0 + acorn-jsx: 5.3.2(acorn@8.10.0) eslint-visitor-keys: 3.4.0 - dev: true - /espree/9.6.1: + /espree@9.6.1: resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: acorn: 8.10.0 - acorn-jsx: 5.3.2_acorn@8.10.0 + acorn-jsx: 5.3.2(acorn@8.10.0) eslint-visitor-keys: 3.4.3 - /esprima/4.0.1: + /esprima@4.0.1: resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} engines: {node: '>=4'} hasBin: true - /esquery/1.5.0: + /esquery@1.5.0: resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} 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-to-babel/3.2.1: + /estree-to-babel@3.2.1: resolution: {integrity: sha512-YNF+mZ/Wu2FU/gvmzuWtYc8rloubL7wfXCTgouFrnjGVXPA/EeYYA7pupXWrb3Iv1cTBeSSxxJIbK23l4MRNqg==} engines: {node: '>=8.3.0'} dependencies: @@ -27891,31 +29069,31 @@ packages: - supports-color dev: true - /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==} - /estree-walker/2.0.2: + /estree-walker@2.0.2: resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} - /estree-walker/3.0.3: + /estree-walker@3.0.3: resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} dependencies: '@types/estree': 1.0.1 dev: true - /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/4.0.1: + /event-stream@4.0.1: resolution: {integrity: sha512-qACXdu/9VHPBzcyhdOWR5/IahhGMf0roTeZJfzz077GwylcDd90yOHLouhmv7GJ5XzPi6ekaQWd8AvPP2nOvpA==} dependencies: duplexer: 0.1.2 @@ -27927,36 +29105,37 @@ 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'} dev: false - /eventemitter-asyncresource/1.0.0: + /eventemitter-asyncresource@1.0.0: resolution: {integrity: sha512-39F7TBIV0G7gTelxwbEqnwhp90eqCPON1k0NwNfwhgKn4Co4ybUbj2pECcXT0B3ztRKZ7Pw1JujUUgmQJHcVAQ==} dev: true - /eventemitter2/6.4.7: + /eventemitter2@6.4.7: resolution: {integrity: sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg==} - /eventemitter3/3.1.2: + /eventemitter3@3.1.2: resolution: {integrity: sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q==} + requiresBuild: true dev: false optional: true - /eventemitter3/4.0.7: + /eventemitter3@4.0.7: resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} - /events/1.1.1: + /events@1.1.1: resolution: {integrity: sha512-kEcvvCBByWXGnZy6JUlgAp2gBIUjfCAV6P6TgT1/aaQKcmuAEC4OZTV1I4EWQLz2gxZw76atuVyvHhTxvi0Flw==} engines: {node: '>=0.4.x'} dev: false - /events/3.3.0: + /events@3.3.0: resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} engines: {node: '>=0.8.x'} - /execa/0.11.0: + /execa@0.11.0: resolution: {integrity: sha512-k5AR22vCt1DcfeiRixW46U5tMLtBg44ssdJM9PiXw3D8Bn5qyxFCSnKY/eR22y+ctFDGPqafpaXg2G4Emyua4A==} engines: {node: '>=6'} dependencies: @@ -27969,7 +29148,7 @@ packages: strip-eof: 1.0.0 dev: true - /execa/1.0.0: + /execa@1.0.0: resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==} engines: {node: '>=6'} dependencies: @@ -27982,7 +29161,7 @@ packages: strip-eof: 1.0.0 dev: true - /execa/4.1.0: + /execa@4.1.0: resolution: {integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==} engines: {node: '>=10'} dependencies: @@ -27996,7 +29175,7 @@ packages: signal-exit: 3.0.7 strip-final-newline: 2.0.0 - /execa/5.1.1: + /execa@5.1.1: resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} engines: {node: '>=10'} dependencies: @@ -28010,7 +29189,7 @@ packages: signal-exit: 3.0.7 strip-final-newline: 2.0.0 - /execa/6.1.0: + /execa@6.1.0: resolution: {integrity: sha512-QVWlX2e50heYJcCPG0iWtf8r0xjEYfz/OYLGDYH+IyjWezzPNxz63qNFOu0l4YftGWuizFVZHHs8PrLU5p2IDA==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: @@ -28025,28 +29204,28 @@ packages: strip-final-newline: 3.0.0 dev: true - /executable/4.1.1: + /executable@4.1.1: resolution: {integrity: sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==} engines: {node: '>=4'} dependencies: pify: 2.3.0 - /exenv/1.2.2: + /exenv@1.2.2: resolution: {integrity: sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw==} dev: true - /exit/0.1.2: + /exit@0.1.2: resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==} engines: {node: '>= 0.8.0'} - /expand-brackets/0.1.5: + /expand-brackets@0.1.5: resolution: {integrity: sha512-hxx03P2dJxss6ceIeri9cmYOT4SRs3Zk3afZwWpOsRqLqprhTR8u++SlC+sFGsQr7WGFPdMF7Gjc1njDLDK6UA==} engines: {node: '>=0.10.0'} dependencies: is-posix-bracket: 0.1.1 dev: true - /expand-brackets/2.1.4: + /expand-brackets@2.1.4: resolution: {integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==} engines: {node: '>=0.10.0'} dependencies: @@ -28061,21 +29240,21 @@ packages: - supports-color dev: true - /expand-range/1.8.2: + /expand-range@1.8.2: resolution: {integrity: sha512-AFASGfIlnIbkKPQwX1yHaDjFvh/1gyKJODme52V6IORh69uEYgZp0o9C+qsIGNVEiuuhQU0CSSl++Rlegg1qvA==} engines: {node: '>=0.10.0'} dependencies: fill-range: 2.2.4 dev: true - /expand-tilde/2.0.2: + /expand-tilde@2.0.2: resolution: {integrity: sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==} engines: {node: '>=0.10.0'} dependencies: homedir-polyfill: 1.0.3 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: @@ -28084,7 +29263,7 @@ packages: jest-matcher-utils: 27.5.1 jest-message-util: 27.5.1 - /expect/29.5.0: + /expect@29.5.0: resolution: {integrity: sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -28094,7 +29273,7 @@ packages: jest-message-util: 29.5.0 jest-util: 29.5.0 - /expo-server-sdk/3.7.0: + /expo-server-sdk@3.7.0: resolution: {integrity: sha512-SMZuBiIWejAdMMIOTjGQlprcwvSyLfeUQlooyGB5q6GvZ8zHjp+if8Q4k7xczUBTqIqTzs5IvTZnTiqA9Oe9WA==} dependencies: node-fetch: 2.6.9 @@ -28104,7 +29283,7 @@ packages: - encoding dev: false - /express/4.18.2: + /express@4.18.2: resolution: {integrity: sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==} engines: {node: '>= 0.10.0'} dependencies: @@ -28142,13 +29321,13 @@ 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 - /extend-shallow/3.0.2: + /extend-shallow@3.0.2: resolution: {integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==} engines: {node: '>=0.10.0'} dependencies: @@ -28156,14 +29335,14 @@ packages: is-extendable: 1.0.1 dev: true - /extend/2.0.2: + /extend@2.0.2: resolution: {integrity: sha512-AgFD4VU+lVLP6vjnlNfF7OeInLTyeyckCNPEsuxz1vi786UuK/nk6ynPuhn/h+Ju9++TQyr5EpLRI14fc1QtTQ==} dev: false - /extend/3.0.2: + /extend@3.0.2: resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} - /external-editor/3.1.0: + /external-editor@3.1.0: resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} engines: {node: '>=4'} dependencies: @@ -28171,14 +29350,14 @@ packages: iconv-lite: 0.4.24 tmp: 0.0.33 - /extglob/0.3.2: + /extglob@0.3.2: resolution: {integrity: sha512-1FOj1LOwn42TMrruOHGt18HemVnbwAmAak7krWk+wa93KXxGbK+2jpezm+ytJYDaBX0/SPLZFHKM7m+tKobWGg==} engines: {node: '>=0.10.0'} dependencies: is-extglob: 1.0.0 dev: true - /extglob/2.0.4: + /extglob@2.0.4: resolution: {integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==} engines: {node: '>=0.10.0'} dependencies: @@ -28194,7 +29373,7 @@ packages: - supports-color dev: true - /extract-css/3.0.1: + /extract-css@3.0.1: resolution: {integrity: sha512-mLNcMxYX7JVPcGUw7pgjczasLnvimYGlXFWuSx2YQ421sZDlBq4Dh0UzsSeXutf80Z0P2BtV5ZZt0FbaWTOxsQ==} dependencies: batch: 0.6.1 @@ -28205,7 +29384,7 @@ packages: - supports-color dev: false - /extract-zip/1.7.0: + /extract-zip@1.7.0: resolution: {integrity: sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==} hasBin: true dependencies: @@ -28217,12 +29396,12 @@ packages: - supports-color dev: true - /extract-zip/2.0.1_supports-color@8.1.1: + /extract-zip@2.0.1(supports-color@8.1.1): resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==} engines: {node: '>= 10.17.0'} hasBin: true dependencies: - debug: 4.3.4_supports-color@8.1.1 + debug: 4.3.4(supports-color@8.1.1) get-stream: 5.2.0 yauzl: 2.10.0 optionalDependencies: @@ -28230,39 +29409,39 @@ packages: transitivePeerDependencies: - supports-color - /extsprintf/1.3.0: + /extsprintf@1.3.0: resolution: {integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==} engines: {'0': node >=0.6.0} - /extsprintf/1.4.1: + /extsprintf@1.4.1: resolution: {integrity: sha512-Wrk35e8ydCKDj/ArClo1VrPVmN8zph5V4AtHwIuHhvMXsKf73UT3BOD+azBIW+3wOJ4FhEH7zyaJCFvChjYvMA==} engines: {'0': node >=0.6.0} - /eyes/0.1.8: + /eyes@0.1.8: resolution: {integrity: sha512-GipyPsXO1anza0AOZdy69Im7hGFCNB7Y/NGjDlZGJ3GJJLtwNSb2vrzYrTYJRrRloVx7pl+bhUaTB8yiccPvFQ==} engines: {node: '> 0.1.90'} dev: true - /fast-copy/3.0.1: + /fast-copy@3.0.1: resolution: {integrity: sha512-Knr7NOtK3HWRYGtHoJrjkaWepqT8thIVGAwt0p0aUs1zqkAzXZV4vo9fFNwyb5fcqK1GKYFYxldQdIDVKhUAfA==} dev: false - /fast-deep-equal/2.0.1: + /fast-deep-equal@2.0.1: resolution: {integrity: sha512-bCK/2Z4zLidyB4ReuIsvALH6w31YfAQDmXMqMx6FyfHqvBxtjC0eRumeSu4Bs3XtXwpyIywtSTrVT99BxY1f9w==} dev: false - /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-equals/4.0.3: + /fast-equals@4.0.3: resolution: {integrity: sha512-G3BSX9cfKttjr+2o1O22tYMLq0DPluZnYtq1rXumE1SpL/F/SLIfHx08WYQoWSIpeMYf8sRbJ8++71+v6Pnxfg==} dev: true - /fast-glob/3.2.12: + /fast-glob@3.2.12: resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==} engines: {node: '>=8.6.0'} dependencies: @@ -28272,7 +29451,7 @@ packages: merge2: 1.4.1 micromatch: 4.0.5 - /fast-glob/3.2.7: + /fast-glob@3.2.7: resolution: {integrity: sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==} engines: {node: '>=8'} dependencies: @@ -28282,7 +29461,7 @@ packages: merge2: 1.4.1 micromatch: 4.0.5 - /fast-glob/3.3.0: + /fast-glob@3.3.0: resolution: {integrity: sha512-ChDuvbOypPuNjO8yIDf36x7BlZX1smcUMTTcyoIjycexOxd6DFsKsg21qVBzEmr3G7fUKIRy2/psii+CIUt7FA==} engines: {node: '>=8.6.0'} dependencies: @@ -28292,93 +29471,93 @@ packages: merge2: 1.4.1 micromatch: 4.0.5 - /fast-json-parse/1.0.3: + /fast-json-parse@1.0.3: resolution: {integrity: sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==} dev: true - /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-redact/3.1.2: + /fast-redact@3.1.2: resolution: {integrity: sha512-+0em+Iya9fKGfEQGcd62Yv6onjBmmhV1uh86XVfOU8VwAe6kaFdQCWI9s0/Nnugx5Vd9tdbZ7e6gE2tR9dzXdw==} engines: {node: '>=6'} dev: false - /fast-safe-stringify/2.1.1: + /fast-safe-stringify@2.1.1: resolution: {integrity: sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==} - /fast-text-encoding/1.0.6: + /fast-text-encoding@1.0.6: resolution: {integrity: sha512-VhXlQgj9ioXCqGstD37E/HBeqEGV/qOD/kmbVG8h5xKBYvM1L3lR1Zn4555cQ8GkYbJa8aJSipLPndE1k6zK2w==} dev: false - /fast-url-parser/1.1.3: + /fast-url-parser@1.1.3: resolution: {integrity: sha512-5jOCVXADYNuRkKFzNJ0dCCewsZiYo0dz8QNYljkOpFC6r2U4OBmKtvm/Tsuh4w1YYdDqDb31a8TVhBJ2OJKdqQ==} dependencies: punycode: 1.4.1 dev: true - /fast-xml-parser/4.2.5: + /fast-xml-parser@4.2.5: resolution: {integrity: sha512-B9/wizE4WngqQftFPmdaMYlXoJlJOYxGQOanC77fq9k8+Z0v5dDSVh+3glErdIROP//s/jgb7ZuxKfB8nVyo0g==} hasBin: true dependencies: strnum: 1.0.5 dev: false - /fast-xml-parser/4.2.7: + /fast-xml-parser@4.2.7: resolution: {integrity: sha512-J8r6BriSLO1uj2miOk1NW0YVm8AGOOu3Si2HQp/cSmo6EA4m3fcwu2WKjJ4RK9wMLBtg69y1kS8baDiQBR41Ig==} hasBin: true + requiresBuild: true dependencies: strnum: 1.0.5 dev: false optional: true - /fastest-levenshtein/1.0.16: + /fastest-levenshtein@1.0.16: resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==} engines: {node: '>= 4.9.1'} - dev: true - /fastq/1.15.0: + /fastq@1.15.0: resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==} dependencies: reusify: 1.0.4 - /fault/1.0.4: + /fault@1.0.4: resolution: {integrity: sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==} dependencies: format: 0.2.2 dev: false - /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 - /fb-watchman/2.0.2: + /fb-watchman@2.0.2: resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} dependencies: bser: 2.1.1 - /fd-slicer/1.1.0: + /fd-slicer@1.1.0: resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==} dependencies: pend: 1.2.0 - /fecha/4.2.3: + /fecha@4.2.3: resolution: {integrity: sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==} dev: false - /fetch-blob/3.2.0: + /fetch-blob@3.2.0: resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==} engines: {node: ^12.20 || >= 14.13} dependencies: node-domexception: 1.0.0 web-streams-polyfill: 3.2.1 - /fetch-mock/9.11.0_node-fetch@3.3.1: + /fetch-mock@9.11.0(node-fetch@3.3.1): resolution: {integrity: sha512-PG1XUv+x7iag5p/iNHD4/jdpxL9FtVSqRMUQhPab4hVDt80T1MH5ehzVrL2IdXO9Q2iBggArFvPqjUbHFuI58Q==} engines: {node: '>=4.0.0'} peerDependencies: @@ -28390,7 +29569,7 @@ packages: '@babel/core': 7.21.4 '@babel/runtime': 7.21.0 core-js: 3.30.0 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) glob-to-regexp: 0.4.1 is-subset: 0.1.1 lodash.isequal: 4.5.0 @@ -28402,11 +29581,11 @@ packages: - supports-color dev: true - /fetch-retry/5.0.6: + /fetch-retry@5.0.6: resolution: {integrity: sha512-3yurQZ2hD9VISAhJJP9bpYFNQrHHBXE2JxxjY5aLEcDi46RmAzJE2OC9FAde0yis5ElW0jTTzs0zfg/Cca4XqQ==} dev: true - /figures/1.7.0: + /figures@1.7.0: resolution: {integrity: sha512-UxKlfCRuCBxSXU4C6t9scbDyWZ4VlaFFdojKtzJuSkuOBQ5CNFum+zZXFwHjo+CxBC1t6zlYPgHIgFjL8ggoEQ==} engines: {node: '>=0.10.0'} dependencies: @@ -28414,26 +29593,26 @@ packages: object-assign: 4.1.1 dev: true - /figures/2.0.0: + /figures@2.0.0: resolution: {integrity: sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==} engines: {node: '>=4'} dependencies: escape-string-regexp: 1.0.5 dev: true - /figures/3.2.0: + /figures@3.2.0: resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} engines: {node: '>=8'} dependencies: escape-string-regexp: 1.0.5 - /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.1.0 - /file-loader/6.2.0_webpack@5.78.0: + /file-loader@6.2.0(webpack@5.78.0): resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -28441,22 +29620,22 @@ packages: dependencies: loader-utils: 2.0.4 schema-utils: 3.3.0 - webpack: 5.78.0_u5c4qderjagc6tepfyiby6xhau + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) - /file-selector/0.6.0: + /file-selector@0.6.0: resolution: {integrity: sha512-QlZ5yJC0VxHxQQsQhXvBaC7VRJ2uaxTf+Tfpu4Z/OcVQJVpZO+DGU0rkoVW5ce2SccxugvpBJoMvUs59iILYdw==} engines: {node: '>= 12'} dependencies: tslib: 2.6.2 dev: false - /file-system-cache/2.3.0: + /file-system-cache@2.3.0: resolution: {integrity: sha512-l4DMNdsIPsVnKrgEXbJwDJsA5mB8rGwHYERMgqQx/xAUtChPJMre1bXBzDEqqVbWv9AIbFezXMxeEkZDSrXUOQ==} dependencies: fs-extra: 11.1.1 ramda: 0.29.0 - /file-type/14.7.1: + /file-type@14.7.1: resolution: {integrity: sha512-sXAMgFk67fQLcetXustxfKX+PZgHIUFn96Xld9uH8aXPdX3xOp0/jg9OdouVTvQrf7mrn+wAa4jN/y9fUOOiRA==} engines: {node: '>=8'} dependencies: @@ -28466,28 +29645,28 @@ packages: typedarray-to-buffer: 3.1.5 dev: true - /file-uri-to-path/1.0.0: + /file-uri-to-path@1.0.0: resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==} requiresBuild: true dev: true optional: true - /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.6 - /filename-regex/2.0.1: + /filename-regex@2.0.1: resolution: {integrity: sha512-BTCqyBaWBTsauvnHiE8i562+EdJj+oUpkqWp2R1iCoR8f6oo8STRu3of7WJJ0TqWtxN50a5YFpzYK4Jj9esYfQ==} engines: {node: '>=0.10.0'} dev: true - /filename-reserved-regex/2.0.0: + /filename-reserved-regex@2.0.0: resolution: {integrity: sha512-lc1bnsSr4L4Bdif8Xb/qrtokGbq5zlsms/CYH8PP+WtCkGNF65DPiQY8vG3SakEdRn8Dlnm+gW/qWKKjS5sZzQ==} engines: {node: '>=4'} dev: true - /filenamify/4.3.0: + /filenamify@4.3.0: resolution: {integrity: sha512-hcFKyUG57yWGAzu1CMt/dPzYZuv+jAJUT85bL8mrXvNe6hWj6yEHEc4EdcgiA6Z3oi1/9wXJdZPXF2dZNgwgOg==} engines: {node: '>=8'} dependencies: @@ -28496,11 +29675,11 @@ packages: trim-repeated: 1.0.0 dev: true - /filesize/8.0.7: + /filesize@8.0.7: resolution: {integrity: sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ==} engines: {node: '>= 0.4.0'} - /fill-range/2.2.4: + /fill-range@2.2.4: resolution: {integrity: sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==} engines: {node: '>=0.10.0'} dependencies: @@ -28511,7 +29690,7 @@ packages: repeat-string: 1.6.1 dev: true - /fill-range/4.0.0: + /fill-range@4.0.0: resolution: {integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==} engines: {node: '>=0.10.0'} dependencies: @@ -28521,18 +29700,18 @@ packages: to-regex-range: 2.1.1 dev: true - /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 - /filter-obj/1.1.0: + /filter-obj@1.1.0: resolution: {integrity: sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==} engines: {node: '>=0.10.0'} dev: false - /finalhandler/1.1.2: + /finalhandler@1.1.2: resolution: {integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==} engines: {node: '>= 0.8'} dependencies: @@ -28547,7 +29726,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: @@ -28561,7 +29740,7 @@ packages: transitivePeerDependencies: - supports-color - /find-cache-dir/2.1.0: + /find-cache-dir@2.1.0: resolution: {integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==} engines: {node: '>=6'} dependencies: @@ -28570,7 +29749,7 @@ packages: pkg-dir: 3.0.0 dev: true - /find-cache-dir/3.3.2: + /find-cache-dir@3.3.2: resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==} engines: {node: '>=8'} dependencies: @@ -28578,55 +29757,55 @@ packages: make-dir: 3.1.0 pkg-dir: 4.2.0 - /find-index/0.1.1: + /find-index@0.1.1: resolution: {integrity: sha512-uJ5vWrfBKMcE6y2Z8834dwEZj9mNGxYa3t3I53OwFeuZ8D9oc2E5zcsrkuhX6h4iYrjhiv0T3szQmxlAV9uxDg==} dev: true - /find-node-modules/2.1.3: + /find-node-modules@2.1.3: resolution: {integrity: sha512-UC2I2+nx1ZuOBclWVNdcnbDR5dlrOdVb7xNjmT/lHE+LsgztWks3dG7boJ37yTS/venXw84B/mAW9uHVoC5QRg==} dependencies: findup-sync: 4.0.0 merge: 2.1.1 dev: true - /find-replace/3.0.0: + /find-replace@3.0.0: resolution: {integrity: sha512-6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ==} engines: {node: '>=4.0.0'} dependencies: array-back: 3.1.0 dev: true - /find-root/1.1.0: + /find-root@1.1.0: resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==} - /find-up/2.1.0: + /find-up@2.1.0: resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==} engines: {node: '>=4'} dependencies: locate-path: 2.0.0 dev: true - /find-up/3.0.0: + /find-up@3.0.0: resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==} engines: {node: '>=6'} dependencies: locate-path: 3.0.0 - /find-up/4.1.0: + /find-up@4.1.0: resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} engines: {node: '>=8'} dependencies: locate-path: 5.0.0 path-exists: 4.0.0 - /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 - /find-up/6.3.0: + /find-up@6.3.0: resolution: {integrity: sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: @@ -28634,14 +29813,14 @@ packages: path-exists: 5.0.0 dev: false - /find-versions/4.0.0: + /find-versions@4.0.0: resolution: {integrity: sha512-wgpWy002tA+wgmO27buH/9KzyEOQnKsG/R0yrcjPT9BOFm0zRBVQbZ95nRGXWMywS8YR5knRbpohio0bcJABxQ==} engines: {node: '>=10'} dependencies: semver-regex: 3.1.4 dev: true - /findup-sync/4.0.0: + /findup-sync@4.0.0: resolution: {integrity: sha512-6jvvn/12IC4quLBL1KNokxC7wWTvYncaVUYSoxWw7YykPLuRrnv4qdHcSOywOI5RpkOVGeQRtWM8/q+G6W6qfQ==} engines: {node: '>= 8'} dependencies: @@ -28651,7 +29830,7 @@ packages: resolve-dir: 1.0.1 dev: true - /firebase-admin/11.10.1: + /firebase-admin@11.10.1: resolution: {integrity: sha512-atv1E6GbuvcvWaD3eHwrjeP5dAVs+EaHEJhu9CThMzPY6In8QYDiUR6tq5SwGl4SdA/GcAU0nhwWc/FSJsAzfQ==} engines: {node: '>=14'} dependencies: @@ -28671,7 +29850,7 @@ packages: - supports-color dev: false - /flat-cache/3.1.0: + /flat-cache@3.1.0: resolution: {integrity: sha512-OHx4Qwrrt0E4jEIcI5/Xb+f+QmJYNj2rrK8wiIdQOIrB9WrrJL8cjZvXdXuBTkkEwEqLycb5BeZDV1o2i9bTew==} engines: {node: '>=12.0.0'} dependencies: @@ -28679,34 +29858,34 @@ packages: keyv: 4.5.3 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 - /flatted/3.2.7: + /flatted@3.2.7: resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==} - /flow-parser/0.216.1: + /flow-parser@0.216.1: resolution: {integrity: sha512-wstw46/C/8bRv/8RySCl15lK376j8DHxm41xFjD9eVL+jSS1UmVpbdLdA0LzGuS2v5uGgQiBLEj6mgSJQwW+MA==} engines: {node: '>=0.4.0'} dev: true - /flush-write-stream/2.0.0: + /flush-write-stream@2.0.0: resolution: {integrity: sha512-uXClqPxT4xW0lcdSBheb2ObVU+kuqUk3Jk64EwieirEXZx9XUrVwp/JuBfKAWaM4T5Td/VL7QLDWPXp/MvGm/g==} dependencies: inherits: 2.0.4 readable-stream: 3.6.2 dev: true - /fn.name/1.1.0: + /fn.name@1.1.0: resolution: {integrity: sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==} dev: false - /follow-redirects/1.15.2: + /follow-redirects@1.15.2: resolution: {integrity: sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==} engines: {node: '>=4.0'} peerDependencies: @@ -28715,24 +29894,24 @@ 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.7 - /for-in/1.0.2: + /for-in@1.0.2: resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==} engines: {node: '>=0.10.0'} dev: true - /for-own/0.1.5: + /for-own@0.1.5: resolution: {integrity: sha512-SKmowqGTJoPzLO1T0BBJpkfp3EMacCMOuH40hOUbrbzElVktk4DioXVM99QkLCyKoiuOmyjgcWMpVz2xjE7LZw==} engines: {node: '>=0.10.0'} dependencies: for-in: 1.0.2 dev: true - /foreground-child/2.0.0: + /foreground-child@2.0.0: resolution: {integrity: sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==} engines: {node: '>=8.0.0'} dependencies: @@ -28740,17 +29919,17 @@ packages: signal-exit: 3.0.7 dev: true - /foreground-child/3.1.1: + /foreground-child@3.1.1: resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==} engines: {node: '>=14'} dependencies: cross-spawn: 7.0.3 signal-exit: 4.0.2 - /forever-agent/0.6.1: + /forever-agent@0.6.1: resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==} - /fork-ts-checker-webpack-plugin/6.5.3_vq6t4wvflba3b6dvvfvomzl76u: + /fork-ts-checker-webpack-plugin@6.5.3(eslint@8.48.0)(typescript@4.9.5)(webpack@5.78.0): resolution: {integrity: sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==} engines: {node: '>=10', yarn: '>=1.0.0'} peerDependencies: @@ -28779,9 +29958,9 @@ packages: semver: 7.5.4 tapable: 1.1.3 typescript: 4.9.5 - webpack: 5.78.0_u5c4qderjagc6tepfyiby6xhau + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) - /fork-ts-checker-webpack-plugin/8.0.0_fejcc7gjbwtmwzggoernzojija: + /fork-ts-checker-webpack-plugin@8.0.0(typescript@4.9.5)(webpack@5.78.0): resolution: {integrity: sha512-mX3qW3idpueT2klaQXBzrIM/pHw+T0B/V9KHEvNrqijTq9NFnMZU6oreVxDYcf33P8a5cW+67PjodNHthGnNVg==} engines: {node: '>=12.13.0', yarn: '>=1.0.0'} peerDependencies: @@ -28801,10 +29980,10 @@ packages: semver: 7.5.4 tapable: 2.2.1 typescript: 4.9.5 - webpack: 5.78.0_u5c4qderjagc6tepfyiby6xhau + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) dev: true - /fork-ts-checker-webpack-plugin/8.0.0_wlox7xpecxj4rvkt6b6o7frtlu: + /fork-ts-checker-webpack-plugin@8.0.0(typescript@5.1.6)(webpack@5.88.2): resolution: {integrity: sha512-mX3qW3idpueT2klaQXBzrIM/pHw+T0B/V9KHEvNrqijTq9NFnMZU6oreVxDYcf33P8a5cW+67PjodNHthGnNVg==} engines: {node: '>=12.13.0', yarn: '>=1.0.0'} peerDependencies: @@ -28824,10 +30003,10 @@ packages: semver: 7.5.4 tapable: 2.2.1 typescript: 5.1.6 - webpack: 5.88.2 + webpack: 5.88.2(@swc/core@1.3.49) dev: true - /form-data/2.3.3: + /form-data@2.3.3: resolution: {integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==} engines: {node: '>= 0.12'} dependencies: @@ -28835,7 +30014,7 @@ packages: combined-stream: 1.0.8 mime-types: 2.1.35 - /form-data/2.5.1: + /form-data@2.5.1: resolution: {integrity: sha512-m21N3WOmEEURgk6B9GLOE4RuWOFf28Lhh9qGYeNlGq4VDXUlJy2th2slBNU8Gp8EzloYZOibZJ7t5ecIrFSjVA==} engines: {node: '>= 0.12'} dependencies: @@ -28843,7 +30022,7 @@ packages: combined-stream: 1.0.8 mime-types: 2.1.35 - /form-data/3.0.1: + /form-data@3.0.1: resolution: {integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==} engines: {node: '>= 6'} dependencies: @@ -28851,7 +30030,7 @@ packages: combined-stream: 1.0.8 mime-types: 2.1.35 - /form-data/4.0.0: + /form-data@4.0.0: resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} engines: {node: '>= 6'} dependencies: @@ -28859,22 +30038,22 @@ packages: combined-stream: 1.0.8 mime-types: 2.1.35 - /format/0.2.2: + /format@0.2.2: resolution: {integrity: sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==} engines: {node: '>=0.4.x'} dev: false - /formdata-polyfill/4.0.10: + /formdata-polyfill@4.0.10: resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==} engines: {node: '>=12.20.0'} dependencies: fetch-blob: 3.2.0 - /formidable/1.2.6: + /formidable@1.2.6: resolution: {integrity: sha512-KcpbcpuLNOwrEjnbpMC0gS+X8ciDoZE1kkqzat4a8vrprf+s9pKNQ/QIwWfbfs4ltgmFl3MD177SNTkve3BwGQ==} deprecated: 'Please upgrade to latest, formidable@v2 or formidable@v3! Check these notes: https://bit.ly/2ZEqIau' - /formidable/2.1.2: + /formidable@2.1.2: resolution: {integrity: sha512-CM3GuJ57US06mlpQ47YcunuUZ9jpm8Vx+P2CGt2j7HpgkKZO/DJYQ0Bobim8G6PFQmK5lOqOOdUXboU+h73A4g==} dependencies: dezalgo: 1.0.4 @@ -28882,53 +30061,53 @@ packages: once: 1.4.0 qs: 6.11.1 - /forwarded/0.2.0: + /forwarded@0.2.0: resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} engines: {node: '>= 0.6'} - /fp-ts/2.13.1: + /fp-ts@2.13.1: resolution: {integrity: sha512-0eu5ULPS2c/jsa1lGFneEFFEdTbembJv8e4QKXeVJ3lm/5hyve06dlKZrpxmMwJt6rYen7sxmHHK2CLaXvWuWQ==} dev: true - /fraction.js/4.2.0: + /fraction.js@4.2.0: resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==} - /fragment-cache/0.2.1: + /fragment-cache@0.2.1: resolution: {integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==} engines: {node: '>=0.10.0'} dependencies: map-cache: 0.2.2 dev: true - /fresh/0.5.2: + /fresh@0.5.2: resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} engines: {node: '>= 0.6'} - /from/0.1.7: - resolution: {integrity: sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g==} - dev: false - - /from2/2.3.0: + /from2@2.3.0: resolution: {integrity: sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==} dependencies: inherits: 2.0.4 readable-stream: 2.3.8 dev: true - /fromentries/1.3.2: + /from@0.1.7: + resolution: {integrity: sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g==} + dev: false + + /fromentries@1.3.2: resolution: {integrity: sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg==} dev: true - /front-matter/4.0.2: + /front-matter@4.0.2: resolution: {integrity: sha512-I8ZuJ/qG92NWX8i5x1Y8qyj3vizhXS31OxjKDu3LKP+7/qBgfIKValiZIEwoVoJKUHlhWtYrktkxV1XsX+pPlg==} dependencies: js-yaml: 3.14.1 dev: true - /fs-constants/1.0.0: + /fs-constants@1.0.0: resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} - /fs-extra/10.1.0: + /fs-extra@10.1.0: resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} engines: {node: '>=12'} dependencies: @@ -28936,7 +30115,7 @@ packages: jsonfile: 6.1.0 universalify: 2.0.0 - /fs-extra/11.1.0: + /fs-extra@11.1.0: resolution: {integrity: sha512-0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw==} engines: {node: '>=14.14'} dependencies: @@ -28944,7 +30123,7 @@ packages: jsonfile: 6.1.0 universalify: 2.0.0 - /fs-extra/11.1.1: + /fs-extra@11.1.1: resolution: {integrity: sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==} engines: {node: '>=14.14'} dependencies: @@ -28952,7 +30131,7 @@ packages: jsonfile: 6.1.0 universalify: 2.0.0 - /fs-extra/8.1.0: + /fs-extra@8.1.0: resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} engines: {node: '>=6 <7 || >=8'} dependencies: @@ -28960,7 +30139,7 @@ packages: jsonfile: 4.0.0 universalify: 0.1.2 - /fs-extra/9.1.0: + /fs-extra@9.1.0: resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} engines: {node: '>=10'} dependencies: @@ -28969,30 +30148,30 @@ packages: jsonfile: 6.1.0 universalify: 2.0.0 - /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-minipass/3.0.1: + /fs-minipass@3.0.1: resolution: {integrity: sha512-MhaJDcFRTuLidHrIttu0RDGyyXs/IYHVmlcxfLAEFIWjc1vdLAkdwT7Ace2u7DbitWC0toKMl5eJZRYNVreIMw==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: minipass: 4.2.7 dev: true - /fs-monkey/1.0.3: + /fs-monkey@1.0.3: resolution: {integrity: sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==} - /fs.realpath/1.0.0: + /fs.realpath@1.0.0: resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} - /fs/0.0.1-security: + /fs@0.0.1-security: resolution: {integrity: sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==} dev: false - /fsevents/1.2.13: + /fsevents@1.2.13: resolution: {integrity: sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==} engines: {node: '>= 4.0'} os: [darwin] @@ -29004,17 +30183,17 @@ packages: dev: true optional: true - /fsevents/2.3.3: + /fsevents@2.3.3: resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} os: [darwin] requiresBuild: true optional: true - /function-bind/1.1.1: + /function-bind@1.1.1: resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} - /function.prototype.name/1.1.6: + /function.prototype.name@1.1.6: resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} engines: {node: '>= 0.4'} dependencies: @@ -29023,13 +30202,13 @@ packages: es-abstract: 1.22.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==} - /functions-have-names/1.2.3: + /functions-have-names@1.2.3: resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} - /gauge/3.0.2: + /gauge@3.0.2: resolution: {integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==} engines: {node: '>=10'} dependencies: @@ -29044,7 +30223,7 @@ packages: wide-align: 1.1.5 dev: false - /gauge/4.0.4: + /gauge@4.0.4: resolution: {integrity: sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: @@ -29058,7 +30237,7 @@ packages: wide-align: 1.1.5 dev: true - /gaxios/4.3.3: + /gaxios@4.3.3: resolution: {integrity: sha512-gSaYYIO1Y3wUtdfHmjDUZ8LWaxJQpiavzbF5Kq53akSzvmVg0RfyOcFDbO1KJ/KCGRFz2qG+lS81F0nkr7cRJA==} engines: {node: '>=10'} dependencies: @@ -29072,7 +30251,7 @@ packages: - supports-color dev: false - /gaxios/5.1.0: + /gaxios@5.1.0: resolution: {integrity: sha512-aezGIjb+/VfsJtIcHGcBSerNEDdfdHeMros+RbYbGpmonKWQCOVOes0LVZhn1lDtIgq55qq0HaxymIoae3Fl/A==} engines: {node: '>=12'} dependencies: @@ -29085,9 +30264,10 @@ packages: - supports-color dev: false - /gaxios/5.1.3: + /gaxios@5.1.3: resolution: {integrity: sha512-95hVgBRgEIRQQQHIbnxBXeHbW4TqFk4ZDJW7wmVtvYar72FdhRIo1UGOLS2eRAKCPEdPBWu+M7+A33D9CdX9rA==} engines: {node: '>=12'} + requiresBuild: true dependencies: extend: 3.0.2 https-proxy-agent: 5.0.1 @@ -29099,7 +30279,7 @@ packages: dev: false optional: true - /gcp-metadata/4.3.1: + /gcp-metadata@4.3.1: resolution: {integrity: sha512-x850LS5N7V1F3UcV7PoupzGsyD6iVwTVvsh3tbXfkctZnBnjW5yu5z1/3k3SehF7TyoTIe78rJs02GMMy+LF+A==} engines: {node: '>=10'} dependencies: @@ -29110,7 +30290,7 @@ packages: - supports-color dev: false - /gcp-metadata/5.2.0: + /gcp-metadata@5.2.0: resolution: {integrity: sha512-aFhhvvNycky2QyhG+dcfEdHBF0FRbYcf39s6WNHUDysKSrbJ5vuFbjydxBcmewtXeV248GP8dWT3ByPNxsyHCw==} engines: {node: '>=12'} dependencies: @@ -29121,9 +30301,10 @@ packages: - supports-color dev: false - /gcp-metadata/5.3.0: + /gcp-metadata@5.3.0: resolution: {integrity: sha512-FNTkdNEnBdlqF2oatizolQqNANMrcqJt6AAYt99B3y1aLLC8Hc5IOBb+ZnnzllodEEf6xMBp6wRcBbc16fa65w==} engines: {node: '>=12'} + requiresBuild: true dependencies: gaxios: 5.1.3 json-bigint: 1.0.0 @@ -29133,34 +30314,34 @@ packages: dev: false optional: true - /gensequence/3.1.1: + /gensequence@3.1.1: resolution: {integrity: sha512-ys3h0hiteRwmY6BsvSttPmkhC0vEQHPJduANBRtH/dlDPZ0UBIb/dXy80IcckXyuQ6LKg+PloRqvGER9IS7F7g==} engines: {node: '>=10.0.0'} dev: true - /gensequence/4.0.3: + /gensequence@4.0.3: resolution: {integrity: sha512-izr+MKqJKjexkvLiPGhW96elQX8TuUR/su/xzILxjqzU1RDz1n1ZbqwDUnNFaRcq0gFR3oQfNH2JOH4Je1x/QA==} engines: {node: '>=14'} dev: true - /gensequence/5.0.2: + /gensequence@5.0.2: resolution: {integrity: sha512-JlKEZnFc6neaeSVlkzBGGgkIoIaSxMgvdamRoPN8r3ozm2r9dusqxeKqYQ7lhzmj2UhFQP8nkyfCaiLQxiLrDA==} engines: {node: '>=14'} dev: true - /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'} - /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.2.1: + /get-intrinsic@1.2.1: resolution: {integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==} dependencies: function-bind: 1.1.1 @@ -29168,30 +30349,30 @@ packages: has-proto: 1.0.1 has-symbols: 1.0.3 - /get-monorepo-packages/1.2.0: + /get-monorepo-packages@1.2.0: resolution: {integrity: sha512-aDP6tH+eM3EuVSp3YyCutOcFS4Y9AhRRH9FAd+cjtR/g63Hx+DCXdKoP1ViRPUJz5wm+BOEXB4FhoffGHxJ7jQ==} dependencies: globby: 7.1.1 load-json-file: 4.0.0 dev: true - /get-nonce/1.0.1: + /get-nonce@1.0.1: resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==} engines: {node: '>=6'} - /get-npm-tarball-url/2.0.3: + /get-npm-tarball-url@2.0.3: resolution: {integrity: sha512-R/PW6RqyaBQNWYaSyfrh54/qtcnOp22FHCCiRhSSZj0FP3KQWCsxxt0DzIdVTbwTqe9CtQfvl/FPD4UIPt4pqw==} engines: {node: '>=12.17'} dev: true - /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'} - /get-pkg-repo/4.2.1: + /get-pkg-repo@4.2.1: resolution: {integrity: sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==} engines: {node: '>=6.9.0'} hasBin: true @@ -29202,89 +30383,89 @@ packages: yargs: 16.2.0 dev: true - /get-port/5.1.1: + /get-port@5.1.1: resolution: {integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==} engines: {node: '>=8'} - /get-source/2.0.12: + /get-source@2.0.12: resolution: {integrity: sha512-X5+4+iD+HoSeEED+uwrQ07BOQr0kEDFMVqqpBuI+RaZBpBpHCuXxo70bjar6f0b0u/DQJsJ7ssurpP0V60Az+w==} dependencies: data-uri-to-buffer: 2.0.2 source-map: 0.6.1 dev: true - /get-stdin/6.0.0: + /get-stdin@6.0.0: resolution: {integrity: sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g==} engines: {node: '>=4'} dev: true - /get-stdin/7.0.0: + /get-stdin@7.0.0: resolution: {integrity: sha512-zRKcywvrXlXsA0v0i9Io4KDRaAw7+a1ZpjRwl9Wox8PFlVCCHra7E9c4kqXCoCM9nR5tBkaTTZRBoCm60bFqTQ==} engines: {node: '>=8'} dev: true - /get-stdin/8.0.0: + /get-stdin@8.0.0: resolution: {integrity: sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==} engines: {node: '>=10'} dev: true - /get-stdin/9.0.0: + /get-stdin@9.0.0: resolution: {integrity: sha512-dVKBjfWisLAicarI2Sf+JuBE/DghV4UzNAVe9yhEJuzeREd3JhOTE9cUaJTeSa77fsbQUK3pcOpJfM59+VKZaA==} engines: {node: '>=12'} dev: true - /get-stream/4.1.0: + /get-stream@4.1.0: resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==} engines: {node: '>=6'} dependencies: pump: 3.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 - /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.2.1 - /get-uri/6.0.1: + /get-uri@6.0.1: resolution: {integrity: sha512-7ZqONUVqaabogsYNWlYj0t3YZaL6dhuEueZXGF+/YVmf6dHmaFg8/6psJKqhx9QykIDKzpGcy2cn4oV4YC7V/Q==} engines: {node: '>= 14'} dependencies: basic-ftp: 5.0.3 data-uri-to-buffer: 5.0.1 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) fs-extra: 8.1.0 transitivePeerDependencies: - supports-color dev: false - /get-value/2.0.6: + /get-value@2.0.6: resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==} engines: {node: '>=0.10.0'} dev: true - /getos/3.2.1: + /getos@3.2.1: resolution: {integrity: sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==} dependencies: async: 3.2.4 - /getpass/0.1.7: + /getpass@0.1.7: resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==} dependencies: assert-plus: 1.0.0 - /gh-pages/3.2.3: + /gh-pages@3.2.3: resolution: {integrity: sha512-jA1PbapQ1jqzacECfjUaO9gV8uBgU6XNMV0oXLtfCX3haGLe5Atq8BxlrADhbD6/UdG9j6tZLWAkAybndOXTJg==} engines: {node: '>=10'} hasBin: true @@ -29298,7 +30479,7 @@ packages: globby: 6.1.0 dev: true - /giget/1.1.2: + /giget@1.1.2: resolution: {integrity: sha512-HsLoS07HiQ5oqvObOI+Qb2tyZH4Gj5nYGfF9qQcZNrPw+uEFhdXtgJr01aO2pWadGHucajYDLxxbtQkm97ON2A==} hasBin: true dependencies: @@ -29313,7 +30494,7 @@ packages: - supports-color dev: true - /git-log-parser/1.2.0: + /git-log-parser@1.2.0: resolution: {integrity: sha512-rnCVNfkTL8tdNryFuaY0fYiBWEBcgF748O6ZI61rslBvr2o7U65c2/6npCRqH40vuAhtgtDiqLTJjBVdrejCzA==} dependencies: argv-formatter: 1.0.0 @@ -29324,7 +30505,7 @@ packages: traverse: 0.6.7 dev: true - /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 @@ -29336,7 +30517,7 @@ packages: through2: 4.0.2 dev: true - /git-remote-origin-url/2.0.0: + /git-remote-origin-url@2.0.0: resolution: {integrity: sha512-eU+GGrZgccNJcsDH5LkXR3PB9M958hxc7sbA8DFJjrv9j4L2P/eZfKhM+QD6wyzpiv+b1BpK0XrYCxkovtjSLw==} engines: {node: '>=4'} dependencies: @@ -29344,7 +30525,7 @@ packages: pify: 2.3.0 dev: true - /git-semver-tags/4.1.1: + /git-semver-tags@4.1.1: resolution: {integrity: sha512-OWyMt5zBe7xFs8vglMmhM9lRQzCWL3WjHtxNNfJTMngGym7pC1kh8sP6jevfydJ6LP3ZvGxfb6ABYgPUM0mtsA==} engines: {node: '>=10'} hasBin: true @@ -29353,39 +30534,39 @@ packages: semver: 6.3.1 dev: true - /git-up/7.0.0: + /git-up@7.0.0: resolution: {integrity: sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==} dependencies: is-ssh: 1.4.0 parse-url: 8.1.0 dev: true - /git-url-parse/13.1.0: + /git-url-parse@13.1.0: resolution: {integrity: sha512-5FvPJP/70WkIprlUZ33bm4UAaFdjcLkJLpWft1BeZKqwR0uhhNGoKwlUaPtVb4LxCSQ++erHapRak9kWGj+FCA==} dependencies: git-up: 7.0.0 dev: true - /gitconfiglocal/1.0.0: + /gitconfiglocal@1.0.0: resolution: {integrity: sha512-spLUXeTAVHxDtKsJc8FkFVgFtMdEN9qPGpL23VfSHx4fP4+Ds097IXLvymbnDH8FnmxX5Nr9bPw3A+AQ6mWEaQ==} dependencies: ini: 1.3.8 dev: true - /github-slugger/1.5.0: + /github-slugger@1.5.0: resolution: {integrity: sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==} - /gitlog/4.0.4: + /gitlog@4.0.4: resolution: {integrity: sha512-jeY2kO7CVyTa6cUM7ZD2ZxIyBkna1xvW2esV/3o8tbhiUneX1UBQCH4D9aMrHgGiohBjyXbuZogyjKXslnY5Yg==} engines: {node: '>= 10.x'} dependencies: - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) tslib: 1.14.1 transitivePeerDependencies: - supports-color dev: true - /glob-base/0.3.0: + /glob-base@0.3.0: resolution: {integrity: sha512-ab1S1g1EbO7YzauaJLkgLp7DZVAqj9M/dvKlTt8DkXA2tiOIcSMrlVI2J1RZyB5iJVccEscjGn+kpOG9788MHA==} engines: {node: '>=0.10.0'} dependencies: @@ -29393,28 +30574,35 @@ packages: is-glob: 2.0.1 dev: true - /glob-parent/2.0.0: + /glob-parent@2.0.0: resolution: {integrity: sha512-JDYOvfxio/t42HKdxkAYaCiBN7oYiuxykOxKxdaUW5Qn0zaYN3gRQWolrwdnf0shM9/EP0ebuuTmyoXNr1cC5w==} dependencies: is-glob: 2.0.1 dev: true - /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==} - /glob/10.3.4: + /glob2base@0.0.12: + resolution: {integrity: sha512-ZyqlgowMbfj2NPjxaZZ/EtsXlOch28FRXgMd64vqZWk1bT9+wvSRLYD1om9M7QfQru51zJPAT17qXm4/zd+9QA==} + engines: {node: '>= 0.10'} + dependencies: + find-index: 0.1.1 + dev: true + + /glob@10.3.4: resolution: {integrity: sha512-6LFElP3A+i/Q8XQKEvZjkEWEOTgAIALR9AO2rwT8bgPhDd1anmqDJDZ6lLddI4ehxxxR1S5RIqKe1uapMQfYaQ==} engines: {node: '>=16 || 14 >=14.17'} hasBin: true @@ -29425,7 +30613,7 @@ packages: minipass: 5.0.0 path-scurry: 1.10.1 - /glob/7.1.4: + /glob@7.1.4: resolution: {integrity: sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==} dependencies: fs.realpath: 1.0.0 @@ -29435,7 +30623,7 @@ packages: once: 1.4.0 path-is-absolute: 1.0.1 - /glob/7.1.6: + /glob@7.1.6: resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==} dependencies: fs.realpath: 1.0.0 @@ -29445,7 +30633,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 @@ -29456,7 +30644,7 @@ packages: path-is-absolute: 1.0.1 dev: true - /glob/7.2.3: + /glob@7.2.3: resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} dependencies: fs.realpath: 1.0.0 @@ -29466,7 +30654,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: @@ -29477,7 +30665,7 @@ packages: once: 1.4.0 dev: true - /glob/8.1.0: + /glob@8.1.0: resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==} engines: {node: '>=12'} dependencies: @@ -29487,7 +30675,7 @@ packages: minimatch: 5.1.6 once: 1.4.0 - /glob/9.3.5: + /glob@9.3.5: resolution: {integrity: sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==} engines: {node: '>=16 || 14 >=14.17'} dependencies: @@ -29497,27 +30685,20 @@ packages: path-scurry: 1.6.4 dev: true - /glob2base/0.0.12: - resolution: {integrity: sha512-ZyqlgowMbfj2NPjxaZZ/EtsXlOch28FRXgMd64vqZWk1bT9+wvSRLYD1om9M7QfQru51zJPAT17qXm4/zd+9QA==} - engines: {node: '>= 0.10'} - dependencies: - find-index: 0.1.1 - dev: true - - /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 - /global-dirs/3.0.1: + /global-dirs@3.0.1: resolution: {integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==} engines: {node: '>=10'} dependencies: ini: 2.0.0 - /global-modules/1.0.0: + /global-modules@1.0.0: resolution: {integrity: sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==} engines: {node: '>=0.10.0'} dependencies: @@ -29526,13 +30707,13 @@ packages: resolve-dir: 1.0.1 dev: true - /global-modules/2.0.0: + /global-modules@2.0.0: resolution: {integrity: sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==} engines: {node: '>=6'} dependencies: global-prefix: 3.0.0 - /global-prefix/1.0.2: + /global-prefix@1.0.2: resolution: {integrity: sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==} engines: {node: '>=0.10.0'} dependencies: @@ -29543,7 +30724,7 @@ packages: which: 1.3.1 dev: true - /global-prefix/3.0.0: + /global-prefix@3.0.0: resolution: {integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==} engines: {node: '>=6'} dependencies: @@ -29551,34 +30732,33 @@ packages: kind-of: 6.0.3 which: 1.3.1 - /globals/11.12.0: + /globals@11.12.0: resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} engines: {node: '>=4'} - /globals/13.20.0: + /globals@13.20.0: resolution: {integrity: sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==} engines: {node: '>=8'} dependencies: type-fest: 0.20.2 - dev: true - /globals/13.21.0: + /globals@13.21.0: resolution: {integrity: sha512-ybyme3s4yy/t/3s35bewwXKOf7cvzfreG2lH0lZl0JB7I4GxRP2ghxOK/Nb9EkRXdbBXZLfq/p/0W2JUONB/Gg==} 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.2.0 - /globalyzer/0.1.0: + /globalyzer@0.1.0: resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==} dev: true - /globby/11.1.0: + /globby@11.1.0: resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} engines: {node: '>=10'} dependencies: @@ -29589,7 +30769,7 @@ packages: merge2: 1.4.1 slash: 3.0.0 - /globby/12.2.0: + /globby@12.2.0: resolution: {integrity: sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: @@ -29601,7 +30781,7 @@ packages: slash: 4.0.0 dev: true - /globby/13.1.3: + /globby@13.1.3: resolution: {integrity: sha512-8krCNHXvlCgHDpegPzleMq07yMYTO2sXKASmZmquEYWEmCx6J5UTRbp5RwMJkTJGtcQ44YpiUYUiN0b9mzy8Bw==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: @@ -29612,7 +30792,7 @@ packages: slash: 4.0.0 dev: true - /globby/6.1.0: + /globby@6.1.0: resolution: {integrity: sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==} engines: {node: '>=0.10.0'} dependencies: @@ -29623,7 +30803,7 @@ packages: pinkie-promise: 2.0.1 dev: true - /globby/7.1.1: + /globby@7.1.1: resolution: {integrity: sha512-yANWAN2DUcBtuus5Cpd+SKROzXHs2iVXFZt/Ykrfz6SAXqacLX25NZpltE+39ceMexYF4TtEadjuSTw8+3wX4g==} engines: {node: '>=4'} dependencies: @@ -29635,11 +30815,11 @@ packages: slash: 1.0.0 dev: true - /globrex/0.1.2: + /globrex@0.1.2: resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==} dev: true - /google-auth-library/6.1.6: + /google-auth-library@6.1.6: resolution: {integrity: sha512-Q+ZjUEvLQj/lrVHF/IQwRo6p3s8Nc44Zk/DALsN+ac3T4HY/g/3rrufkgtl+nZ1TW7DNAw5cTChdVp4apUXVgQ==} engines: {node: '>=10'} dependencies: @@ -29657,7 +30837,7 @@ packages: - supports-color dev: false - /google-auth-library/8.7.0: + /google-auth-library@8.7.0: resolution: {integrity: sha512-1M0NG5VDIvJZEnstHbRdckLZESoJwguinwN8Dhae0j2ZKIQFIV63zxm6Fo6nM4xkgqUr2bbMtV5Dgo+Hy6oo0Q==} engines: {node: '>=12'} dependencies: @@ -29675,9 +30855,10 @@ packages: - supports-color dev: false - /google-auth-library/8.9.0: + /google-auth-library@8.9.0: resolution: {integrity: sha512-f7aQCJODJFmYWN6PeNKzgvy9LI2tYmXnzpNDHEjG5sDNPgGb2FXQyTBnXeSH+PAtpKESFD+LmHw3Ox3mN7e1Fg==} engines: {node: '>=12'} + requiresBuild: true dependencies: arrify: 2.0.1 base64-js: 1.5.1 @@ -29694,10 +30875,11 @@ packages: dev: false optional: true - /google-gax/3.6.1: + /google-gax@3.6.1: resolution: {integrity: sha512-g/lcUjGcB6DSw2HxgEmCDOrI/CByOwqRvsuUvNalHUK2iPPPlmAIpbMbl62u0YufGMr8zgE3JL7th6dCb1Ry+w==} engines: {node: '>=12'} hasBin: true + requiresBuild: true dependencies: '@grpc/grpc-js': 1.8.21 '@grpc/proto-loader': 0.7.9 @@ -29712,7 +30894,7 @@ packages: object-hash: 3.0.0 proto3-json-serializer: 1.1.1 protobufjs: 7.2.4 - protobufjs-cli: 1.1.1_protobufjs@7.2.4 + protobufjs-cli: 1.1.1(protobufjs@7.2.4) retry-request: 5.0.2 transitivePeerDependencies: - encoding @@ -29720,7 +30902,7 @@ packages: dev: false optional: true - /google-p12-pem/3.1.4: + /google-p12-pem@3.1.4: resolution: {integrity: sha512-HHuHmkLgwjdmVRngf5+gSmpkyaRI6QmOg77J8tkNBHhNEI62sGHyw4/+UkgyZEI7h84NbWprXDJ+sa3xOYFvTg==} engines: {node: '>=10'} hasBin: true @@ -29728,7 +30910,7 @@ packages: node-forge: 1.3.1 dev: false - /google-p12-pem/4.0.1: + /google-p12-pem@4.0.1: resolution: {integrity: sha512-WPkN4yGtz05WZ5EhtlxNDWPhC4JIic6G8ePitwUWy4l+XPVYec+a0j0Ts47PDtW59y3RwAhUd9/h9ZZ63px6RQ==} engines: {node: '>=12.0.0'} hasBin: true @@ -29736,7 +30918,7 @@ packages: node-forge: 1.3.1 dev: false - /googleapis-common/4.4.3: + /googleapis-common@4.4.3: resolution: {integrity: sha512-W46WKCk3QtlCCfmZyQIH5zxmDOyeV5Qj+qs7nr2ox08eRkEJMWp6iwv542R/PsokXaGUSrmif4vCC4+rGzRSsQ==} engines: {node: '>=10.10.0'} dependencies: @@ -29751,7 +30933,7 @@ packages: - supports-color dev: false - /googleapis/60.0.1: + /googleapis@60.0.1: resolution: {integrity: sha512-r/7pDeIMAm/FepbAl2iM+uRQURf2manjOaOVR0j7v2fDPU8QEme44z6N6qGroqJtne0JO5BM0FUz4LuskcwGeQ==} engines: {node: '>=10'} dependencies: @@ -29762,19 +30944,19 @@ packages: - supports-color dev: false - /gopd/1.0.1: + /gopd@1.0.1: resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} dependencies: get-intrinsic: 1.2.1 - /graceful-fs/4.2.10: + /graceful-fs@4.2.10: resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==} dev: true - /graceful-fs/4.2.11: + /graceful-fs@4.2.11: resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} - /gradient-string/1.2.0: + /gradient-string@1.2.0: resolution: {integrity: sha512-Lxog7IDMMWNjwo4O0KbdBvSewk4vW6kQe5XaLuuPCyCE65AGQ1P8YqKJa5dq8TYf/Ge31F+KjWzPR5mAJvjlAg==} engines: {node: '>=4'} dependencies: @@ -29782,20 +30964,20 @@ packages: tinygradient: 0.4.3 dev: true - /gradient-string/2.0.2: + /gradient-string@2.0.2: resolution: {integrity: sha512-rEDCuqUQ4tbD78TpzsMtt5OIf0cBCSDWSJtUDaF6JsAh+k0v9r++NzxNEG87oDZx9ZwGhD8DaezR2L/yrw0Jdw==} engines: {node: '>=10'} dependencies: chalk: 4.1.2 tinygradient: 1.1.5 - /grapheme-splitter/1.0.4: + /grapheme-splitter@1.0.4: resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} - /graphemer/1.4.0: + /graphemer@1.4.0: resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} - /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: @@ -29805,7 +30987,7 @@ packages: tslib: 2.6.2 dev: true - /graphql-tag/2.12.6_graphql@16.8.0: + /graphql-tag@2.12.6(graphql@16.8.0): resolution: {integrity: sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==} engines: {node: '>=10'} peerDependencies: @@ -29816,9 +30998,10 @@ packages: dev: false optional: true - /graphql-ws/5.14.0_graphql@16.8.0: + /graphql-ws@5.14.0(graphql@16.8.0): resolution: {integrity: sha512-itrUTQZP/TgswR4GSSYuwWUzrE/w5GhbwM2GX3ic2U7aw33jgEsayfIlvaj7/GcIvZgNMzsPTrE5hqPuFUiE5g==} engines: {node: '>=10'} + requiresBuild: true peerDependencies: graphql: '>=0.11 <=16' dependencies: @@ -29826,23 +31009,23 @@ packages: dev: false optional: true - /graphql/15.8.0: + /graphql@15.8.0: resolution: {integrity: sha512-5gghUc24tP9HRznNpV2+FIoq3xKkj5dTQqf4v0CpdPbFVwFkWoxOM+o+2OC9ZSvjEMTjfmG9QT+gcvggTwW1zw==} engines: {node: '>= 10.x'} dev: true - /graphql/16.8.0: + /graphql@16.8.0: resolution: {integrity: sha512-0oKGaR+y3qcS5mCu1vb7KG+a89vjn06C7Ihq/dDl3jA+A8B3TKomvi3CiEcVLJQGalbu8F52LxkOym7U5sSfbg==} engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0} dev: false optional: true - /growl/1.10.5: + /growl@1.10.5: resolution: {integrity: sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==} engines: {node: '>=4.x'} dev: true - /gtoken/5.3.2: + /gtoken@5.3.2: resolution: {integrity: sha512-gkvEKREW7dXWF8NV8pVrKfW7WqReAmjjkMBh6lNCCGOM4ucS0r0YyXXl0r/9Yj8wcW/32ISkfc8h5mPTDbtifQ==} engines: {node: '>=10'} dependencies: @@ -29854,7 +31037,7 @@ packages: - supports-color dev: false - /gtoken/6.1.2: + /gtoken@6.1.2: resolution: {integrity: sha512-4ccGpzz7YAr7lxrT2neugmXQ3hP9ho2gcaityLVkiUecAiwiy60Ii8gRbZeOsXV19fYaRjgBSshs8kXw+NKCPQ==} engines: {node: '>=12.0.0'} dependencies: @@ -29866,7 +31049,7 @@ packages: - supports-color dev: false - /gunzip-maybe/1.4.2: + /gunzip-maybe@1.4.2: resolution: {integrity: sha512-4haO1M4mLO91PW57BMsDFf75UmwoRX0GkdD+Faw+Lr+r/OZrOCS0pIBwOL1xCKQqnQzbNFGgK2V2CpBUPeFNTw==} hasBin: true dependencies: @@ -29878,16 +31061,16 @@ packages: through2: 2.0.5 dev: true - /gzip-size/6.0.0: + /gzip-size@6.0.0: resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==} engines: {node: '>=10'} dependencies: duplexer: 0.1.2 - /handle-thing/2.0.1: + /handle-thing@2.0.1: resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==} - /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 @@ -29899,11 +31082,11 @@ packages: optionalDependencies: uglify-js: 3.17.4 - /har-schema/2.0.0: + /har-schema@2.0.0: resolution: {integrity: sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==} engines: {node: '>=4'} - /har-validator/5.1.5: + /har-validator@5.1.5: resolution: {integrity: sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==} engines: {node: '>=6'} deprecated: this library is no longer supported @@ -29911,60 +31094,60 @@ packages: ajv: 6.12.6 har-schema: 2.0.0 - /hard-rejection/2.1.0: + /hard-rejection@2.1.0: resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==} engines: {node: '>=6'} dev: true - /harmony-reflect/1.6.2: + /harmony-reflect@1.6.2: resolution: {integrity: sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==} - /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: true - /has-bigints/1.0.2: + /has-bigints@1.0.2: resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} - /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-own-prop/2.0.0: + /has-own-prop@2.0.0: resolution: {integrity: sha512-Pq0h+hvsVm6dDEa8x82GnLSYHOzNDt7f0ddFa3FqcQlgzEiptPqL+XrOJNavjOzSYiYWIrgeVYYgGlLmnxwilQ==} engines: {node: '>=8'} dev: true - /has-property-descriptors/1.0.0: + /has-property-descriptors@1.0.0: resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} dependencies: get-intrinsic: 1.2.1 - /has-proto/1.0.1: + /has-proto@1.0.1: resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} engines: {node: '>= 0.4'} - /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-value/0.3.1: + /has-value@0.3.1: resolution: {integrity: sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==} engines: {node: '>=0.10.0'} dependencies: @@ -29973,7 +31156,7 @@ packages: isobject: 2.1.0 dev: true - /has-value/1.0.0: + /has-value@1.0.0: resolution: {integrity: sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==} engines: {node: '>=0.10.0'} dependencies: @@ -29982,12 +31165,12 @@ packages: isobject: 3.0.1 dev: true - /has-values/0.1.4: + /has-values@0.1.4: resolution: {integrity: sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==} engines: {node: '>=0.10.0'} dev: true - /has-values/1.0.0: + /has-values@1.0.0: resolution: {integrity: sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==} engines: {node: '>=0.10.0'} dependencies: @@ -29995,13 +31178,13 @@ packages: kind-of: 4.0.0 dev: true - /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 - /hasha/5.2.2: + /hasha@5.2.2: resolution: {integrity: sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==} engines: {node: '>=8'} dependencies: @@ -30009,11 +31192,11 @@ packages: type-fest: 0.8.1 dev: true - /hast-util-parse-selector/2.2.5: + /hast-util-parse-selector@2.2.5: resolution: {integrity: sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==} dev: false - /hastscript/6.0.0: + /hastscript@6.0.0: resolution: {integrity: sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==} dependencies: '@types/hast': 2.3.4 @@ -30023,11 +31206,11 @@ packages: space-separated-tokens: 1.1.5 dev: false - /hat/0.0.3: + /hat@0.0.3: resolution: {integrity: sha512-zpImx2GoKXy42fVDSEad2BPKuSQdLcqsCYa48K3zHSzM/ugWuYjLDr8IXxpVuL7uCLHw56eaiLxCRthhOzf5ug==} dev: false - /hdr-histogram-js/2.0.3: + /hdr-histogram-js@2.0.3: resolution: {integrity: sha512-Hkn78wwzWHNCp2uarhzQ2SGFLU3JY8SBDDd3TAABK4fc30wm+MuPOrg5QVFVfkKOQd6Bfz3ukJEI+q9sXEkK1g==} dependencies: '@assemblyscript/loader': 0.10.1 @@ -30035,102 +31218,102 @@ packages: pako: 1.0.11 dev: true - /hdr-histogram-percentiles-obj/3.0.0: + /hdr-histogram-percentiles-obj@3.0.0: resolution: {integrity: sha512-7kIufnBqdsBGcSZLPJwqHT3yhk1QTsSlFsVD3kx5ixH/AlgBs9yM1q6DPhXZ8f8gtdqgh7N7/5btRLpQsS2gHw==} dev: true - /he/1.2.0: + /he@1.2.0: resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} hasBin: true - /header-case/1.0.1: + /header-case@1.0.1: resolution: {integrity: sha512-i0q9mkOeSuhXw6bGgiQCCBgY/jlZuV/7dZXyZ9c6LcBrqwvT8eT719E9uxE5LiZftdl+z81Ugbg/VvXV4OJOeQ==} dependencies: no-case: 2.3.2 upper-case: 1.1.3 dev: true - /helmet/6.1.4: + /helmet@6.1.4: resolution: {integrity: sha512-nCJIriKjOYcRmHRpK+Z5DayEh6xwOKO0U0qzWL3MEIwsB8OSxxBu/mUE9U5PRH8ln/+WySlK2eYe5FOlo0v9aA==} engines: {node: '>=14.0.0'} dev: false - /help-me/4.2.0: + /help-me@4.2.0: resolution: {integrity: sha512-TAOnTB8Tz5Dw8penUuzHVrKNKlCIbwwbHnXraNJxPwf8LRtE2HlM84RYuezMFcwOJmoYOCWVDyJ8TQGxn9PgxA==} dependencies: glob: 8.1.0 readable-stream: 3.6.2 dev: false - /hexoid/1.0.0: + /hexoid@1.0.0: resolution: {integrity: sha512-QFLV0taWQOZtvIRIAdBChesmogZrtuXvVWsFHZTk2SU+anspqZ2vMnoLg7IE1+Uk16N19APic1BuF8bC8c2m5g==} engines: {node: '>=8'} - /highlight.js/10.7.3: + /highlight.js@10.7.3: resolution: {integrity: sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==} dev: false - /history/5.3.0: + /history@5.3.0: resolution: {integrity: sha512-ZqaKwjjrAYUYfLG+htGaIIZ4nioX2L70ZUMIFysS3xvBsSG4x/n1V6TXV3N8ZYNuFGlDirFg32T7B6WOUPDYcQ==} dependencies: '@babel/runtime': 7.21.0 dev: false - /hoist-non-react-statics/3.3.2: + /hoist-non-react-statics@3.3.2: resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==} dependencies: react-is: 16.13.1 dev: false - /homedir-polyfill/1.0.3: + /homedir-polyfill@1.0.3: resolution: {integrity: sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==} engines: {node: '>=0.10.0'} dependencies: parse-passwd: 1.0.0 dev: true - /hook-std/2.0.0: + /hook-std@2.0.0: resolution: {integrity: sha512-zZ6T5WcuBMIUVh49iPQS9t977t7C0l7OtHrpeMb5uk48JdflRX0NSFvCekfYNmGQETnLq9W/isMyHl69kxGi8g==} engines: {node: '>=8'} dev: true - /hoopy/0.1.4: + /hoopy@0.1.4: resolution: {integrity: sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==} engines: {node: '>= 6.0.0'} - /hosted-git-info/2.8.9: + /hosted-git-info@2.8.9: resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} dev: true - /hosted-git-info/3.0.8: + /hosted-git-info@3.0.8: resolution: {integrity: sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==} engines: {node: '>=10'} dependencies: lru-cache: 6.0.0 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 - /hosted-git-info/5.2.1: + /hosted-git-info@5.2.1: resolution: {integrity: sha512-xIcQYMnhcx2Nr4JTjsFmwwnr9vldugPy9uVm0o87bjqqWMv9GaqsTeT+i99wTl0mk1uLxJtHxLb8kymqTENQsw==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: lru-cache: 7.18.3 dev: true - /hosted-git-info/6.1.1: + /hosted-git-info@6.1.1: resolution: {integrity: sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: lru-cache: 7.18.3 dev: true - /hpack.js/2.1.6: + /hpack.js@2.1.6: resolution: {integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==} dependencies: inherits: 2.0.4 @@ -30138,7 +31321,7 @@ packages: readable-stream: 2.3.8 wbuf: 1.7.3 - /href-content/2.0.2: + /href-content@2.0.2: resolution: {integrity: sha512-f/e40VYI+KciPGfFzfdw1wu8dptpUA9rYQJNbpYVRI217lyuo7nBNO7BjYfTiQMhU/AthfvPDMvj46uAgzUccQ==} dependencies: remote-content: 3.0.1 @@ -30146,30 +31329,30 @@ 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 - /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-entities/2.3.3: + /html-entities@2.3.3: resolution: {integrity: sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==} - /html-escaper/2.0.2: + /html-escaper@2.0.2: resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} - /html-janitor/2.0.4: + /html-janitor@2.0.4: resolution: {integrity: sha512-92J5h9jNZRk30PMHapjHEJfkrBWKCOy0bq3oW2pBungky6lzYSoboBGPMvxl1XRKB2q+kniQmsLsPbdpY7RM2g==} dev: false - /html-minifier-terser/5.1.1: + /html-minifier-terser@5.1.1: resolution: {integrity: sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==} engines: {node: '>=6'} hasBin: true @@ -30183,7 +31366,7 @@ packages: terser: 4.8.1 dev: false - /html-minifier-terser/6.1.0: + /html-minifier-terser@6.1.0: resolution: {integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==} engines: {node: '>=12'} hasBin: true @@ -30196,12 +31379,12 @@ packages: relateurl: 0.2.7 terser: 5.19.3 - /html-tags/3.3.1: + /html-tags@3.3.1: resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==} engines: {node: '>=8'} dev: true - /html-to-text/9.0.3: + /html-to-text@9.0.3: resolution: {integrity: sha512-hxDF1kVCF2uw4VUJ3vr2doc91pXf2D5ngKcNviSitNkhP9OMOaJkDrFIFL6RMvko7NisWTEiqGpQ9LAxcVok1w==} engines: {node: '>=14'} dependencies: @@ -30212,7 +31395,7 @@ packages: selderee: 0.10.0 dev: false - /html-to-text/9.0.5: + /html-to-text@9.0.5: resolution: {integrity: sha512-qY60FjREgVZL03vJU6IfMV4GDjGBIoOyvuFdpBDIX9yTlDw0TjxVBQp+P8NvpdIXNJvfWBTNul7fsAQJq2FNpg==} engines: {node: '>=14'} dependencies: @@ -30223,7 +31406,7 @@ packages: selderee: 0.11.0 dev: false - /html-webpack-plugin/4.5.2_webpack@5.78.0: + /html-webpack-plugin@4.5.2(webpack@5.78.0): resolution: {integrity: sha512-q5oYdzjKUIPQVjOosjgvCHQOv9Ett9CYYHlgvJeXG0qQvdSojnBq4vAdQBwn1+yGveAwHCoe/rMR86ozX3+c2A==} engines: {node: '>=6.9'} peerDependencies: @@ -30238,10 +31421,10 @@ packages: pretty-error: 2.1.2 tapable: 1.1.3 util.promisify: 1.0.0 - webpack: 5.78.0_u5c4qderjagc6tepfyiby6xhau + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) dev: false - /html-webpack-plugin/5.5.3_webpack@5.78.0: + /html-webpack-plugin@5.5.3(webpack@5.78.0): resolution: {integrity: sha512-6YrDKTuqaP/TquFH7h4srYWsZx+x6k6+FbsTm0ziCwGHDP78Unr1r9F/H4+sGmMbX08GQcJ+K64x55b+7VM/jg==} engines: {node: '>=10.13.0'} peerDependencies: @@ -30252,13 +31435,13 @@ packages: lodash: 4.17.21 pretty-error: 4.0.0 tapable: 2.2.1 - webpack: 5.78.0_u5c4qderjagc6tepfyiby6xhau + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) - /htmlencode/0.0.4: + /htmlencode@0.0.4: resolution: {integrity: sha512-0uDvNVpzj/E2TfvLLyyXhKBRvF1y84aZsyRxRXFsQobnHaL4pcaXk+Y9cnFlvnxrBLeXDNq/VJBD+ngdBgQG1w==} dev: false - /htmlparser2/6.1.0: + /htmlparser2@6.1.0: resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==} dependencies: domelementtype: 2.3.0 @@ -30266,7 +31449,7 @@ packages: domutils: 2.8.0 entities: 2.2.0 - /htmlparser2/8.0.2: + /htmlparser2@8.0.2: resolution: {integrity: sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==} dependencies: domelementtype: 2.3.0 @@ -30275,14 +31458,14 @@ packages: entities: 4.4.0 dev: false - /http-cache-semantics/4.1.1: + /http-cache-semantics@4.1.1: resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==} dev: true - /http-deceiver/1.2.7: + /http-deceiver@1.2.7: resolution: {integrity: sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==} - /http-errors/1.6.3: + /http-errors@1.6.3: resolution: {integrity: sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==} engines: {node: '>= 0.6'} dependencies: @@ -30291,7 +31474,7 @@ packages: setprototypeof: 1.1.0 statuses: 1.5.0 - /http-errors/2.0.0: + /http-errors@2.0.0: resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} engines: {node: '>= 0.8'} dependencies: @@ -30301,40 +31484,40 @@ 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==} - /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@8.1.1) 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@8.1.1) transitivePeerDependencies: - supports-color - /http-proxy-agent/7.0.0: + /http-proxy-agent@7.0.0: resolution: {integrity: sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==} engines: {node: '>= 14'} dependencies: agent-base: 7.1.0 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) transitivePeerDependencies: - supports-color dev: false - /http-proxy-middleware/2.0.6_@types+express@4.17.17: + /http-proxy-middleware@2.0.6(@types/express@4.17.17): resolution: {integrity: sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==} engines: {node: '>=12.0.0'} peerDependencies: @@ -30352,7 +31535,7 @@ packages: transitivePeerDependencies: - debug - /http-proxy/1.18.1: + /http-proxy@1.18.1: resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==} engines: {node: '>=8.0.0'} dependencies: @@ -30362,7 +31545,7 @@ packages: transitivePeerDependencies: - debug - /http-server/0.13.0: + /http-server@0.13.0: resolution: {integrity: sha512-/MjH9k/y470zbtXzKLkP8vioIVvxRArTkz8f9UX1ztkLZzr6S0hg6BW8h6MBn/HUfwjlTQvIe9DRknorN2u20Q==} engines: {node: '>=6'} hasBin: true @@ -30384,7 +31567,7 @@ packages: - supports-color dev: true - /http-signature/1.2.0: + /http-signature@1.2.0: resolution: {integrity: sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==} engines: {node: '>=0.8', npm: '>=1.3.7'} dependencies: @@ -30392,7 +31575,7 @@ packages: jsprim: 1.4.2 sshpk: 1.17.0 - /http-signature/1.3.6: + /http-signature@1.3.6: resolution: {integrity: sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==} engines: {node: '>=0.10'} dependencies: @@ -30400,70 +31583,70 @@ packages: jsprim: 2.0.2 sshpk: 1.17.0 - /https-proxy-agent/4.0.0: + /https-proxy-agent@4.0.0: resolution: {integrity: sha512-zoDhWrkR3of1l9QAL8/scJZyLu8j/gBkcwcaQOZh7Gyh/+uJQzGVETdgT30akuwkpL8HTRfssqI3BZuV18teDg==} engines: {node: '>= 6.0.0'} dependencies: agent-base: 5.1.1 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) transitivePeerDependencies: - supports-color dev: true - /https-proxy-agent/5.0.0: + /https-proxy-agent@5.0.0: resolution: {integrity: sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==} engines: {node: '>= 6'} dependencies: agent-base: 6.0.2 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) transitivePeerDependencies: - supports-color dev: false - /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@8.1.1) transitivePeerDependencies: - supports-color - /https-proxy-agent/7.0.1: + /https-proxy-agent@7.0.1: resolution: {integrity: sha512-Eun8zV0kcYS1g19r78osiQLEFIRspRUDd9tIfBCTBPBeMieF/EsJNL8VI3xOIdYRDEkjQnqOYPsZ2DsWsVsFwQ==} engines: {node: '>= 14'} dependencies: agent-base: 7.1.0 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) transitivePeerDependencies: - 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'} - /human-signals/2.1.0: + /human-signals@2.1.0: resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} engines: {node: '>=10.17.0'} - /human-signals/3.0.1: + /human-signals@3.0.1: resolution: {integrity: sha512-rQLskxnM/5OCldHo+wNXbpVgDn5A17CUoKX+7Sokwaknlq7CdSnphy0W39GU8dw59XiCXmFXDg4fRuckQRKewQ==} engines: {node: '>=12.20.0'} dev: true - /humanize-ms/1.2.1: + /humanize-ms@1.2.1: resolution: {integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==} dependencies: ms: 2.1.3 dev: true - /hunspell-spellchecker/1.0.2: + /hunspell-spellchecker@1.0.2: resolution: {integrity: sha512-4DwmFAvlz+ChsqLDsZT2cwBsYNXh+oWboemxXtafwKIyItq52xfR4e4kr017sLAoPaSYVofSOvPUfmOAhXyYvw==} hasBin: true dev: true - /husky/1.3.1: + /husky@1.3.1: resolution: {integrity: sha512-86U6sVVVf4b5NYSZ0yvv88dRgBSSXXmHaiq5pP4KDj5JVzdwKgBjEtUPOm8hcoytezFwbU+7gotXNhpHdystlg==} engines: {node: '>=6'} hasBin: true @@ -30481,20 +31664,20 @@ packages: slash: 2.0.0 dev: true - /husky/8.0.3: + /husky@8.0.3: resolution: {integrity: sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==} engines: {node: '>=14'} hasBin: true dev: true - /hygen/6.2.11: + /hygen@6.2.11: resolution: {integrity: sha512-t6/zLI2XozP5gvV74nnl8LZSbwpVNFUkUs/O9DwuOdiiBbws5k4AQNVwKZ9FGzcKjdJ5EBBYkVzlcUHkLyY0FQ==} hasBin: true dependencies: '@types/node': 17.0.45 chalk: 4.1.2 change-case: 3.1.0 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) degit: 2.8.4 ejs: 3.1.9 enquirer: 2.3.6 @@ -30509,19 +31692,19 @@ packages: - supports-color dev: true - /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 - /icss-utils/5.1.0_postcss@8.4.29: + /icss-utils@5.1.0(postcss@8.4.29): resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: @@ -30529,97 +31712,97 @@ packages: dependencies: postcss: 8.4.29 - /idb/7.1.1: + /idb@7.1.1: resolution: {integrity: sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ==} - /identity-obj-proxy/3.0.0: + /identity-obj-proxy@3.0.0: resolution: {integrity: sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==} engines: {node: '>=4'} dependencies: harmony-reflect: 1.6.2 - /ieee754/1.1.13: + /ieee754@1.1.13: resolution: {integrity: sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg==} dev: false - /ieee754/1.2.1: + /ieee754@1.2.1: resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} - /iframe-resizer/4.3.6: + /iframe-resizer@4.3.6: resolution: {integrity: sha512-wz0WodRIF6eP0oGQa5NIP1yrITAZ59ZJvVaVJqJRjaeCtfm461vy2C3us6CKx0e7pooqpIGLpVMSTzrfAjX9Sg==} engines: {node: '>=0.8.0'} dev: false - /ignore-by-default/1.0.1: + /ignore-by-default@1.0.1: resolution: {integrity: sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==} dev: true - /ignore-walk/3.0.4: + /ignore-walk@3.0.4: resolution: {integrity: sha512-PY6Ii8o1jMRA1z4F2hRkH/xN59ox43DavKvD3oDpfurRlOJyAHpifIwpbdv1n4jt4ov0jSpw3kQ4GhJnpBL6WQ==} dependencies: minimatch: 3.1.2 dev: true - /ignore-walk/4.0.1: + /ignore-walk@4.0.1: resolution: {integrity: sha512-rzDQLaW4jQbh2YrOFlJdCtX8qgJTehFRYiUB2r1osqTeDzV/3+Jh8fz1oAPzUThf3iku8Ds4IDqawI5d8mUiQw==} engines: {node: '>=10'} dependencies: minimatch: 3.1.2 dev: true - /ignore-walk/5.0.1: + /ignore-walk@5.0.1: resolution: {integrity: sha512-yemi4pMf51WKT7khInJqAvsIGzoqYXblnsz0ql8tM+yi1EKYTY1evX4NAbJrLL/Aanr2HyZeluqU+Oi7MGHokw==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: minimatch: 5.1.6 dev: true - /ignore-walk/6.0.2: + /ignore-walk@6.0.2: resolution: {integrity: sha512-ezmQ1Dg2b3jVZh2Dh+ar6Eu2MqNSTkyb32HU2MAQQQX9tKM3q/UQ/9lf03lQ5hW+fOeoMnwxwkleZ0xcNp0/qg==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: minimatch: 7.4.6 dev: true - /ignore/3.3.10: + /ignore@3.3.10: resolution: {integrity: sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==} dev: true - /ignore/4.0.6: + /ignore@4.0.6: resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==} engines: {node: '>= 4'} dev: true - /ignore/5.2.4: + /ignore@5.2.4: resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==} engines: {node: '>= 4'} - /image-size/0.5.5: + /image-size@0.5.5: resolution: {integrity: sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==} engines: {node: '>=0.10.0'} hasBin: true requiresBuild: true optional: true - /immediate/3.0.6: + /immediate@3.0.6: resolution: {integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==} dev: false - /immer/9.0.21: + /immer@9.0.21: resolution: {integrity: sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==} - /immutable/4.3.0: + /immutable@4.3.0: resolution: {integrity: sha512-0AOCmOip+xgJwEVTQj1EfiDDOkPmuyllDuTuEX+DDXUgapLAsBIfkg3sxCYyCEA8mQqZrrxPUGjcOQ2JS3WLkg==} dev: true - /import-cwd/3.0.0: + /import-cwd@3.0.0: resolution: {integrity: sha512-4pnzH16plW+hgvRECbDWpQl3cqtvSofHWh44met7ESfZ8UZOWWddm8hEyDTqREJ9RbYHY8gi8DqmaelApoOGMg==} engines: {node: '>=8'} dependencies: import-from: 3.0.0 dev: true - /import-fresh/2.0.0: + /import-fresh@2.0.0: resolution: {integrity: sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==} engines: {node: '>=4'} dependencies: @@ -30627,26 +31810,26 @@ packages: resolve-from: 3.0.0 dev: true - /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/3.0.0: + /import-from@3.0.0: resolution: {integrity: sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ==} engines: {node: '>=8'} dependencies: resolve-from: 5.0.0 dev: true - /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-local/3.1.0: + /import-local@3.1.0: resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==} engines: {node: '>=8'} hasBin: true @@ -30654,65 +31837,65 @@ packages: pkg-dir: 4.2.0 resolve-cwd: 3.0.0 - /imurmurhash/0.1.4: + /imurmurhash@0.1.4: resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} engines: {node: '>=0.8.19'} - /indent-string/3.2.0: + /indent-string@3.2.0: resolution: {integrity: sha512-BYqTHXTGUIvg7t1r4sJNKcbDZkL92nkXA8YtRpbjFHRHGDL/NtUeiBJMeE60kIFN/Mg8ESaWQvftaYMGJzQZCQ==} engines: {node: '>=4'} dev: true - /indent-string/4.0.0: + /indent-string@4.0.0: resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} engines: {node: '>=8'} - /indent-string/5.0.0: + /indent-string@5.0.0: resolution: {integrity: sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==} engines: {node: '>=12'} dev: true - /indexof/0.0.1: + /indexof@0.0.1: resolution: {integrity: sha512-i0G7hLJ1z0DE8dsqJa2rycj9dBmNKgXBvotXtZYXakU9oivfB9Uj2ZBC27qqef2U58/ZLwalxa1X/RDCdkHtVg==} - /individual/3.0.0: + /individual@3.0.0: resolution: {integrity: sha512-rUY5vtT748NMRbEMrTNiFfy29BgGZwGXUi2NFUVMWQrogSLzlJvQV9eeMWi+g1aVaQ53tpyLAQtd5x/JH0Nh1g==} dev: true - /infer-owner/1.0.4: + /infer-owner@1.0.4: resolution: {integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==} dev: true - /inflection/1.13.4: + /inflection@1.13.4: resolution: {integrity: sha512-6I/HUDeYFfuNCVS3td055BaXBwKYuzw7K3ExVMStBowKo9oOAMJIXIHvdyR3iboTCp1b+1i5DSkIZTcwIktuDw==} engines: {'0': node >= 0.4.0} dev: true - /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: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==} - /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==} - /ini/2.0.0: + /ini@2.0.0: resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==} engines: {node: '>=10'} - /ini/3.0.1: + /ini@3.0.1: resolution: {integrity: sha512-it4HyVAUTKBc6m8e1iXWvXSTdndF7HbdN713+kvLrymxTaU4AUBWrJ4vEooP+V7fexnVD3LKcBshjGGPefSMUQ==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dev: true - /init-package-json/3.0.2: + /init-package-json@3.0.2: resolution: {integrity: sha512-YhlQPEjNFqlGdzrBfDNRLhvoSgX7iQRgSxgsNknRQ9ITXFT7UMfVMWhBTOh2Y+25lRnGrv5Xz8yZwQ3ACR6T3A==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: @@ -30725,13 +31908,13 @@ packages: validate-npm-package-name: 4.0.0 dev: true - /injection-js/2.4.0: + /injection-js@2.4.0: resolution: {integrity: sha512-6jiJt0tCAo9zjHbcwLiPL+IuNe9SQ6a9g0PEzafThW3fOQi0mrmiJGBJvDD6tmhPh8cQHIQtCOrJuBfQME4kPA==} dependencies: tslib: 2.6.2 dev: true - /inline-css/4.0.2: + /inline-css@4.0.2: resolution: {integrity: sha512-o8iZBpVRCs+v8RyEWKxB+4JRi6A4Wop6f3zzqEi0xVx2eIevbgcjXIKYDmQR2ZZ+DD5IVZ6JII0dt2GhJh8etw==} engines: {node: '>=8'} dependencies: @@ -30746,7 +31929,7 @@ packages: - supports-color dev: false - /inquirer/8.2.4: + /inquirer@8.2.4: resolution: {integrity: sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg==} engines: {node: '>=12.0.0'} dependencies: @@ -30767,7 +31950,7 @@ packages: wrap-ansi: 7.0.0 dev: true - /inquirer/8.2.5: + /inquirer@8.2.5: resolution: {integrity: sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==} engines: {node: '>=12.0.0'} dependencies: @@ -30787,7 +31970,7 @@ packages: through: 2.3.8 wrap-ansi: 7.0.0 - /inquirer/8.2.6: + /inquirer@8.2.6: resolution: {integrity: sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==} engines: {node: '>=12.0.0'} dependencies: @@ -30808,7 +31991,7 @@ packages: wrap-ansi: 6.2.0 dev: true - /intercom-client/2.11.2: + /intercom-client@2.11.2: resolution: {integrity: sha512-liIAVaXMZeaLLibWGKYGVIKV4yY5ra5Q3AA1YOnL3hI+mWIpBSx8DIXSKVM5iWMPQhr2H7Ss9jWppnBv+ujaew==} engines: {node: '>= v0.10.0'} dependencies: @@ -30818,7 +32001,7 @@ packages: request: 2.88.2 dev: false - /internal-slot/1.0.5: + /internal-slot@1.0.5: resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==} engines: {node: '>= 0.4'} dependencies: @@ -30826,16 +32009,15 @@ 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'} - /interpret/3.1.1: + /interpret@3.1.1: resolution: {integrity: sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ==} engines: {node: '>=10.13.0'} - dev: true - /into-stream/6.0.0: + /into-stream@6.0.0: resolution: {integrity: sha512-XHbaOAvP+uFKUFsOgoNPRjLkwB+I22JFPFe5OjTkQ0nwgj6+pSjb4NmB6VMxaPshLiOf+zcpOCBQuLwC1KHhZA==} engines: {node: '>=10'} dependencies: @@ -30843,12 +32025,12 @@ packages: p-is-promise: 3.0.0 dev: true - /invariant/2.2.4: + /invariant@2.2.4: resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==} dependencies: loose-envify: 1.4.0 - /io-ts/2.2.20_fp-ts@2.13.1: + /io-ts@2.2.20(fp-ts@2.13.1): resolution: {integrity: sha512-Rq2BsYmtwS5vVttie4rqrOCIfHCS9TgpRLFpKQCM1wZBBRY9nWVGmEvm2FnDbSE2un1UE39DvFpTR5UL47YDcA==} peerDependencies: fp-ts: ^2.5.0 @@ -30856,13 +32038,13 @@ packages: fp-ts: 2.13.1 dev: true - /ioredis/5.3.1: + /ioredis@5.3.1: resolution: {integrity: sha512-C+IBcMysM6v52pTLItYMeV4Hz7uriGtoJdz7SSBDX6u+zwSYGirLdQh3L7t/OItWITcw3gTFMjJReYUwS4zihg==} 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@8.1.1) denque: 2.1.0 lodash.defaults: 4.2.0 lodash.isarguments: 3.1.0 @@ -30873,13 +32055,13 @@ packages: - supports-color dev: false - /ioredis/5.3.2: + /ioredis@5.3.2: resolution: {integrity: sha512-1DKMMzlIHM02eBBVOFQ1+AolGjs6+xEcM4PDL7NqOS6szq7H9jSaEkIUH6/a5Hl241LzW6JLSiAbNvTQjUupUA==} 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@8.1.1) denque: 2.1.0 lodash.defaults: 4.2.0 lodash.isarguments: 3.1.0 @@ -30889,171 +32071,171 @@ packages: transitivePeerDependencies: - supports-color - /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==} - /ipaddr.js/1.9.1: + /ipaddr.js@1.9.1: resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} engines: {node: '>= 0.10'} - /ipaddr.js/2.0.1: + /ipaddr.js@2.0.1: resolution: {integrity: sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==} engines: {node: '>= 10'} - /ipv6-normalize/1.0.1: + /ipv6-normalize@1.0.1: resolution: {integrity: sha512-Bm6H79i01DjgGTCWjUuCjJ6QDo1HB96PT/xCYuyJUP9WFbVDrLSbG4EZCvOCun2rNswZb0c3e4Jt/ws795esHA==} dev: false - /is-absolute-url/3.0.3: + /is-absolute-url@3.0.3: resolution: {integrity: sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==} engines: {node: '>=8'} - /is-accessor-descriptor/0.1.6: + /is-accessor-descriptor@0.1.6: resolution: {integrity: sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==} engines: {node: '>=0.10.0'} dependencies: kind-of: 3.2.2 dev: true - /is-accessor-descriptor/1.0.0: + /is-accessor-descriptor@1.0.0: resolution: {integrity: sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==} engines: {node: '>=0.10.0'} dependencies: kind-of: 6.0.3 dev: true - /is-alphabetical/1.0.4: + /is-alphabetical@1.0.4: resolution: {integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==} dev: false - /is-alphanumerical/1.0.4: + /is-alphanumerical@1.0.4: resolution: {integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==} dependencies: is-alphabetical: 1.0.4 is-decimal: 1.0.4 dev: false - /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-array-buffer/3.0.2: + /is-array-buffer@3.0.2: resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==} dependencies: call-bind: 1.0.2 get-intrinsic: 1.2.1 is-typed-array: 1.1.12 - /is-arrayish/0.2.1: + /is-arrayish@0.2.1: resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} - /is-arrayish/0.3.2: + /is-arrayish@0.3.2: resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} dev: false - /is-bigint/1.0.4: + /is-bigint@1.0.4: resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} dependencies: has-bigints: 1.0.2 - /is-binary-path/1.0.1: + /is-binary-path@1.0.1: resolution: {integrity: sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==} engines: {node: '>=0.10.0'} dependencies: binary-extensions: 1.13.1 dev: true - /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==} - /is-buffer/2.0.5: + /is-buffer@2.0.5: resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==} engines: {node: '>=4'} dev: true - /is-builtin-module/3.2.1: + /is-builtin-module@3.2.1: resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==} engines: {node: '>=6'} dependencies: builtin-modules: 3.3.0 dev: true - /is-callable/1.2.7: + /is-callable@1.2.7: resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} engines: {node: '>= 0.4'} - /is-ci/2.0.0: + /is-ci@2.0.0: resolution: {integrity: sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==} hasBin: true dependencies: ci-info: 2.0.0 dev: true - /is-ci/3.0.1: + /is-ci@3.0.1: resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==} hasBin: true dependencies: ci-info: 3.8.0 - /is-core-module/2.12.0: + /is-core-module@2.12.0: resolution: {integrity: sha512-RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ==} dependencies: has: 1.0.3 - /is-core-module/2.13.0: + /is-core-module@2.13.0: resolution: {integrity: sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==} dependencies: has: 1.0.3 - /is-data-descriptor/0.1.4: + /is-data-descriptor@0.1.4: resolution: {integrity: sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==} engines: {node: '>=0.10.0'} dependencies: kind-of: 3.2.2 dev: true - /is-data-descriptor/1.0.0: + /is-data-descriptor@1.0.0: resolution: {integrity: sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==} engines: {node: '>=0.10.0'} dependencies: kind-of: 6.0.3 dev: true - /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-decimal/1.0.4: + /is-decimal@1.0.4: resolution: {integrity: sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==} dev: false - /is-deflate/1.0.0: + /is-deflate@1.0.0: resolution: {integrity: sha512-YDoFpuZWu1VRXlsnlYMzKyVRITXj7Ej/V9gXQ2/pAe7X1J7M/RNOqaIYi6qUn+B7nGyB9pDXrv02dsB58d2ZAQ==} dev: true - /is-descriptor/0.1.6: + /is-descriptor@0.1.6: resolution: {integrity: sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==} engines: {node: '>=0.10.0'} dependencies: @@ -31062,7 +32244,7 @@ packages: kind-of: 5.1.0 dev: true - /is-descriptor/1.0.2: + /is-descriptor@1.0.2: resolution: {integrity: sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==} engines: {node: '>=0.10.0'} dependencies: @@ -31071,420 +32253,421 @@ packages: kind-of: 6.0.3 dev: true - /is-directory/0.3.1: + /is-directory@0.3.1: resolution: {integrity: sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==} engines: {node: '>=0.10.0'} dev: true - /is-docker/2.2.1: + /is-docker@2.2.1: resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} engines: {node: '>=8'} hasBin: true - /is-dotfile/1.0.3: + /is-dotfile@1.0.3: resolution: {integrity: sha512-9YclgOGtN/f8zx0Pr4FQYMdibBiTaH3sn52vjYip4ZSf6C4/6RfTEZ+MR4GvKhCxdPh21Bg42/WL55f6KSnKpg==} engines: {node: '>=0.10.0'} dev: true - /is-equal-shallow/0.1.3: + /is-equal-shallow@0.1.3: resolution: {integrity: sha512-0EygVC5qPvIyb+gSz7zdD5/AAoS6Qrx1e//6N4yv4oNm30kqvdmG66oZFWVlQHUWe5OjP08FuTw2IdT0EOTcYA==} engines: {node: '>=0.10.0'} dependencies: is-primitive: 2.0.0 dev: true - /is-extendable/0.1.1: + /is-extendable@0.1.1: resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} engines: {node: '>=0.10.0'} - /is-extendable/1.0.1: + /is-extendable@1.0.1: resolution: {integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==} engines: {node: '>=0.10.0'} dependencies: is-plain-object: 2.0.4 dev: true - /is-extglob/1.0.0: + /is-extglob@1.0.0: resolution: {integrity: sha512-7Q+VbVafe6x2T+Tu6NcOf6sRklazEPmBoB3IWk3WdGZM2iGUwU/Oe3Wtq5lSEkDTTlpp8yx+5t4pzO/i9Ty1ww==} 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/1.0.0: + /is-fullwidth-code-point@1.0.0: resolution: {integrity: sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==} engines: {node: '>=0.10.0'} dependencies: number-is-nan: 1.0.1 dev: true - /is-fullwidth-code-point/2.0.0: + /is-fullwidth-code-point@2.0.0: resolution: {integrity: sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==} engines: {node: '>=4'} dev: true - /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-generator-fn/2.1.0: + /is-generator-fn@2.1.0: resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==} engines: {node: '>=6'} - /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 - /is-glob/2.0.1: + /is-glob@2.0.1: resolution: {integrity: sha512-a1dBeB19NXsf/E0+FHqkagizel/LQw2DjSQpvQrj3zT+jYPpaUCryPnrQajXKFLCMuf4I6FhRpaGtw4lPrG6Eg==} engines: {node: '>=0.10.0'} dependencies: is-extglob: 1.0.0 dev: true - /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-gzip/1.0.0: + /is-gzip@1.0.0: resolution: {integrity: sha512-rcfALRIb1YewtnksfRIHGcIY93QnK8BIQ/2c9yDYcG/Y6+vRoJuTWBmmSEbyLLYtXm7q35pHOHbZFQBaLrhlWQ==} engines: {node: '>=0.10.0'} dev: true - /is-hexadecimal/1.0.4: + /is-hexadecimal@1.0.4: resolution: {integrity: sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==} dev: false - /is-installed-globally/0.4.0: + /is-installed-globally@0.4.0: resolution: {integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==} engines: {node: '>=10'} dependencies: global-dirs: 3.0.1 is-path-inside: 3.0.3 - /is-interactive/1.0.0: + /is-interactive@1.0.0: resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} engines: {node: '>=8'} - /is-lambda/1.0.1: + /is-lambda@1.0.1: resolution: {integrity: sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==} dev: true - /is-lite/0.8.2: + /is-lite@0.8.2: resolution: {integrity: sha512-JZfH47qTsslwaAsqbMI3Q6HNNjUuq6Cmzzww50TdP5Esb6e1y2sK2UAaZZuzfAzpoI2AkxoPQapZdlDuP6Vlsw==} dev: true - /is-lite/0.9.2: + /is-lite@0.9.2: resolution: {integrity: sha512-qZuxbaEiKLOKhX4sbHLfhFN9iA3YciuZLb37/DfXCpWnz8p7qNL2lwkpxYMXfjlS8eEEjpULPZxAUI8N6FYvYQ==} dev: true - /is-lower-case/1.1.3: + /is-lower-case@1.1.3: resolution: {integrity: sha512-+5A1e/WJpLLXZEDlgz4G//WYSHyQBD32qa4Jd3Lw06qQlv3fJHnp3YIHjTQSGzHMgzmVKz2ZP3rBxTHkPw/lxA==} dependencies: lower-case: 1.1.4 dev: true - /is-map/2.0.2: + /is-map@2.0.2: resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==} - /is-module/1.0.0: + /is-module@1.0.0: resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==} - /is-nan/1.3.2: + /is-nan@1.3.2: resolution: {integrity: sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 define-properties: 1.2.0 - /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/2.1.0: + /is-number@2.1.0: resolution: {integrity: sha512-QUzH43Gfb9+5yckcrSA0VBDwEtDUchrk4F6tfJZQuNzDJbEDB9cZNzSfXGQ1jqmdDY/kl41lUOWM9syA8z8jlg==} engines: {node: '>=0.10.0'} dependencies: kind-of: 3.2.2 dev: true - /is-number/3.0.0: + /is-number@3.0.0: resolution: {integrity: sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==} engines: {node: '>=0.10.0'} dependencies: kind-of: 3.2.2 dev: true - /is-number/4.0.0: + /is-number@4.0.0: resolution: {integrity: sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==} engines: {node: '>=0.10.0'} dev: true - /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'} - /is-observable/1.1.0: + /is-observable@1.1.0: resolution: {integrity: sha512-NqCa4Sa2d+u7BWc6CukaObG3Fh+CU9bvixbpcXYhy2VvYS7vVGIdAgnIS5Ks3A/cqk4rebLJ9s8zBstT2aKnIA==} engines: {node: '>=4'} dependencies: symbol-observable: 1.2.0 dev: true - /is-path-cwd/2.2.0: + /is-path-cwd@2.2.0: resolution: {integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==} engines: {node: '>=6'} 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-plain-obj/3.0.0: + /is-plain-obj@3.0.0: resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==} engines: {node: '>=10'} - /is-plain-obj/4.1.0: + /is-plain-obj@4.1.0: resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} engines: {node: '>=12'} dev: true - /is-plain-object/2.0.4: + /is-plain-object@2.0.4: resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} engines: {node: '>=0.10.0'} dependencies: isobject: 3.0.1 - /is-plain-object/5.0.0: + /is-plain-object@5.0.0: resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} engines: {node: '>=0.10.0'} - /is-posix-bracket/0.1.1: + /is-posix-bracket@0.1.1: resolution: {integrity: sha512-Yu68oeXJ7LeWNmZ3Zov/xg/oDBnBK2RNxwYY1ilNJX+tKKZqgPK+qOn/Gs9jEu66KDY9Netf5XLKNGzas/vPfQ==} engines: {node: '>=0.10.0'} dev: true - /is-potential-custom-element-name/1.0.1: + /is-potential-custom-element-name@1.0.1: resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} - /is-primitive/2.0.0: + /is-primitive@2.0.0: resolution: {integrity: sha512-N3w1tFaRfk3UrPfqeRyD+GYDASU3W5VinKhlORy8EWVf/sIdDL9GAcew85XmktCfH+ngG7SRXEVDoO18WMdB/Q==} engines: {node: '>=0.10.0'} dev: true - /is-promise/2.2.2: + /is-promise@2.2.2: resolution: {integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==} dev: true - /is-reference/1.2.1: + /is-reference@1.2.1: resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==} dependencies: '@types/estree': 1.0.1 dev: true - /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-retry-allowed/1.2.0: + /is-retry-allowed@1.2.0: resolution: {integrity: sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==} engines: {node: '>=0.10.0'} dev: false - /is-root/2.1.0: + /is-root@2.1.0: resolution: {integrity: sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==} engines: {node: '>=6'} - /is-set/2.0.2: + /is-set@2.0.2: resolution: {integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==} - /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-ssh/1.4.0: + /is-ssh@1.4.0: resolution: {integrity: sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==} dependencies: protocols: 2.0.1 dev: true - /is-stream-ended/0.1.4: + /is-stream-ended@0.1.4: resolution: {integrity: sha512-xj0XPvmr7bQFTvirqnFr50o0hQIh6ZItDqloxt5aJrR4NQsYeSsyFQERYGCAzfindAcnKjINnwEEgLx4IqVzQw==} + requiresBuild: true dev: false optional: true - /is-stream/1.1.0: + /is-stream@1.1.0: resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==} engines: {node: '>=0.10.0'} dev: true - /is-stream/2.0.1: + /is-stream@2.0.1: resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} engines: {node: '>=8'} - /is-stream/3.0.0: + /is-stream@3.0.0: resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dev: true - /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-subdir/1.2.0: + /is-subdir@1.2.0: resolution: {integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==} engines: {node: '>=4'} dependencies: better-path-resolve: 1.0.0 dev: true - /is-subset/0.1.1: + /is-subset@0.1.1: resolution: {integrity: sha512-6Ybun0IkarhmEqxXCNw/C0bna6Zb/TkfUX9UbwJtK6ObwAVCxmAP308WWTHviM/zAqXk05cdhYsUsZeGQh99iw==} dev: true - /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.12: + /is-typed-array@1.1.12: resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==} engines: {node: '>= 0.4'} dependencies: which-typed-array: 1.1.11 - /is-typedarray/1.0.0: + /is-typedarray@1.0.0: resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} - /is-unicode-supported/0.1.0: + /is-unicode-supported@0.1.0: resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} engines: {node: '>=10'} - /is-upper-case/1.1.2: + /is-upper-case@1.1.2: resolution: {integrity: sha512-GQYSJMgfeAmVwh9ixyk888l7OIhNAGKtY6QA+IrWlu9MDTCaXmeozOZ2S9Knj7bQwBO/H6J2kb+pbyTUiMNbsw==} dependencies: upper-case: 1.1.3 dev: true - /is-utf8/0.2.1: + /is-utf8@0.2.1: resolution: {integrity: sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==} dev: true - /is-weakmap/2.0.1: + /is-weakmap@2.0.1: resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==} - /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.2.1 - /is-what/3.14.1: + /is-what@3.14.1: resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==} - /is-what/4.1.8: + /is-what@4.1.8: resolution: {integrity: sha512-yq8gMao5upkPoGEU9LsB2P+K3Kt8Q3fQFCGyNCWOAnJAMzEXVV9drYb0TXr42TTliLLhKIBvulgAXgtLLnwzGA==} engines: {node: '>=12.13'} dev: false - /is-whitespace/0.3.0: + /is-whitespace@0.3.0: resolution: {integrity: sha512-RydPhl4S6JwAyj0JJjshWJEFG6hNye3pZFBRZaTUfZFwGHxzppNaNOVgQuS/E/SlhrApuMXrpnK1EEIXfdo3Dg==} engines: {node: '>=0.10.0'} dev: false - /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 - /isarray/0.0.1: + /isarray@0.0.1: resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==} - /isarray/1.0.0: + /isarray@1.0.0: resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} - /isarray/2.0.5: + /isarray@2.0.5: resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} - /isbinaryfile/4.0.10: + /isbinaryfile@4.0.10: resolution: {integrity: sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==} engines: {node: '>= 8.0.0'} dev: true - /isexe/2.0.0: + /isexe@2.0.0: resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} - /isobject/2.1.0: + /isobject@2.1.0: resolution: {integrity: sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==} engines: {node: '>=0.10.0'} dependencies: isarray: 1.0.0 dev: true - /isobject/3.0.1: + /isobject@3.0.1: resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} engines: {node: '>=0.10.0'} - /isomorphic-unfetch/3.1.0: + /isomorphic-unfetch@3.1.0: resolution: {integrity: sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q==} dependencies: node-fetch: 2.7.0 @@ -31493,10 +32676,10 @@ packages: - encoding dev: false - /isstream/0.1.2: + /isstream@0.1.2: resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==} - /issue-parser/6.0.0: + /issue-parser@6.0.0: resolution: {integrity: sha512-zKa/Dxq2lGsBIXQ7CUZWTHfvxPC2ej0KfO7fIPqLlHB9J2hJ7rGhZ5rilhuufylr4RXYPzJUeFjKxz305OsNlA==} engines: {node: '>=10.13'} dependencies: @@ -31507,18 +32690,18 @@ packages: lodash.uniqby: 4.7.0 dev: true - /istanbul-lib-coverage/3.2.0: + /istanbul-lib-coverage@3.2.0: resolution: {integrity: sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==} engines: {node: '>=8'} - /istanbul-lib-hook/3.0.0: + /istanbul-lib-hook@3.0.0: resolution: {integrity: sha512-Pt/uge1Q9s+5VAZ+pCo16TYMWPBIl+oaNIjgLQxcX0itS6ueeaA+pEfThZpH8WxhFgCiEb8sAJY6MdUKgiIWaQ==} engines: {node: '>=8'} dependencies: append-transform: 2.0.0 dev: true - /istanbul-lib-instrument/4.0.3: + /istanbul-lib-instrument@4.0.3: resolution: {integrity: sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==} engines: {node: '>=8'} dependencies: @@ -31530,7 +32713,7 @@ packages: - supports-color dev: true - /istanbul-lib-instrument/5.2.1: + /istanbul-lib-instrument@5.2.1: resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} engines: {node: '>=8'} dependencies: @@ -31542,7 +32725,7 @@ packages: transitivePeerDependencies: - supports-color - /istanbul-lib-processinfo/2.0.3: + /istanbul-lib-processinfo@2.0.3: resolution: {integrity: sha512-NkwHbo3E00oybX6NGJi6ar0B29vxyvNwoC7eJ4G4Yq28UfY758Hgn/heV8VRFhevPED4LXfFz0DQ8z/0kw9zMg==} engines: {node: '>=8'} dependencies: @@ -31554,7 +32737,7 @@ packages: uuid: 8.3.2 dev: true - /istanbul-lib-report/3.0.0: + /istanbul-lib-report@3.0.0: resolution: {integrity: sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==} engines: {node: '>=8'} dependencies: @@ -31562,38 +32745,39 @@ packages: make-dir: 3.1.0 supports-color: 7.2.0 - /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@8.1.1) istanbul-lib-coverage: 3.2.0 source-map: 0.6.1 transitivePeerDependencies: - supports-color - /istanbul-reports/3.1.5: + /istanbul-reports@3.1.5: resolution: {integrity: sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==} engines: {node: '>=8'} dependencies: html-escaper: 2.0.2 istanbul-lib-report: 3.0.0 - /iterable-to-stream/1.0.1: + /iterable-to-stream@1.0.1: resolution: {integrity: sha512-O62gD5ADMUGtJoOoM9U6LQ7i4byPXUNoHJ6mqsmkQJcom331ZJGDApWgDESWyBMEHEJRjtHozgIiTzYo9RU4UA==} engines: {node: '>=8.0.0'} dev: true - /iterall/1.3.0: + /iterall@1.3.0: resolution: {integrity: sha512-QZ9qOMdF+QLHxy1QIpUHUU1D5pS2CG2P69LF6L6CPjPYA/XMOmKV3PZpawHoAjHNyB0swdVTRxdYT4tbBbxqwg==} + requiresBuild: true dev: false optional: true - /iterare/1.2.1: + /iterare@1.2.1: resolution: {integrity: sha512-RKYVTCjAnRthyJes037NX/IiqeidgN1xc3j1RjFfECFp28A1GVwK9nA+i0rJPaHqSZwygLzRnFlzUuHFoWWy+Q==} engines: {node: '>=6'} - /jackspeak/2.3.3: + /jackspeak@2.3.3: resolution: {integrity: sha512-R2bUw+kVZFS/h1AZqBKrSgDmdmjApzgY0AlCPumopFiAlbUxE2gf+SCuBzQ0cP5hHmUmFYF5yw55T97Th5Kstg==} engines: {node: '>=14'} dependencies: @@ -31601,7 +32785,7 @@ packages: optionalDependencies: '@pkgjs/parseargs': 0.11.0 - /jake/10.8.5: + /jake@10.8.5: resolution: {integrity: sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==} engines: {node: '>=10'} hasBin: true @@ -31611,16 +32795,16 @@ packages: filelist: 1.0.4 minimatch: 3.1.2 - /jasmine-core/4.6.0: + /jasmine-core@4.6.0: resolution: {integrity: sha512-O236+gd0ZXS8YAjFx8xKaJ94/erqUliEkJTDedyE7iHvv4ZVqi+q+8acJxu05/WJDKm512EUNn809In37nWlAQ==} dev: true - /java-properties/1.0.2: + /java-properties@1.0.2: resolution: {integrity: sha512-qjdpeo2yKlYTH7nFdK0vbZWuTCesk4o63v5iVOlhMQPfuIZQfW/HI35SjfhA+4qpg36rnFSvUK5b1m+ckIblQQ==} engines: {node: '>= 0.6.0'} dev: true - /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: @@ -31628,7 +32812,7 @@ packages: execa: 5.1.1 throat: 6.0.2 - /jest-changed-files/29.5.0: + /jest-changed-files@29.5.0: resolution: {integrity: sha512-IFG34IUMUaNBIxjQXF/iu7g6EcdMrGRRxaUSw92I/2g2YC6vCdTltl4nHvt7Ci5nSJwXIkCu8Ka1DKF+X7Z1Ag==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -31636,7 +32820,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: @@ -31662,7 +32846,7 @@ packages: transitivePeerDependencies: - supports-color - /jest-circus/29.5.0: + /jest-circus@29.5.0: resolution: {integrity: sha512-gq/ongqeQKAplVxqJmbeUOJJKkW3dDNPY8PjhJ5G0lBRvu0e3EWGxGy5cI4LAGA7gV2UHCtWBI4EMXK8c9nQKA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -31690,7 +32874,7 @@ packages: - supports-color dev: true - /jest-cli/27.5.1: + /jest-cli@27.5.1(ts-node@10.9.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 @@ -31700,14 +32884,14 @@ packages: node-notifier: optional: true dependencies: - '@jest/core': 27.5.1 + '@jest/core': 27.5.1(ts-node@10.9.1) '@jest/test-result': 27.5.1 '@jest/types': 27.5.1 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 import-local: 3.1.0 - jest-config: 27.5.1 + jest-config: 27.5.1(ts-node@10.9.1) jest-util: 27.5.1 jest-validate: 27.5.1 prompts: 2.4.2 @@ -31719,37 +32903,7 @@ packages: - ts-node - utf-8-validate - /jest-cli/27.5.1_ts-node@10.9.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 - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true - dependencies: - '@jest/core': 27.5.1_ts-node@10.9.1 - '@jest/test-result': 27.5.1 - '@jest/types': 27.5.1 - chalk: 4.1.2 - exit: 0.1.2 - graceful-fs: 4.2.11 - import-local: 3.1.0 - jest-config: 27.5.1_ts-node@10.9.1 - jest-util: 27.5.1 - jest-validate: 27.5.1 - prompts: 2.4.2 - yargs: 16.2.0 - transitivePeerDependencies: - - bufferutil - - canvas - - supports-color - - ts-node - - utf-8-validate - dev: true - - /jest-cli/29.5.0_@types+node@14.18.42: + /jest-cli@29.5.0(@types/node@14.18.42)(ts-node@10.9.1): resolution: {integrity: sha512-L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true @@ -31759,14 +32913,14 @@ packages: node-notifier: optional: true dependencies: - '@jest/core': 29.5.0 + '@jest/core': 29.5.0(ts-node@10.9.1) '@jest/test-result': 29.5.0 '@jest/types': 29.5.0 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 import-local: 3.1.0 - jest-config: 29.5.0_@types+node@14.18.42 + jest-config: 29.5.0(@types/node@14.18.42)(ts-node@10.9.1) jest-util: 29.5.0 jest-validate: 29.5.0 prompts: 2.4.2 @@ -31777,7 +32931,7 @@ packages: - ts-node dev: true - /jest-cli/29.5.0_@types+node@18.15.11: + /jest-cli@29.5.0(@types/node@18.15.11)(ts-node@10.9.1): resolution: {integrity: sha512-L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true @@ -31787,14 +32941,14 @@ packages: node-notifier: optional: true dependencies: - '@jest/core': 29.5.0 + '@jest/core': 29.5.0(ts-node@10.9.1) '@jest/test-result': 29.5.0 '@jest/types': 29.5.0 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 import-local: 3.1.0 - jest-config: 29.5.0_@types+node@18.15.11 + jest-config: 29.5.0(@types/node@18.15.11)(ts-node@10.9.1) jest-util: 29.5.0 jest-validate: 29.5.0 prompts: 2.4.2 @@ -31805,7 +32959,7 @@ packages: - ts-node dev: true - /jest-config/27.2.2_ts-node@10.9.1: + /jest-config@27.2.2(ts-node@10.9.1): resolution: {integrity: sha512-2nhms3lp52ZpU0636bB6zIFHjDVtYxzFQIOHZjBFUeXcb6b41sEkWojbHaJ4FEIO44UbccTLa7tvNpiFCgPE7w==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} peerDependencies: @@ -31817,7 +32971,7 @@ packages: '@babel/core': 7.22.11 '@jest/test-sequencer': 27.5.1 '@jest/types': 27.5.1 - babel-jest: 27.5.1_@babel+core@7.22.11 + babel-jest: 27.5.1(@babel/core@7.22.11) chalk: 4.1.2 deepmerge: 4.3.1 glob: 7.2.3 @@ -31835,7 +32989,7 @@ packages: jest-validate: 27.5.1 micromatch: 4.0.5 pretty-format: 27.5.1 - ts-node: 10.9.1_j6r65ghnzvzk7vhdh4hyogrm4a + ts-node: 10.9.1(@swc/core@1.3.49)(@types/node@16.11.7)(typescript@4.9.5) transitivePeerDependencies: - bufferutil - canvas @@ -31843,46 +32997,7 @@ packages: - utf-8-validate dev: true - /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: - ts-node: '>=9.0.0' - peerDependenciesMeta: - ts-node: - optional: true - dependencies: - '@babel/core': 7.22.11 - '@jest/test-sequencer': 27.5.1 - '@jest/types': 27.5.1 - babel-jest: 27.5.1_@babel+core@7.22.11 - chalk: 4.1.2 - ci-info: 3.8.0 - deepmerge: 4.3.1 - glob: 7.2.3 - graceful-fs: 4.2.11 - jest-circus: 27.5.1 - jest-environment-jsdom: 27.5.1 - jest-environment-node: 27.5.1 - jest-get-type: 27.5.1 - jest-jasmine2: 27.5.1 - jest-regex-util: 27.5.1 - jest-resolve: 27.5.1 - jest-runner: 27.5.1 - jest-util: 27.5.1 - jest-validate: 27.5.1 - micromatch: 4.0.5 - parse-json: 5.2.0 - pretty-format: 27.5.1 - slash: 3.0.0 - strip-json-comments: 3.1.1 - transitivePeerDependencies: - - bufferutil - - canvas - - supports-color - - utf-8-validate - - /jest-config/27.5.1_ts-node@10.9.1: + /jest-config@27.5.1(ts-node@10.9.1): resolution: {integrity: sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} peerDependencies: @@ -31894,7 +33009,7 @@ packages: '@babel/core': 7.22.11 '@jest/test-sequencer': 27.5.1 '@jest/types': 27.5.1 - babel-jest: 27.5.1_@babel+core@7.22.11 + babel-jest: 27.5.1(@babel/core@7.22.11) chalk: 4.1.2 ci-info: 3.8.0 deepmerge: 4.3.1 @@ -31915,15 +33030,14 @@ packages: pretty-format: 27.5.1 slash: 3.0.0 strip-json-comments: 3.1.1 - ts-node: 10.9.1_wh2cnrlliuuxb2etxm2m3ttgna + ts-node: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) transitivePeerDependencies: - bufferutil - canvas - supports-color - utf-8-validate - dev: true - /jest-config/29.5.0_6m7kcbkkzjz4ln6z66tlzx44we: + /jest-config@29.5.0(@types/node@14.18.42)(ts-node@10.9.1): resolution: {integrity: sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: @@ -31938,8 +33052,8 @@ packages: '@babel/core': 7.22.11 '@jest/test-sequencer': 29.5.0 '@jest/types': 29.5.0 - '@types/node': 16.11.7 - babel-jest: 29.5.0_@babel+core@7.22.11 + '@types/node': 14.18.42 + babel-jest: 29.5.0(@babel/core@7.22.11) chalk: 4.1.2 ci-info: 3.8.0 deepmerge: 4.3.1 @@ -31958,12 +33072,12 @@ packages: pretty-format: 29.5.0 slash: 3.0.0 strip-json-comments: 3.1.1 - ts-node: 10.9.1_j6r65ghnzvzk7vhdh4hyogrm4a + ts-node: 10.9.1(@swc/core@1.3.49)(@types/node@16.11.7)(typescript@4.9.5) transitivePeerDependencies: - supports-color dev: true - /jest-config/29.5.0_@types+node@14.18.42: + /jest-config@29.5.0(@types/node@16.11.7)(ts-node@10.9.1): resolution: {integrity: sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: @@ -31978,8 +33092,8 @@ packages: '@babel/core': 7.22.11 '@jest/test-sequencer': 29.5.0 '@jest/types': 29.5.0 - '@types/node': 14.18.42 - babel-jest: 29.5.0_@babel+core@7.22.11 + '@types/node': 16.11.7 + babel-jest: 29.5.0(@babel/core@7.22.11) chalk: 4.1.2 ci-info: 3.8.0 deepmerge: 4.3.1 @@ -31998,11 +33112,12 @@ packages: pretty-format: 29.5.0 slash: 3.0.0 strip-json-comments: 3.1.1 + ts-node: 10.9.1(@swc/core@1.3.49)(@types/node@16.11.7)(typescript@4.9.5) transitivePeerDependencies: - supports-color dev: true - /jest-config/29.5.0_@types+node@18.15.11: + /jest-config@29.5.0(@types/node@18.15.11)(ts-node@10.9.1): resolution: {integrity: sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: @@ -32018,7 +33133,7 @@ packages: '@jest/test-sequencer': 29.5.0 '@jest/types': 29.5.0 '@types/node': 18.15.11 - babel-jest: 29.5.0_@babel+core@7.22.11 + babel-jest: 29.5.0(@babel/core@7.22.11) chalk: 4.1.2 ci-info: 3.8.0 deepmerge: 4.3.1 @@ -32037,11 +33152,12 @@ packages: pretty-format: 29.5.0 slash: 3.0.0 strip-json-comments: 3.1.1 + ts-node: 10.9.1(@swc/core@1.3.49)(@types/node@16.11.7)(typescript@4.9.5) transitivePeerDependencies: - supports-color dev: true - /jest-diff/24.9.0: + /jest-diff@24.9.0: resolution: {integrity: sha512-qMfrTs8AdJE2iqrTp0hzh7kTd2PQWrsFyj9tORoKmu32xjPjeE4NyjVRDz8ybYwqS2ik8N4hsIpiVTyFeo2lBQ==} engines: {node: '>= 6'} dependencies: @@ -32051,7 +33167,7 @@ packages: pretty-format: 24.9.0 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: @@ -32060,7 +33176,7 @@ packages: jest-get-type: 27.5.1 pretty-format: 27.5.1 - /jest-diff/29.5.0: + /jest-diff@29.5.0: resolution: {integrity: sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -32069,20 +33185,20 @@ packages: jest-get-type: 29.4.3 pretty-format: 29.5.0 - /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 - /jest-docblock/29.4.3: + /jest-docblock@29.4.3: resolution: {integrity: sha512-fzdTftThczeSD9nZ3fzA/4KkHtnmllawWrXO69vtI+L9WjEIuXWs4AmyME7lN5hU7dB0sHhuPfcKofRsUb/2Fg==} 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: @@ -32092,7 +33208,7 @@ packages: jest-util: 27.5.1 pretty-format: 27.5.1 - /jest-each/29.5.0: + /jest-each@29.5.0: resolution: {integrity: sha512-HM5kIJ1BTnVt+DQZ2ALp3rzXEl+g726csObrW/jpEGl+CDSSQpOJJX2KE/vEg8cxcMXdyEPu6U4QX5eruQv5hA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -32103,7 +33219,7 @@ packages: pretty-format: 29.5.0 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: @@ -32120,7 +33236,7 @@ packages: - supports-color - utf-8-validate - /jest-environment-jsdom/29.5.0: + /jest-environment-jsdom@29.5.0: resolution: {integrity: sha512-/KG8yEK4aN8ak56yFVdqFDzKNHgF4BAymCx2LbPNPsUshUlfAl0eX402Xm1pt+eoG9SLZEUVifqXtX8SK74KCw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: @@ -32143,7 +33259,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: @@ -32154,7 +33270,7 @@ packages: jest-mock: 27.5.1 jest-util: 27.5.1 - /jest-environment-node/29.5.0: + /jest-environment-node@29.5.0: resolution: {integrity: sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -32166,20 +33282,20 @@ packages: jest-util: 29.5.0 dev: true - /jest-get-type/24.9.0: + /jest-get-type@24.9.0: resolution: {integrity: sha512-lUseMzAley4LhIcpSP9Jf+fTrQ4a1yHQwLNeeVa2cEmbCGeoZAtYPOIv8JaxLD/sUpKxetKGP+gsHl8f8TSj8Q==} engines: {node: '>= 6'} 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} - /jest-get-type/29.4.3: + /jest-get-type@29.4.3: resolution: {integrity: sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - /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: @@ -32198,7 +33314,7 @@ packages: optionalDependencies: fsevents: 2.3.3 - /jest-haste-map/29.5.0: + /jest-haste-map@29.5.0: resolution: {integrity: sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -32216,7 +33332,7 @@ packages: optionalDependencies: fsevents: 2.3.3 - /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: @@ -32240,14 +33356,14 @@ packages: transitivePeerDependencies: - supports-color - /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: jest-get-type: 27.5.1 pretty-format: 27.5.1 - /jest-leak-detector/29.5.0: + /jest-leak-detector@29.5.0: resolution: {integrity: sha512-u9YdeeVnghBUtpN5mVxjID7KbkKE1QU4f6uUwuxiY0vYRi9BUCLKlPEZfDGR67ofdFmDz9oPAy2G92Ujrntmow==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -32255,7 +33371,7 @@ packages: pretty-format: 29.5.0 dev: true - /jest-matcher-utils/24.9.0: + /jest-matcher-utils@24.9.0: resolution: {integrity: sha512-OZz2IXsu6eaiMAwe67c1T+5tUAtQyQx27/EMEkbFAGiw52tB9em+uGbzpcgYVpA8wl0hlxKPZxrly4CXU/GjHA==} engines: {node: '>= 6'} dependencies: @@ -32265,7 +33381,7 @@ packages: pretty-format: 24.9.0 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: @@ -32274,7 +33390,7 @@ packages: jest-get-type: 27.5.1 pretty-format: 27.5.1 - /jest-matcher-utils/29.5.0: + /jest-matcher-utils@29.5.0: resolution: {integrity: sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -32283,7 +33399,7 @@ packages: jest-get-type: 29.4.3 pretty-format: 29.5.0 - /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: @@ -32297,7 +33413,7 @@ packages: slash: 3.0.0 stack-utils: 2.0.6 - /jest-message-util/28.1.3: + /jest-message-util@28.1.3: resolution: {integrity: sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: @@ -32311,7 +33427,7 @@ packages: slash: 3.0.0 stack-utils: 2.0.6 - /jest-message-util/29.5.0: + /jest-message-util@29.5.0: resolution: {integrity: sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -32325,14 +33441,14 @@ packages: slash: 3.0.0 stack-utils: 2.0.6 - /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: '@jest/types': 27.5.1 '@types/node': 14.18.42 - /jest-mock/29.5.0: + /jest-mock@29.5.0: resolution: {integrity: sha512-GqOzvdWDE4fAV2bWQLQCkujxYWL7RxjCnj71b5VhDAGOevB3qj3Ovg26A5NI84ZpODxyzaozXLOh2NCgkbvyaw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -32341,11 +33457,11 @@ packages: jest-util: 29.5.0 dev: true - /jest-node-exports-resolver/1.1.6: + /jest-node-exports-resolver@1.1.6: resolution: {integrity: sha512-NU412Qcb6WSRetCyEGMCC7IWHzO12LhSKaF1s9cyfM+EOYs4YN2gcNUT8hgu22X0oPFYNwLSPevgstBgLbD9ig==} dev: true - /jest-pnp-resolver/1.2.3_jest-resolve@27.2.2: + /jest-pnp-resolver@1.2.3(jest-resolve@27.2.2): resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} engines: {node: '>=6'} peerDependencies: @@ -32357,7 +33473,7 @@ packages: jest-resolve: 27.2.2 dev: true - /jest-pnp-resolver/1.2.3_jest-resolve@27.5.1: + /jest-pnp-resolver@1.2.3(jest-resolve@27.5.1): resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} engines: {node: '>=6'} peerDependencies: @@ -32368,7 +33484,7 @@ packages: dependencies: jest-resolve: 27.5.1 - /jest-pnp-resolver/1.2.3_jest-resolve@29.5.0: + /jest-pnp-resolver@1.2.3(jest-resolve@29.5.0): resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} engines: {node: '>=6'} peerDependencies: @@ -32380,19 +33496,19 @@ packages: jest-resolve: 29.5.0 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} - /jest-regex-util/28.0.2: + /jest-regex-util@28.0.2: resolution: {integrity: sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - /jest-regex-util/29.4.3: + /jest-regex-util@29.4.3: resolution: {integrity: sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - /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: @@ -32402,7 +33518,7 @@ packages: transitivePeerDependencies: - supports-color - /jest-resolve-dependencies/29.5.0: + /jest-resolve-dependencies@29.5.0: resolution: {integrity: sha512-sjV3GFr0hDJMBpYeUuGduP+YeCRbd7S/ck6IvL3kQ9cpySYKqcqhdLLC2rFwrcL7tz5vYibomBrsFYWkIGGjOg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -32412,7 +33528,7 @@ packages: - supports-color dev: true - /jest-resolve/27.2.2: + /jest-resolve@27.2.2: resolution: {integrity: sha512-tfbHcBs/hJTb3fPQ/3hLWR+TsLNTzzK98TU+zIAsrL9nNzWfWROwopUOmiSUqmHMZW5t9au/433kSF2/Af+tTw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: @@ -32421,14 +33537,14 @@ packages: escalade: 3.1.1 graceful-fs: 4.2.11 jest-haste-map: 27.5.1 - jest-pnp-resolver: 1.2.3_jest-resolve@27.2.2 + jest-pnp-resolver: 1.2.3(jest-resolve@27.2.2) jest-util: 27.5.1 jest-validate: 27.5.1 resolve: 1.22.2 slash: 3.0.0 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: @@ -32436,21 +33552,21 @@ packages: chalk: 4.1.2 graceful-fs: 4.2.11 jest-haste-map: 27.5.1 - jest-pnp-resolver: 1.2.3_jest-resolve@27.5.1 + jest-pnp-resolver: 1.2.3(jest-resolve@27.5.1) jest-util: 27.5.1 jest-validate: 27.5.1 resolve: 1.22.2 resolve.exports: 1.1.1 slash: 3.0.0 - /jest-resolve/29.5.0: + /jest-resolve@29.5.0: resolution: {integrity: sha512-1TzxJ37FQq7J10jPtQjcc+MkCkE3GBpBecsSUWJ0qZNJpmg6m0D9/7II03yJulm3H/fvVjgqLh/k2eYg+ui52w==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: chalk: 4.1.2 graceful-fs: 4.2.11 jest-haste-map: 29.5.0 - jest-pnp-resolver: 1.2.3_jest-resolve@29.5.0 + jest-pnp-resolver: 1.2.3(jest-resolve@29.5.0) jest-util: 29.5.0 jest-validate: 29.5.0 resolve: 1.22.2 @@ -32458,7 +33574,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: @@ -32489,7 +33605,7 @@ packages: - supports-color - utf-8-validate - /jest-runner/29.5.0: + /jest-runner@29.5.0: resolution: {integrity: sha512-m7b6ypERhFghJsslMLhydaXBiLf7+jXy8FwGRHO3BGV1mcQpPbwiqiKUR2zU2NJuNeMenJmlFZCsIqzJCTeGLQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -32518,7 +33634,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: @@ -32547,7 +33663,7 @@ packages: transitivePeerDependencies: - supports-color - /jest-runtime/29.5.0: + /jest-runtime@29.5.0: resolution: {integrity: sha512-1Hr6Hh7bAgXQP+pln3homOiEZtCDZFqwmle7Ew2j8OlbkIu6uE3Y/etJQG8MLQs3Zy90xrp2C0BRrtPHG4zryw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -32577,27 +33693,27 @@ 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: '@types/node': 14.18.42 graceful-fs: 4.2.11 - /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.22.11 '@babel/generator': 7.22.10 - '@babel/plugin-syntax-typescript': 7.21.4_@babel+core@7.22.11 + '@babel/plugin-syntax-typescript': 7.21.4(@babel/core@7.22.11) '@babel/traverse': 7.22.11 '@babel/types': 7.22.19 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 '@types/babel__traverse': 7.18.3 '@types/prettier': 2.7.2 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.22.11 + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.22.11) chalk: 4.1.2 expect: 27.5.1 graceful-fs: 4.2.11 @@ -32613,14 +33729,14 @@ packages: transitivePeerDependencies: - supports-color - /jest-snapshot/29.5.0: + /jest-snapshot@29.5.0: resolution: {integrity: sha512-x7Wolra5V0tt3wRs3/ts3S6ciSQVypgGQlJpz2rsdQYoUKxMxPNaoHMGJN6qAuPJqS+2iQ1ZUn5kl7HCyls84g==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@babel/core': 7.22.11 '@babel/generator': 7.22.10 - '@babel/plugin-syntax-jsx': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-syntax-typescript': 7.21.4_@babel+core@7.22.11 + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.11) + '@babel/plugin-syntax-typescript': 7.21.4(@babel/core@7.22.11) '@babel/traverse': 7.22.11 '@babel/types': 7.22.19 '@jest/expect-utils': 29.5.0 @@ -32628,7 +33744,7 @@ packages: '@jest/types': 29.5.0 '@types/babel__traverse': 7.18.3 '@types/prettier': 2.7.2 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.22.11 + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.22.11) chalk: 4.1.2 expect: 29.5.0 graceful-fs: 4.2.11 @@ -32644,11 +33760,11 @@ packages: - supports-color dev: true - /jest-transform-stub/2.0.0: + /jest-transform-stub@2.0.0: resolution: {integrity: sha512-lspHaCRx/mBbnm3h4uMMS3R5aZzMwyNpNIJLXj4cEsV0mIUtS4IjYJLSoyjRCtnxb6RIGJ4NL2quZzfIeNhbkg==} dev: true - /jest-util/27.2.0: + /jest-util@27.2.0: resolution: {integrity: sha512-T5ZJCNeFpqcLBpx+Hl9r9KoxBCUqeWlJ1Htli+vryigZVJ1vuLB9j35grEBASp4R13KFkV7jM52bBGnArpJN6A==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: @@ -32660,7 +33776,7 @@ packages: picomatch: 2.3.1 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: @@ -32671,7 +33787,7 @@ packages: graceful-fs: 4.2.11 picomatch: 2.3.1 - /jest-util/28.1.3: + /jest-util@28.1.3: resolution: {integrity: sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: @@ -32682,7 +33798,7 @@ packages: graceful-fs: 4.2.11 picomatch: 2.3.1 - /jest-util/29.5.0: + /jest-util@29.5.0: resolution: {integrity: sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -32693,7 +33809,7 @@ packages: graceful-fs: 4.2.11 picomatch: 2.3.1 - /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: @@ -32704,7 +33820,7 @@ packages: leven: 3.1.0 pretty-format: 27.5.1 - /jest-validate/29.5.0: + /jest-validate@29.5.0: resolution: {integrity: sha512-pC26etNIi+y3HV8A+tUGr/lph9B18GnzSRAkPaaZJIE1eFdiYm6/CewuiJQ8/RlfHd1u/8Ioi8/sJ+CmbA+zAQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -32716,7 +33832,7 @@ packages: pretty-format: 29.5.0 dev: true - /jest-watch-typeahead/1.1.0_jest@27.5.1: + /jest-watch-typeahead@1.1.0(jest@27.5.1): resolution: {integrity: sha512-Va5nLSJTN7YFtC2jd+7wsoe1pNe5K4ShLux/E5iHEwlB9AxaxmggY7to9KUqKojhaJw3aXqt5WAb4jGPOolpEw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -32724,14 +33840,14 @@ packages: dependencies: ansi-escapes: 4.3.2 chalk: 4.1.2 - jest: 27.5.1 + jest: 27.5.1(ts-node@10.9.1) jest-regex-util: 28.0.2 jest-watcher: 28.1.3 slash: 4.0.0 string-length: 5.0.1 strip-ansi: 7.0.1 - /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: @@ -32743,7 +33859,7 @@ packages: jest-util: 27.5.1 string-length: 4.0.2 - /jest-watcher/28.1.3: + /jest-watcher@28.1.3: resolution: {integrity: sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: @@ -32756,7 +33872,7 @@ packages: jest-util: 28.1.3 string-length: 4.0.2 - /jest-watcher/29.5.0: + /jest-watcher@29.5.0: resolution: {integrity: sha512-KmTojKcapuqYrKDpRwfqcQ3zjMlwu27SYext9pt4GlF5FUgB+7XE1mcCnSm6a4uUpFyQIkb6ZhzZvHl+jiBCiA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -32770,7 +33886,7 @@ 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: @@ -32778,7 +33894,7 @@ packages: merge-stream: 2.0.0 supports-color: 7.2.0 - /jest-worker/27.5.1: + /jest-worker@27.5.1: resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} engines: {node: '>= 10.13.0'} dependencies: @@ -32786,7 +33902,7 @@ packages: merge-stream: 2.0.0 supports-color: 8.1.1 - /jest-worker/28.1.3: + /jest-worker@28.1.3: resolution: {integrity: sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: @@ -32794,7 +33910,7 @@ packages: merge-stream: 2.0.0 supports-color: 8.1.1 - /jest-worker/29.5.0: + /jest-worker@29.5.0: resolution: {integrity: sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -32803,7 +33919,7 @@ packages: merge-stream: 2.0.0 supports-color: 8.1.1 - /jest/27.5.1: + /jest@27.5.1(ts-node@10.9.1): resolution: {integrity: sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} hasBin: true @@ -32813,9 +33929,9 @@ packages: node-notifier: optional: true dependencies: - '@jest/core': 27.5.1 + '@jest/core': 27.5.1(ts-node@10.9.1) import-local: 3.1.0 - jest-cli: 27.5.1 + jest-cli: 27.5.1(ts-node@10.9.1) transitivePeerDependencies: - bufferutil - canvas @@ -32823,28 +33939,7 @@ packages: - ts-node - utf-8-validate - /jest/27.5.1_ts-node@10.9.1: - resolution: {integrity: sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - hasBin: true - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true - dependencies: - '@jest/core': 27.5.1_ts-node@10.9.1 - import-local: 3.1.0 - jest-cli: 27.5.1_ts-node@10.9.1 - transitivePeerDependencies: - - bufferutil - - canvas - - supports-color - - ts-node - - utf-8-validate - dev: true - - /jest/29.5.0_@types+node@14.18.42: + /jest@29.5.0(@types/node@14.18.42)(ts-node@10.9.1): resolution: {integrity: sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true @@ -32854,17 +33949,17 @@ packages: node-notifier: optional: true dependencies: - '@jest/core': 29.5.0 + '@jest/core': 29.5.0(ts-node@10.9.1) '@jest/types': 29.5.0 import-local: 3.1.0 - jest-cli: 29.5.0_@types+node@14.18.42 + jest-cli: 29.5.0(@types/node@14.18.42)(ts-node@10.9.1) transitivePeerDependencies: - '@types/node' - supports-color - ts-node dev: true - /jest/29.5.0_@types+node@18.15.11: + /jest@29.5.0(@types/node@18.15.11)(ts-node@10.9.1): resolution: {integrity: sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true @@ -32874,17 +33969,17 @@ packages: node-notifier: optional: true dependencies: - '@jest/core': 29.5.0 + '@jest/core': 29.5.0(ts-node@10.9.1) '@jest/types': 29.5.0 import-local: 3.1.0 - jest-cli: 29.5.0_@types+node@18.15.11 + jest-cli: 29.5.0(@types/node@18.15.11)(ts-node@10.9.1) transitivePeerDependencies: - '@types/node' - supports-color - ts-node dev: true - /jira-prepare-commit-msg/1.7.2: + /jira-prepare-commit-msg@1.7.2: resolution: {integrity: sha512-vPmwqPoi5TfMF1rXh9XN6u7TiSG+FwdcbeL01nMBUbRRxTMXvIqQZoJSRoNoprgY1JUpYXplc3HGRSVsV22rLg==} engines: {node: '>=14'} hasBin: true @@ -32892,29 +33987,29 @@ packages: cosmiconfig: 8.1.3 dev: true - /jiti/1.18.2: + /jiti@1.18.2: resolution: {integrity: sha512-QAdOptna2NYiSSpv0O/BwoHBSmz4YhpzJHyi+fnMRTXFjp7B8i/YG5Z8IfusxB1ufjcD2Sre1F3R+nX3fvy7gg==} hasBin: true - /jmespath/0.16.0: + /jmespath@0.16.0: resolution: {integrity: sha512-9FzQjJ7MATs1tSpnco1K6ayiYE3figslrXA72G2HQ/n76RzvYlofyi5QM+iX4YRs/pu3yzxlVQSST23+dMDknw==} engines: {node: '>= 0.6.0'} dev: false - /join-component/1.1.0: + /join-component@1.1.0: resolution: {integrity: sha512-bF7vcQxbODoGK1imE2P9GS9aw4zD0Sd+Hni68IMZLj7zRnquH7dXUmMw9hDI5S/Jzt7q+IyTXN0rSg2GI0IKhQ==} dev: false - /jose/4.13.1: + /jose@4.13.1: resolution: {integrity: sha512-MSJQC5vXco5Br38mzaQKiq9mwt7lwj2eXpgpRyQYNHYt2lq1PjkWa7DLXX0WVcQLE9HhMh3jPiufS7fhJf+CLQ==} dev: false - /joycon/3.1.1: + /joycon@3.1.1: resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==} engines: {node: '>=10'} dev: false - /js-beautify/1.14.7: + /js-beautify@1.14.7: resolution: {integrity: sha512-5SOX1KXPFKx+5f6ZrPsIPEY7NwKeQz47n3jm2i+XeHx9MoRsfQenlOP13FQhWvg8JRS0+XLO6XYUQ2GX+q+T9A==} engines: {node: '>=10'} hasBin: true @@ -32925,49 +34020,49 @@ packages: nopt: 6.0.0 dev: false - /js-cookie/3.0.1: + /js-cookie@3.0.1: resolution: {integrity: sha512-+0rgsUXZu4ncpPxRL+lNEptWMOWl9etvPHc/koSRp6MPwpRYAhmk0dUG00J4bxVV3r9uUzfo24wW0knS07SKSw==} engines: {node: '>=12'} dev: false - /js-sdsl/4.4.0: + /js-sdsl@4.4.0: resolution: {integrity: sha512-FfVSdx6pJ41Oa+CF7RDaFmTnCaFhua+SNYQX74riGOpl96x+2jQCqEfQ2bnXu/5DPCqlRuiqyvTJM0Qjz26IVg==} - dev: true - /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.0.0: + /js-yaml@4.0.0: resolution: {integrity: sha512-pqon0s+4ScYUvX30wxQi3PogGFAlUyH0awepWvwkj4jD4v+ova3RiYw8bmA6x2rDrEaj8i/oWKoRxpVNW+Re8Q==} hasBin: true dependencies: argparse: 2.0.1 dev: true - /js-yaml/4.1.0: + /js-yaml@4.1.0: resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} hasBin: true dependencies: argparse: 2.0.1 - /js2xmlparser/4.0.2: + /js2xmlparser@4.0.2: resolution: {integrity: sha512-6n4D8gLlLf1n5mNLQPRfViYzu9RATblzPEtm1SthMX1Pjao0r9YI9nw7ZIfRxQMERS87mcswrg+r/OYrPRX6jA==} + requiresBuild: true dependencies: xmlcreate: 2.0.4 dev: false optional: true - /jsbn/0.1.1: + /jsbn@0.1.1: resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==} - /jscodeshift/0.14.0_@babel+preset-env@7.22.20: + /jscodeshift@0.14.0(@babel/preset-env@7.22.20): resolution: {integrity: sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==} hasBin: true peerDependencies: @@ -32975,15 +34070,15 @@ packages: dependencies: '@babel/core': 7.22.11 '@babel/parser': 7.22.16 - '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.22.11 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.22.11 - '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.22.11 - '@babel/plugin-transform-modules-commonjs': 7.22.15_@babel+core@7.22.11 - '@babel/preset-env': 7.22.20_@babel+core@7.22.11 - '@babel/preset-flow': 7.22.15_@babel+core@7.22.11 - '@babel/preset-typescript': 7.21.4_@babel+core@7.22.11 - '@babel/register': 7.21.0_@babel+core@7.22.11 - babel-core: 7.0.0-bridge.0_@babel+core@7.22.11 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.11) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.11) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.11) + '@babel/plugin-transform-modules-commonjs': 7.22.15(@babel/core@7.22.11) + '@babel/preset-env': 7.22.20(@babel/core@7.22.11) + '@babel/preset-flow': 7.22.15(@babel/core@7.22.11) + '@babel/preset-typescript': 7.21.4(@babel/core@7.22.11) + '@babel/register': 7.21.0(@babel/core@7.22.11) + babel-core: 7.0.0-bridge.0(@babel/core@7.22.11) chalk: 4.1.2 flow-parser: 0.216.1 graceful-fs: 4.2.11 @@ -32997,10 +34092,11 @@ packages: - supports-color dev: true - /jsdoc/4.0.2: + /jsdoc@4.0.2: resolution: {integrity: sha512-e8cIg2z62InH7azBBi3EsSEqrKx+nUtAS5bBcYTSpZFA+vhNPyhv8PTFZ0WsjOPDj04/dOLlm08EDcQJDqaGQg==} engines: {node: '>=12.0.0'} hasBin: true + requiresBuild: true dependencies: '@babel/parser': 7.22.16 '@jsdoc/salty': 0.2.5 @@ -33011,7 +34107,7 @@ packages: js2xmlparser: 4.0.2 klaw: 3.0.0 markdown-it: 12.3.2 - markdown-it-anchor: 8.6.7_2zb4u3vubltivolgu556vv4aom + markdown-it-anchor: 8.6.7(@types/markdown-it@12.2.3)(markdown-it@12.3.2) marked: 4.3.0 mkdirp: 1.0.4 requizzle: 0.2.4 @@ -33020,7 +34116,7 @@ packages: dev: false optional: true - /jsdom/16.7.0: + /jsdom@16.7.0: resolution: {integrity: sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==} engines: {node: '>=10'} peerDependencies: @@ -33061,7 +34157,7 @@ packages: - supports-color - utf-8-validate - /jsdom/20.0.3: + /jsdom@20.0.3: resolution: {integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==} engines: {node: '>=14'} peerDependencies: @@ -33102,100 +34198,100 @@ packages: - utf-8-validate dev: true - /jsesc/0.5.0: + /jsesc@0.5.0: resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} hasBin: true - /jsesc/2.5.2: + /jsesc@2.5.2: resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} engines: {node: '>=4'} hasBin: true - /json-bigint/1.0.0: + /json-bigint@1.0.0: resolution: {integrity: sha512-SiPv/8VpZuWbvLSMtTDU8hEfrZWg/mH/nV/b4o0CYbSxu1UIQPLdwKOCIyLQX+VIPO5vrLX3i8qtqFyhdPSUSQ==} dependencies: bignumber.js: 9.1.1 dev: false - /json-buffer/3.0.1: + /json-buffer@3.0.1: resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} - /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-parse-even-better-errors/3.0.0: + /json-parse-even-better-errors@3.0.0: resolution: {integrity: sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dev: true - /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==} - /json-stable-stringify-without-jsonify/1.0.1: + /json-stable-stringify-without-jsonify@1.0.1: resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} - /json-stringify-nice/1.1.4: + /json-stringify-nice@1.1.4: resolution: {integrity: sha512-5Z5RFW63yxReJ7vANgW6eZFGWaQvnPE3WNmZoOJrSkGju2etKA2L5rrOa1sm877TVTFt57A80BH1bArcmlLfPw==} dev: true - /json-stringify-safe/5.0.1: + /json-stringify-safe@5.0.1: resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==} - /json2mq/0.2.0: + /json2mq@0.2.0: resolution: {integrity: sha512-SzoRg7ux5DWTII9J2qkrZrqV1gt+rTaoufMxEzXbS26Uid0NwaJd123HcoB80TgubEppxxIGdNxCx50fEoEWQA==} dependencies: string-convert: 0.2.1 dev: false - /json5/1.0.2: + /json5@1.0.2: resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} hasBin: true dependencies: minimist: 1.2.8 - /json5/2.2.3: + /json5@2.2.3: resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} engines: {node: '>=6'} hasBin: true - /jsonc-parser/3.0.0: + /jsonc-parser@3.0.0: resolution: {integrity: sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==} dev: true - /jsonc-parser/3.2.0: + /jsonc-parser@3.2.0: resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==} - /jsonfile/4.0.0: + /jsonfile@4.0.0: resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} optionalDependencies: graceful-fs: 4.2.11 - /jsonfile/6.1.0: + /jsonfile@6.1.0: resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} dependencies: universalify: 2.0.0 optionalDependencies: graceful-fs: 4.2.11 - /jsonparse/1.3.1: + /jsonparse@1.3.1: resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} engines: {'0': node >= 0.2.0} - /jsonpointer/5.0.1: + /jsonpointer@5.0.1: resolution: {integrity: sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==} engines: {node: '>=0.10.0'} - /jsonwebtoken/9.0.0: + /jsonwebtoken@9.0.0: resolution: {integrity: sha512-tuGfYXxkQGDPnLJ7SibiQgVgeDgfbPq2k2ICcbgqW8WxWLBAxKQM/ZCu/IT8SOSwmaYl4dpTFCW5xZv7YbbWUw==} engines: {node: '>=12', npm: '>=6'} dependencies: @@ -33205,7 +34301,7 @@ packages: semver: 7.4.0 dev: false - /jsprim/1.4.2: + /jsprim@1.4.2: resolution: {integrity: sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==} engines: {node: '>=0.6.0'} dependencies: @@ -33214,7 +34310,7 @@ packages: json-schema: 0.4.0 verror: 1.10.0 - /jsprim/2.0.2: + /jsprim@2.0.2: resolution: {integrity: sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==} engines: {'0': node >=0.6.0} dependencies: @@ -33223,25 +34319,25 @@ packages: json-schema: 0.4.0 verror: 1.10.0 - /jsx-ast-utils/3.3.3: + /jsx-ast-utils@3.3.3: resolution: {integrity: sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==} engines: {node: '>=4.0'} dependencies: array-includes: 3.1.6 object.assign: 4.1.4 - /just-diff-apply/5.5.0: + /just-diff-apply@5.5.0: resolution: {integrity: sha512-OYTthRfSh55WOItVqwpefPtNt2VdKsq5AnAK6apdtR6yCH8pr0CmSr710J0Mf+WdQy7K/OzMy7K2MgAfdQURDw==} dev: true - /just-diff/5.2.0: + /just-diff@5.2.0: resolution: {integrity: sha512-6ufhP9SHjb7jibNFrNxyFZ6od3g+An6Ai9mhGRvcYe8UJlH0prseN64M+6ZBBUoKYHZsitDP42gAJ8+eVWr3lw==} dev: true - /just-extend/4.2.1: + /just-extend@4.2.1: resolution: {integrity: sha512-g3UB796vUFIY90VIv/WX3L2c8CS2MdWUww3CNrYmqza1Fg0DURc2K/O4YrnklBdQarSJ/y8JnJYDGc+1iumQjg==} - /jwa/1.4.1: + /jwa@1.4.1: resolution: {integrity: sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==} dependencies: buffer-equal-constant-time: 1.0.1 @@ -33249,7 +34345,7 @@ packages: safe-buffer: 5.2.1 dev: false - /jwa/2.0.0: + /jwa@2.0.0: resolution: {integrity: sha512-jrZ2Qx916EA+fq9cEAeCROWPTfCwi1IVHqT2tapuqLEVVDKFDENFw1oL+MwrTvH6msKxsd1YTDVw6uKEcsrLEA==} dependencies: buffer-equal-constant-time: 1.0.1 @@ -33257,13 +34353,13 @@ packages: safe-buffer: 5.2.1 dev: false - /jwks-rsa/3.0.1: + /jwks-rsa@3.0.1: resolution: {integrity: sha512-UUOZ0CVReK1QVU3rbi9bC7N5/le8ziUj0A2ef1Q0M7OPD2KvjEYizptqIxGIo6fSLYDkqBrazILS18tYuRc8gw==} engines: {node: '>=14'} dependencies: '@types/express': 4.17.17 '@types/jsonwebtoken': 9.0.2 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) jose: 4.13.1 limiter: 1.1.5 lru-memoizer: 2.2.0 @@ -33271,36 +34367,36 @@ packages: - supports-color dev: false - /jws/3.2.2: + /jws@3.2.2: resolution: {integrity: sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==} dependencies: jwa: 1.4.1 safe-buffer: 5.2.1 dev: false - /jws/4.0.0: + /jws@4.0.0: resolution: {integrity: sha512-KDncfTmOZoOMTFG4mBlG0qUIOlc03fmzH+ru6RgYVZhPkyiy/92Owlt/8UEN+a4TXR1FQetfIpJE8ApdvdVxTg==} dependencies: jwa: 2.0.0 safe-buffer: 5.2.1 dev: false - /jwt-decode/3.1.2: + /jwt-decode@3.1.2: resolution: {integrity: sha512-UfpWE/VZn0iP50d8cz9NrZLM9lSWhcJ+0Gt/nm4by88UL+J1SiKN8/5dkjMmbEzwL2CAe+67GsegCbIKtbp75A==} dev: false - /kareem/2.5.1: + /kareem@2.5.1: resolution: {integrity: sha512-7jFxRVm+jD+rkq3kY0iZDJfsO2/t4BBPeEb2qKn2lR/9KhuksYk5hxzfRYWMPV8P/x2d0kHD306YyWLzjjH+uA==} engines: {node: '>=12.0.0'} dev: false - /karma-chrome-launcher/3.2.0: + /karma-chrome-launcher@3.2.0: resolution: {integrity: sha512-rE9RkUPI7I9mAxByQWkGJFXfFD6lE4gC5nPuZdobf/QdTEJI6EU4yIay/cfU/xV4ZxlM5JiTv7zWYgA64NpS5Q==} dependencies: which: 1.3.1 dev: true - /karma-coverage/2.2.0: + /karma-coverage@2.2.0: resolution: {integrity: sha512-gPVdoZBNDZ08UCzdMHHhEImKrw1+PAOQOIiffv1YsvxFhBjqvo/SVXNk4tqn1SYqX0BJZT6S/59zgxiBe+9OuA==} engines: {node: '>=10.0.0'} dependencies: @@ -33314,7 +34410,7 @@ packages: - supports-color dev: true - /karma-jasmine-html-reporter/2.0.0_vl3unt3t2otf46m2vvwnwo5vau: + /karma-jasmine-html-reporter@2.0.0(jasmine-core@4.6.0)(karma-jasmine@5.1.0)(karma@6.4.1): resolution: {integrity: sha512-SB8HNNiazAHXM1vGEzf8/tSyEhkfxuDdhYdPBX2Mwgzt0OuF2gicApQ+uvXLID/gXyJQgvrM9+1/2SxZFUUDIA==} peerDependencies: jasmine-core: ^4.0.0 @@ -33323,10 +34419,10 @@ packages: dependencies: jasmine-core: 4.6.0 karma: 6.4.1 - karma-jasmine: 5.1.0_karma@6.4.1 + karma-jasmine: 5.1.0(karma@6.4.1) dev: true - /karma-jasmine/5.1.0_karma@6.4.1: + /karma-jasmine@5.1.0(karma@6.4.1): resolution: {integrity: sha512-i/zQLFrfEpRyQoJF9fsCdTMOF5c2dK7C7OmsuKg2D0YSsuZSfQDiLuaiktbuio6F2wiCsZSnSnieIQ0ant/uzQ==} engines: {node: '>=12'} peerDependencies: @@ -33336,13 +34432,13 @@ packages: karma: 6.4.1 dev: true - /karma-source-map-support/1.4.0: + /karma-source-map-support@1.4.0: resolution: {integrity: sha512-RsBECncGO17KAoJCYXjv+ckIz+Ii9NCi+9enk+rq6XC81ezYkb4/RHE6CTXdA7IOJqoF3wcaLfVG0CPmE5ca6A==} dependencies: source-map-support: 0.5.21 dev: true - /karma/6.4.1: + /karma@6.4.1: resolution: {integrity: sha512-Cj57NKOskK7wtFWSlMvZf459iX+kpYIPXmkNUzP2WAFcA7nhr/ALn5R7sw3w+1udFDcpMx/tuB8d5amgm3ijaA==} engines: {node: '>= 10'} hasBin: true @@ -33378,83 +34474,84 @@ packages: - utf-8-validate dev: true - /keyv/4.5.3: + /keyv@4.5.3: resolution: {integrity: sha512-QCiSav9WaX1PgETJ+SpNnx2PRRapJ/oRSXM4VO5OGYGSjrxbKPVFVhB3l2OCbLCk329N8qyAtsJjSjvVBWzEug==} dependencies: json-buffer: 3.0.1 - /kind-of/3.2.2: + /kind-of@3.2.2: resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==} engines: {node: '>=0.10.0'} dependencies: is-buffer: 1.1.6 - /kind-of/4.0.0: + /kind-of@4.0.0: resolution: {integrity: sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==} engines: {node: '>=0.10.0'} dependencies: is-buffer: 1.1.6 dev: true - /kind-of/5.1.0: + /kind-of@5.1.0: resolution: {integrity: sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==} engines: {node: '>=0.10.0'} dev: true - /kind-of/6.0.3: + /kind-of@6.0.3: resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} engines: {node: '>=0.10.0'} - /klaw/3.0.0: + /klaw@3.0.0: resolution: {integrity: sha512-0Fo5oir+O9jnXu5EefYbVK+mHMBeEVEy2cmctR1O1NECcCkPRreJKrS6Qt/j3KC2C148Dfo9i3pCmCMsdqGr0g==} + requiresBuild: true dependencies: graceful-fs: 4.2.11 dev: false optional: true - /kleur/3.0.3: + /kleur@3.0.3: resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} engines: {node: '>=6'} - /kleur/4.1.5: + /kleur@4.1.5: resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} engines: {node: '>=6'} dev: true - /klona/2.0.6: + /klona@2.0.6: resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==} engines: {node: '>= 8'} - /kuler/2.0.0: + /kuler@2.0.0: resolution: {integrity: sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==} dev: false - /language-subtag-registry/0.3.22: + /language-subtag-registry@0.3.22: resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==} - /language-tags/1.0.5: + /language-tags@1.0.5: resolution: {integrity: sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==} dependencies: language-subtag-registry: 0.3.22 - /languagedetect/1.3.0: + /languagedetect@1.3.0: resolution: {integrity: sha512-51kYBPdkA43WX6UwutmjV0ekmInJcqnS17Lk3SLTDzWwXHdgCeuDJjpkKY0FZvEmAR0p5nnjdmDttkR2p26ucQ==} engines: {node: '>= 0.4.8'} dev: false - /launchdarkly-eventsource/1.4.4: + /launchdarkly-eventsource@1.4.4: resolution: {integrity: sha512-GL+r2Y3WccJlhFyL2buNKel+9VaMnYpbE/FfCkOST5jSNSFodahlxtGyrE8o7R+Qhobyq0Ree4a7iafJDQi9VQ==} engines: {node: '>=0.12.0'} dev: false - /launchdarkly-js-client-sdk/3.1.3: + /launchdarkly-js-client-sdk@3.1.3: resolution: {integrity: sha512-/JR/ri8z3bEj9RFTTKDjd+con4F1MsWUea1MmBDtFj4gDA0l9NDm1KzhMKiIeoBdmB2rSaeFYe4CaYOEp8IryA==} dependencies: escape-string-regexp: 4.0.0 launchdarkly-js-sdk-common: 5.0.3 dev: false - /launchdarkly-js-sdk-common/5.0.3: + /launchdarkly-js-sdk-common@5.0.3: resolution: {integrity: sha512-wKG8UsVbPVq8+7eavgAm5CVmulQWN6Ddod2ZoA3euZ1zPvJPwIQ2GrOYaCJr3cFrrMIX+nQyBJHBHYxUAPcM+Q==} dependencies: base64-js: 1.5.1 @@ -33462,7 +34559,7 @@ packages: uuid: 8.3.2 dev: false - /launchdarkly-node-server-sdk/7.0.1: + /launchdarkly-node-server-sdk@7.0.1: resolution: {integrity: sha512-vliVBgoO3eZVBXl7LWE3hsB+8WEeyYS2Hf0BzgNx5yYrlFDHSAB2Ug+GEawgQEd9kxWESc3n5WyCn1sdMhG1xA==} engines: {node: '>= 12.0.0'} dependencies: @@ -33475,7 +34572,7 @@ packages: uuid: 8.3.2 dev: false - /launchdarkly-react-client-sdk/3.0.6_sfoxds7t5ydpegc3knd667wn6m: + /launchdarkly-react-client-sdk@3.0.6(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-r7gSshScugjnJB4lJ6mAOMKpV4Pj/wUks3tsRHdfeXgER9jPdxmZOAkm0besMjK0S7lfQdjxJ2KIXrh+Mn1sQA==} peerDependencies: react: ^16.6.3 || ^17.0.0 || ^18.0.0 @@ -33485,14 +34582,14 @@ packages: launchdarkly-js-client-sdk: 3.1.3 lodash.camelcase: 4.3.0 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /lazy-ass/1.6.0: + /lazy-ass@1.6.0: resolution: {integrity: sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==} engines: {node: '> 0.8'} - /lazy-universal-dotenv/4.0.0: + /lazy-universal-dotenv@4.0.0: resolution: {integrity: sha512-aXpZJRnTkpK6gQ/z4nk+ZBLd/Qdp118cvPruLSIQzQNRhKwEcdXCOzXuF55VDqIiuAaY3UGZ10DJtvZzDcvsxg==} engines: {node: '>=14.0.0'} dependencies: @@ -33500,23 +34597,23 @@ packages: dotenv: 16.3.1 dotenv-expand: 10.0.0 - /lazystream/1.0.1: + /lazystream@1.0.1: resolution: {integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==} engines: {node: '>= 0.6.3'} dependencies: readable-stream: 2.3.8 dev: false - /lcov-parse/1.0.0: + /lcov-parse@1.0.0: resolution: {integrity: sha512-aprLII/vPzuQvYZnDRU78Fns9I2Ag3gi4Ipga/hxnVMCZC8DnR2nI7XBqrPoywGfxqIx/DgarGvDJZAD3YBTgQ==} hasBin: true dev: true - /leac/0.6.0: + /leac@0.6.0: resolution: {integrity: sha512-y+SqErxb8h7nE/fiEX07jsbuhrpO9lL8eca7/Y1nuWV2moNlXhyd59iDGcRf6moVyDMbmTNzL40SUyrFU/yDpg==} dev: false - /lerna/5.6.2_@swc+core@1.3.49: + /lerna@5.6.2(@swc/core@1.3.49): resolution: {integrity: sha512-Y0yMPslvnBnTZi7Nrs/gDyYZYauNf61xWNCehISHIORxZmmpoluNkcWTfcyb47is5uJQCv5QJX5xKKubbs+a6w==} engines: {node: ^14.15.0 || >=16.0.0} hasBin: true @@ -33535,14 +34632,14 @@ packages: '@lerna/init': 5.6.2 '@lerna/link': 5.6.2 '@lerna/list': 5.6.2 - '@lerna/publish': 5.6.2_nx@15.9.2 + '@lerna/publish': 5.6.2(nx@15.9.2) '@lerna/run': 5.6.2 - '@lerna/version': 5.6.2_nx@15.9.2 - '@nrwl/devkit': 15.9.2_nx@15.9.2 + '@lerna/version': 5.6.2(nx@15.9.2) + '@nrwl/devkit': 15.9.2(nx@15.9.2) import-local: 3.1.0 inquirer: 8.2.5 npmlog: 6.0.2 - nx: 15.9.2_@swc+core@1.3.49 + nx: 15.9.2(@swc/core@1.3.49) typescript: 4.9.5 transitivePeerDependencies: - '@swc-node/register' @@ -33553,7 +34650,7 @@ packages: - supports-color dev: true - /less-loader/11.1.0_less@4.1.3+webpack@5.76.1: + /less-loader@11.1.0(less@4.1.3)(webpack@5.76.1): resolution: {integrity: sha512-C+uDBV7kS7W5fJlUjq5mPBeBVhYpTIm5gB09APT9o3n/ILeaXVsiSFTbZpTJCJwQ/Crczfn3DmfQFwxYusWFug==} engines: {node: '>= 14.15.0'} peerDependencies: @@ -33562,10 +34659,10 @@ packages: dependencies: klona: 2.0.6 less: 4.1.3 - webpack: 5.76.1 + webpack: 5.76.1(@swc/core@1.3.49)(esbuild@0.17.8) dev: true - /less-loader/4.1.0_less@4.1.3+webpack@5.78.0: + /less-loader@4.1.0(less@4.1.3)(webpack@5.78.0): resolution: {integrity: sha512-KNTsgCE9tMOM70+ddxp9yyt9iHqgmSs0yTZc5XH5Wo+g80RWRIYNqE58QJKm/yMud5wZEvz50ugRDuzVIkyahg==} engines: {node: '>= 4.8 < 5.0.0 || >= 5.10'} peerDependencies: @@ -33576,10 +34673,10 @@ packages: less: 4.1.3 loader-utils: 1.4.2 pify: 3.0.0 - webpack: 5.78.0_u5c4qderjagc6tepfyiby6xhau + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) dev: true - /less/4.1.3: + /less@4.1.3: resolution: {integrity: sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA==} engines: {node: '>=6'} hasBin: true @@ -33598,27 +34695,28 @@ packages: transitivePeerDependencies: - supports-color - /leven/3.1.0: + /leven@3.1.0: resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} engines: {node: '>=6'} - /levn/0.3.0: + /levn@0.3.0: resolution: {integrity: sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==} engines: {node: '>= 0.8.0'} + requiresBuild: true dependencies: prelude-ls: 1.1.2 type-check: 0.3.2 dev: false optional: true - /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 - /libnpmaccess/6.0.4: + /libnpmaccess@6.0.4: resolution: {integrity: sha512-qZ3wcfIyUoW0+qSFkMBovcTrSGJ3ZeyvpR7d5N9pEYv/kXs8sHP2wiqEIXBKLFrZlmM0kR0RJD7mtfLngtlLag==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: @@ -33631,7 +34729,7 @@ packages: - supports-color dev: true - /libnpmpublish/6.0.5: + /libnpmpublish@6.0.5: resolution: {integrity: sha512-LUR08JKSviZiqrYTDfywvtnsnxr+tOvBU0BF8H+9frt7HMvc6Qn6F8Ubm72g5hDTHbq8qupKfDvDAln2TVPvFg==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: @@ -33645,10 +34743,10 @@ packages: - supports-color dev: true - /libphonenumber-js/1.10.26: + /libphonenumber-js@1.10.26: resolution: {integrity: sha512-oB3l4J5gEhMV+ymmlIjWedsbCpsNRqbEZ/E/MpN2QVyinKNra6DcuXywxSk/72M3DZDoH/6kzurOq1erznBMwQ==} - /license-webpack-plugin/4.0.2_webpack@5.76.1: + /license-webpack-plugin@4.0.2(webpack@5.76.1): resolution: {integrity: sha512-771TFWFD70G1wLTC4oU2Cw4qvtmNrIw+wRvBtn+okgHl7slJVi7zfNcdmqDL72BojM30VNJ2UHylr1o77U37Jw==} peerDependencies: webpack: '*' @@ -33658,45 +34756,46 @@ packages: webpack-sources: optional: true dependencies: - webpack: 5.76.1 + webpack: 5.76.1(@swc/core@1.3.49)(esbuild@0.17.8) webpack-sources: 3.2.3 dev: true - /lie/3.1.1: + /lie@3.1.1: resolution: {integrity: sha512-RiNhHysUjhrDQntfYSfY4MU24coXXdEOgw9WGcKHNeEwffDYbF//u87M1EWaMGzuFoSbqW0C9C6lEEhDOAswfw==} dependencies: immediate: 3.0.6 dev: false - /lilconfig/2.1.0: + /lilconfig@2.1.0: resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} engines: {node: '>=10'} - /limiter/1.1.5: + /limiter@1.1.5: resolution: {integrity: sha512-FWWMIEOxz3GwUI4Ts/IvgVy6LPvoMPgjMdQ185nN6psJyBJ4yOpzqm695/h5umdLJg2vW3GR5iG11MAkR2AzJA==} dev: false - /lines-and-columns/1.2.4: + /lines-and-columns@1.2.4: resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} - /lines-and-columns/2.0.3: + /lines-and-columns@2.0.3: resolution: {integrity: sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - /linkify-it/3.0.3: + /linkify-it@3.0.3: resolution: {integrity: sha512-ynTsyrFSdE5oZ/O9GEf00kPngmOfVwazR5GKDq6EYfhlpFug3J2zybX56a2PRRpc9P+FuSoGNAwjlbDs9jJBPQ==} + requiresBuild: true dependencies: uc.micro: 1.0.6 dev: false optional: true - /linkify-it/4.0.1: + /linkify-it@4.0.1: resolution: {integrity: sha512-C7bfi1UZmoj8+PQx22XyeXCuBlokoyWQL5pWSP+EI6nzRylyThouddufc2c1NDIcP9k5agmN9fLpA7VNJfIiqw==} dependencies: uc.micro: 1.0.6 dev: true - /lint-staged/10.5.4: + /lint-staged@10.5.4: resolution: {integrity: sha512-EechC3DdFic/TdOPgj/RB3FicqE6932LTHCUm0Y2fsD9KGlLB+RwJl2q1IYBIvEsKzDOgn0D4gll+YxG5RsrKg==} hasBin: true dependencies: @@ -33704,11 +34803,11 @@ packages: cli-truncate: 2.1.0 commander: 6.2.1 cosmiconfig: 7.1.0 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) dedent: 0.7.0 enquirer: 2.3.6 execa: 4.1.0 - listr2: 3.14.0_enquirer@2.3.6 + listr2: 3.14.0(enquirer@2.3.6) log-symbols: 4.1.0 micromatch: 4.0.5 normalize-path: 3.0.0 @@ -33719,19 +34818,19 @@ packages: - supports-color dev: true - /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 - /listr-silent-renderer/1.1.1: + /listr-silent-renderer@1.1.1: resolution: {integrity: sha512-L26cIFm7/oZeSNVhWB6faeorXhMg4HNlb/dS/7jHhr708jxlXrtrBWo4YUxZQkc6dGoxEAe6J/D3juTRBUzjtA==} engines: {node: '>=4'} dev: true - /listr-update-renderer/0.5.0_listr@0.14.3: + /listr-update-renderer@0.5.0(listr@0.14.3): resolution: {integrity: sha512-tKRsZpKz8GSGqoI/+caPmfrypiaq+OQCbd+CovEC24uk1h952lVj5sC7SqyFUm+OaJ5HN/a1YLt5cit2FMNsFA==} engines: {node: '>=6'} peerDependencies: @@ -33748,7 +34847,7 @@ packages: strip-ansi: 3.0.1 dev: true - /listr-verbose-renderer/0.5.0: + /listr-verbose-renderer@0.5.0: resolution: {integrity: sha512-04PDPqSlsqIOaaaGZ+41vq5FejI9auqTInicFRndCBgE3bXG8D6W1I+mWhk+1nqbHmyhla/6BUrd5OSiHwKRXw==} engines: {node: '>=4'} dependencies: @@ -33758,25 +34857,7 @@ packages: figures: 2.0.0 dev: true - /listr/0.14.3: - resolution: {integrity: sha512-RmAl7su35BFd/xoMamRjpIE4j3v+L28o8CT5YhAXQJm1fD+1l9ngXY8JAQRJ+tFK2i5njvi0iRUKV09vPwA0iA==} - engines: {node: '>=6'} - dependencies: - '@samverschueren/stream-to-observable': 0.3.1_rxjs@6.6.7 - is-observable: 1.1.0 - is-promise: 2.2.2 - is-stream: 1.1.0 - listr-silent-renderer: 1.1.1 - listr-update-renderer: 0.5.0_listr@0.14.3 - listr-verbose-renderer: 0.5.0 - p-map: 2.1.0 - rxjs: 6.6.7 - transitivePeerDependencies: - - zen-observable - - zenObservable - dev: true - - /listr2/3.14.0_enquirer@2.3.6: + /listr2@3.14.0(enquirer@2.3.6): resolution: {integrity: sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==} engines: {node: '>=10.0.0'} peerDependencies: @@ -33795,7 +34876,25 @@ packages: through: 2.3.8 wrap-ansi: 7.0.0 - /little-state-machine/4.8.0_react@17.0.2: + /listr@0.14.3: + resolution: {integrity: sha512-RmAl7su35BFd/xoMamRjpIE4j3v+L28o8CT5YhAXQJm1fD+1l9ngXY8JAQRJ+tFK2i5njvi0iRUKV09vPwA0iA==} + engines: {node: '>=6'} + dependencies: + '@samverschueren/stream-to-observable': 0.3.1(rxjs@6.6.7) + is-observable: 1.1.0 + is-promise: 2.2.2 + is-stream: 1.1.0 + listr-silent-renderer: 1.1.1 + listr-update-renderer: 0.5.0(listr@0.14.3) + listr-verbose-renderer: 0.5.0 + p-map: 2.1.0 + rxjs: 6.6.7 + transitivePeerDependencies: + - zen-observable + - zenObservable + dev: true + + /little-state-machine@4.8.0(react@17.0.2): resolution: {integrity: sha512-xfi5+iDxTLhu0hbnNubUs+qoQQqxhtEZeObP5ELjUlHnl74bbasY7mOonsGQrAouyrbag3ebNLSse5xX1T7buQ==} peerDependencies: react: ^16.8.0 || ^17 || ^18 @@ -33803,7 +34902,7 @@ packages: react: 17.0.2 dev: false - /load-json-file/4.0.0: + /load-json-file@4.0.0: resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==} engines: {node: '>=4'} dependencies: @@ -33813,7 +34912,7 @@ packages: strip-bom: 3.0.0 dev: true - /load-json-file/6.2.0: + /load-json-file@6.2.0: resolution: {integrity: sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ==} engines: {node: '>=8'} dependencies: @@ -33823,11 +34922,11 @@ packages: type-fest: 0.6.0 dev: true - /loader-runner/4.3.0: + /loader-runner@4.3.0: resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==} engines: {node: '>=6.11.5'} - /loader-utils/1.4.2: + /loader-utils@1.4.2: resolution: {integrity: sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==} engines: {node: '>=4.0.0'} dependencies: @@ -33835,7 +34934,7 @@ packages: emojis-list: 3.0.0 json5: 1.0.2 - /loader-utils/2.0.4: + /loader-utils@2.0.4: resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==} engines: {node: '>=8.9.0'} dependencies: @@ -33843,22 +34942,22 @@ packages: emojis-list: 3.0.0 json5: 2.2.3 - /loader-utils/3.2.1: + /loader-utils@3.2.1: resolution: {integrity: sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==} engines: {node: '>= 12.13.0'} - /local-pkg/0.4.1: + /local-pkg@0.4.1: resolution: {integrity: sha512-lL87ytIGP2FU5PWwNDo0w3WhIo2gopIAxPg9RxDYF7m4rr5ahuZxP22xnJHIvaLTe4Z9P6uKKY2UHiwyB4pcrw==} engines: {node: '>=14'} dev: false - /localforage/1.10.0: + /localforage@1.10.0: resolution: {integrity: sha512-14/H1aX7hzBBmmh7sGPd+AOMkkIrHM3Z1PAyGgZigA1H1p5O5ANnMyWzvpAETtG68/dC4pC0ncy3+PPGzXZHPg==} dependencies: lie: 3.1.1 dev: false - /locate-path/2.0.0: + /locate-path@2.0.0: resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==} engines: {node: '>=4'} dependencies: @@ -33866,183 +34965,183 @@ packages: path-exists: 3.0.0 dev: true - /locate-path/3.0.0: + /locate-path@3.0.0: resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==} engines: {node: '>=6'} dependencies: p-locate: 3.0.0 path-exists: 3.0.0 - /locate-path/5.0.0: + /locate-path@5.0.0: resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} engines: {node: '>=8'} dependencies: p-locate: 4.1.0 - /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 - /locate-path/7.2.0: + /locate-path@7.2.0: resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: p-locate: 6.0.0 dev: false - /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==} - /lodash.capitalize/4.2.1: + /lodash.capitalize@4.2.1: resolution: {integrity: sha512-kZzYOKspf8XVX5AvmQF94gQW0lejFVgb80G85bU4ZWzoJ6C03PQg3coYAUpSTpQWelrZELd3XWgHzw4Ck5kaIw==} - /lodash.chunk/4.2.0: + /lodash.chunk@4.2.0: resolution: {integrity: sha512-ZzydJKfUHJwHa+hF5X66zLFCBrWn5GeF28OHEr4WVWtNDXlQ/IjWKPBiikqKo2ne0+v6JgCgJ0GzJp8k8bHC7w==} dev: true - /lodash.clonedeep/4.5.0: + /lodash.clonedeep@4.5.0: resolution: {integrity: sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==} dev: false - /lodash.debounce/4.0.8: + /lodash.debounce@4.0.8: resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} - /lodash.defaults/4.2.0: + /lodash.defaults@4.2.0: resolution: {integrity: sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==} - /lodash.difference/4.5.0: + /lodash.difference@4.5.0: resolution: {integrity: sha512-dS2j+W26TQ7taQBGN8Lbbq04ssV3emRw4NY58WErlTO29pIqS0HmoT5aJ9+TUQ1N3G+JOZSji4eugsWwGp9yPA==} dev: false - /lodash.escaperegexp/4.1.2: + /lodash.escaperegexp@4.1.2: resolution: {integrity: sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw==} dev: true - /lodash.flatten/4.4.0: + /lodash.flatten@4.4.0: resolution: {integrity: sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g==} dev: false - /lodash.flattendeep/4.4.0: + /lodash.flattendeep@4.4.0: resolution: {integrity: sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==} dev: true - /lodash.flow/3.5.0: + /lodash.flow@3.5.0: resolution: {integrity: sha512-ff3BX/tSioo+XojX4MOsOMhJw0nZoUEF011LX8g8d3gvjVbxd89cCio4BCXronjxcTUIJUoqKEUA+n4CqvvRPw==} - /lodash.get/4.4.2: + /lodash.get@4.4.2: resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==} - /lodash.isarguments/3.1.0: + /lodash.isarguments@3.1.0: resolution: {integrity: sha512-chi4NHZlZqZD18a0imDHnZPrDeBbTtVN7GXMwuGdRH9qotxAjYs3aVLKc7zNOG9eddR5Ksd8rvFEBc9SsggPpg==} - /lodash.isequal/4.5.0: + /lodash.isequal@4.5.0: resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==} - /lodash.isfunction/3.0.9: + /lodash.isfunction@3.0.9: resolution: {integrity: sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw==} dev: true - /lodash.ismatch/4.4.0: + /lodash.ismatch@4.4.0: resolution: {integrity: sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==} dev: true - /lodash.isplainobject/4.0.6: + /lodash.isplainobject@4.0.6: resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==} - /lodash.isstring/4.0.1: + /lodash.isstring@4.0.1: resolution: {integrity: sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==} - /lodash.kebabcase/4.1.1: + /lodash.kebabcase@4.1.1: resolution: {integrity: sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==} dev: true - /lodash.map/4.6.0: + /lodash.map@4.6.0: resolution: {integrity: sha512-worNHGKLDetmcEYDvh2stPCrrQRkP20E4l0iIS7F8EvzMqBBi7ltvFN5m1HvTf1P7Jk1txKhvFcmYsCr8O2F1Q==} dev: true - /lodash.memoize/4.1.2: + /lodash.memoize@4.1.2: resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==} - /lodash.merge/4.6.2: + /lodash.merge@4.6.2: resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} - /lodash.mergewith/4.6.2: + /lodash.mergewith@4.6.2: resolution: {integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==} dev: true - /lodash.once/4.1.1: + /lodash.once@4.1.1: resolution: {integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==} - /lodash.set/4.3.2: + /lodash.set@4.3.2: resolution: {integrity: sha512-4hNPN5jlm/N/HLMCO43v8BXKq9Z7QdAGc/VGrRD61w8gN9g/6jF9A4L1pbUgBLCffi0w9VsXfTOij5x8iTyFvg==} dev: false - /lodash.snakecase/4.1.1: + /lodash.snakecase@4.1.1: resolution: {integrity: sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==} dev: true - /lodash.sortby/4.7.0: + /lodash.sortby@4.7.0: resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==} - /lodash.startcase/4.4.0: + /lodash.startcase@4.4.0: resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==} dev: true - /lodash.truncate/4.4.2: + /lodash.truncate@4.4.2: resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==} dev: true - /lodash.union/4.6.0: + /lodash.union@4.6.0: resolution: {integrity: sha512-c4pB2CdGrGdjMKYLA+XiRDO7Y0PRQbm/Gzg8qMj+QH+pFVAoTp5sBpO0odL3FjoPCGjK96p6qsP+yQoiLoOBcw==} dev: false - /lodash.uniq/4.5.0: + /lodash.uniq@4.5.0: resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} - /lodash.uniqby/4.7.0: + /lodash.uniqby@4.7.0: resolution: {integrity: sha512-e/zcLx6CSbmaEgFHCA7BnoQKyCtKMxnuWrJygbwPs/AIn+IMKl66L8/s+wBUn5LRw2pZx3bUHibiV1b6aTWIww==} dev: true - /lodash.upperfirst/4.3.1: + /lodash.upperfirst@4.3.1: resolution: {integrity: sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==} dev: true - /lodash/4.17.21: + /lodash@4.17.21: resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} - /log-driver/1.2.7: + /log-driver@1.2.7: resolution: {integrity: sha512-U7KCmLdqsGHBLeWqYlFA0V0Sl6P08EE1ZrmA9cxjUE0WVqT9qnyVDPz1kzpFEP0jdJuFnasWIfSd7fsaNXkpbg==} engines: {node: '>=0.8.6'} dev: true - /log-symbols/1.0.2: + /log-symbols@1.0.2: resolution: {integrity: sha512-mmPrW0Fh2fxOzdBbFv4g1m6pR72haFLPJ2G5SJEELf1y+iaQrDG6cWCPjy54RHYbZAt7X+ls690Kw62AdWXBzQ==} engines: {node: '>=0.10.0'} dependencies: chalk: 1.1.3 dev: true - /log-symbols/4.0.0: + /log-symbols@4.0.0: resolution: {integrity: sha512-FN8JBzLx6CzeMrB0tg6pqlGU1wCrXW+ZXGH481kfsBqer0hToTIiHdjH4Mq8xJUbvATujKCvaREGWpGUionraA==} engines: {node: '>=10'} dependencies: chalk: 4.1.2 dev: true - /log-symbols/4.1.0: + /log-symbols@4.1.0: resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} engines: {node: '>=10'} dependencies: chalk: 4.1.2 is-unicode-supported: 0.1.0 - /log-update/2.3.0: + /log-update@2.3.0: resolution: {integrity: sha512-vlP11XfFGyeNQlmEn9tJ66rEW1coA/79m5z6BCkudjbAGE83uhAcGYrBFwfs3AdLiLzGRusRPAbSPK9xZteCmg==} engines: {node: '>=4'} dependencies: @@ -34051,7 +35150,7 @@ packages: wrap-ansi: 3.0.1 dev: true - /log-update/4.0.0: + /log-update@4.0.0: resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==} engines: {node: '>=10'} dependencies: @@ -34060,12 +35159,12 @@ packages: slice-ansi: 4.0.0 wrap-ansi: 6.2.0 - /log4js/6.9.1: + /log4js@6.9.1: resolution: {integrity: sha512-1somDdy9sChrr9/f4UlzhdaGfDR2c/SaD2a4T7qEkG4jTS57/B3qmnjLYePwQ8cqWnUHZI0iAKxMBpCZICiZ2g==} engines: {node: '>=8.0'} dependencies: date-format: 4.0.14 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) flatted: 3.2.7 rfdc: 1.3.0 streamroller: 3.1.5 @@ -34073,7 +35172,7 @@ packages: - supports-color dev: true - /logform/2.5.1: + /logform@2.5.1: resolution: {integrity: sha512-9FyqAm9o9NKKfiAKfZoYo9bGXXuwMkxQiQttkT4YjjVtQVIQtK6LmVtlxmCaFswo6N4AfEkHqZTV0taDtPotNg==} dependencies: '@colors/colors': 1.5.0 @@ -34084,7 +35183,7 @@ packages: triple-beam: 1.3.0 dev: false - /logrocket-react/5.0.1_yo3aqogrrsw23ory4s7zu7wcpm: + /logrocket-react@5.0.1(logrocket@3.0.1)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-d5RAi1giur9Yv7/lDK/c2S1hviopN5K1XMMpfpSFRDG3Rr/j5RmGuvNHdXNTJUwGuxTVrpnKUOB43ceQMJfO1Q==} peerDependencies: logrocket: '>=2.0' @@ -34093,33 +35192,33 @@ packages: dependencies: logrocket: 3.0.1 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /logrocket/3.0.1: + /logrocket@3.0.1: resolution: {integrity: sha512-jOWG+jEzobKVxGytzZ+4KGm2kiMQMRTHab2uDWQyVZcHfEF38BlCH1yjQVY4LCmuQUwZitP9biMzJZnyUQ0dtQ==} dev: false - /long/5.2.3: + /long@5.2.3: resolution: {integrity: sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==} dev: false - /longest-streak/3.1.0: + /longest-streak@3.1.0: resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} dev: true - /longest/2.0.1: + /longest@2.0.1: resolution: {integrity: sha512-Ajzxb8CM6WAnFjgiloPsI3bF+WCxcvhdIG3KNA2KN962+tdBsHcuQ4k4qX/EcS/2CRkcc0iAkR956Nib6aXU/Q==} engines: {node: '>=0.10.0'} dev: true - /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 - /loud-rejection/1.6.0: + /loud-rejection@1.6.0: resolution: {integrity: sha512-RPNliZOFkqFumDhvYqOaNY4Uz9oJM2K9tC6JWsJJsNdhuONW4LQHRBpb0qf4pJApVffI5N39SwzWZJuEhfd7eQ==} engines: {node: '>=0.10.0'} dependencies: @@ -34127,135 +35226,135 @@ packages: signal-exit: 3.0.7 dev: true - /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/1.0.2: + /lower-case-first@1.0.2: resolution: {integrity: sha512-UuxaYakO7XeONbKrZf5FEgkantPf5DUqDayzP5VXZrtRPdH86s4kN47I8B3TW10S4QKiE3ziHNf3kRN//okHjA==} dependencies: lower-case: 1.1.4 dev: true - /lower-case/1.1.4: + /lower-case@1.1.4: resolution: {integrity: sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==} dev: true - /lower-case/2.0.2: + /lower-case@2.0.2: resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} dependencies: tslib: 2.6.2 - /lowlight/1.20.0: + /lowlight@1.20.0: resolution: {integrity: sha512-8Ktj+prEb1RoCPkEOrPMYUN/nCggB7qAWe3a7OpMjWQkh3l2RD5wKRQ+o8Q8YuI9RG/xs95waaI/E6ym/7NsTw==} dependencies: fault: 1.0.4 highlight.js: 10.7.3 dev: false - /lru-cache/10.0.1: + /lru-cache@10.0.1: resolution: {integrity: sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g==} engines: {node: 14 || >=16.14} - /lru-cache/4.0.2: + /lru-cache@4.0.2: resolution: {integrity: sha512-uQw9OqphAGiZhkuPlpFGmdTU2tEuhxTourM/19qGJrxBPHAr/f8BT1a0i/lOclESnGatdJG/UCkP9kZB/Lh1iw==} dependencies: pseudomap: 1.0.2 yallist: 2.1.2 dev: false - /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 - /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.18.3: + /lru-cache@7.18.3: resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==} engines: {node: '>=12'} - /lru-cache/9.0.1: + /lru-cache@9.0.1: resolution: {integrity: sha512-C8QsKIN1UIXeOs3iWmiZ1lQY+EnKDojWd37fXy1aSbJvH4iSma1uy2OWuoB3m4SYRli5+CUjDv3Dij5DVoetmg==} engines: {node: 14 || >=16.14} dev: true - /lru-memoizer/2.2.0: + /lru-memoizer@2.2.0: resolution: {integrity: sha512-QfOZ6jNkxCcM/BkIPnFsqDhtrazLRsghi9mBwFAzol5GCvj4EkFT899Za3+QwikCg5sRX8JstioBDwOxEyzaNw==} dependencies: lodash.clonedeep: 4.5.0 lru-cache: 4.0.2 dev: false - /lru_map/0.3.3: + /lru_map@0.3.3: resolution: {integrity: sha512-Pn9cox5CsMYngeDbmChANltQl+5pi6XmTrraMSzhPmMBbmgcxmqWry0U3PGapCU1yB4/LqCcom7qhHZiF/jGfQ==} dev: false - /lunr/2.3.9: + /lunr@2.3.9: resolution: {integrity: sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow==} dev: true - /luxon/3.3.0: + /luxon@3.3.0: resolution: {integrity: sha512-An0UCfG/rSiqtAIiBPO0Y9/zAnHUZxAMiCpTd5h2smgsj7GGmcenvrvww2cqNA8/4A5ZrD1gJpHN2mIHZQF+Mg==} engines: {node: '>=12'} dev: false - /lz-string/1.5.0: + /lz-string@1.5.0: resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==} hasBin: true - /macos-release/2.5.1: + /macos-release@2.5.1: resolution: {integrity: sha512-DXqXhEM7gW59OjZO8NIjBCz9AQ1BEMrfiOAl4AYByHCtVHRF4KoGNO8mqQeM8lRCtQe/UnJ4imO/d2HdkKsd+A==} 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.27.0: + /magic-string@0.27.0: resolution: {integrity: sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==} engines: {node: '>=12'} dependencies: '@jridgewell/sourcemap-codec': 1.4.15 dev: true - /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.15 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.15 dev: true - /magic-string/0.30.1: + /magic-string@0.30.1: resolution: {integrity: sha512-mbVKXPmS0z0G4XqFDCTllmDQ6coZzn94aMlb0o/A4HEHJCKcanlDZwYJgwnkmgD3jyWhUgj9VsPrfd972yPffA==} engines: {node: '>=12'} dependencies: '@jridgewell/sourcemap-codec': 1.4.15 dev: true - /mailersend/1.4.6: + /mailersend@1.4.6: resolution: {integrity: sha512-H01TEAQIS2xciqow401yNjvFeooCH0BHF6DuSl7H9wsiP2GEvjeuiMaeSdUOGNd2N45t+qyKCuBeyxu7J0xWEg==} dependencies: isomorphic-unfetch: 3.1.0 @@ -34263,7 +35362,7 @@ packages: - encoding dev: false - /mailgun.js/8.2.1: + /mailgun.js@8.2.1: resolution: {integrity: sha512-iKHCMehdUcWzBAp8KU2idLP7AbsTxQ8DjJev4Gvm430Dujul+ZkzKPgn40uYpb9BXGL5l8/w5jpf2pvw51df/w==} dependencies: axios: 1.4.0 @@ -34273,7 +35372,7 @@ packages: - debug dev: false - /mailparser/0.6.2: + /mailparser@0.6.2: resolution: {integrity: sha512-5Z5nv7TYojrdrKHjhCOKKFaYs0Lo7PCja4RnLZ2kFE1Fskqg+rRVwFpG9Oqx3YjosGM2QEItjHo7+Jc9qvxGqw==} deprecated: Mailparser versions older than v2.3.0 are deprecated dependencies: @@ -34283,7 +35382,7 @@ packages: uue: 3.1.2 dev: false - /mailtrap/3.2.0: + /mailtrap@3.2.0: resolution: {integrity: sha512-G5CwjtVqakHVvTZtPsHp9YTr0PdvmcKTT8leQRIP/ZqhG9nL+F2VifKZggdUSu25uMtCrnEKc3HwWXdzZcjGvQ==} engines: {node: '>=16.20.1', yarn: '>=1.22.17'} peerDependencies: @@ -34300,23 +35399,23 @@ packages: - debug dev: false - /make-dir/2.1.0: + /make-dir@2.1.0: resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} engines: {node: '>=6'} dependencies: pify: 4.0.1 semver: 5.7.2 - /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.1 - /make-error/1.3.6: + /make-error@1.3.6: resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} - /make-fetch-happen/10.2.1: + /make-fetch-happen@10.2.1: resolution: {integrity: sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: @@ -34341,7 +35440,7 @@ packages: - supports-color dev: true - /make-fetch-happen/11.0.3: + /make-fetch-happen@11.0.3: resolution: {integrity: sha512-oPLh5m10lRNNZDjJ2kP8UpboUx2uFXVaVweVe/lWut4iHWcQEmfqSVJt2ihZsFI8HbpwyyocaXbCAWf0g1ukIA==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: @@ -34365,54 +35464,55 @@ packages: - supports-color dev: true - /makeerror/1.0.12: + /makeerror@1.0.12: resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==} dependencies: tmpl: 1.0.5 - /map-age-cleaner/0.1.3: + /map-age-cleaner@0.1.3: resolution: {integrity: sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==} engines: {node: '>=6'} dependencies: p-defer: 1.0.0 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/2.0.0: + /map-obj@2.0.0: resolution: {integrity: sha512-TzQSV2DiMYgoF5RycneKVUzIa9bQsj/B3tTgsE3dOGqlzHnGIDaC7XBE7grnA+8kZPnfqSGFe95VHc2oc0VFUQ==} engines: {node: '>=4'} dev: true - /map-obj/4.3.0: + /map-obj@4.3.0: resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==} engines: {node: '>=8'} dev: true - /map-or-similar/1.5.0: + /map-or-similar@1.5.0: resolution: {integrity: sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==} - /map-stream/0.0.7: + /map-stream@0.0.7: resolution: {integrity: sha512-C0X0KQmGm3N2ftbTGBhSyuydQ+vV1LC3f3zPvT3RXHXNZrvfPZcoXp/N5DOa8vedX/rTMm2CjTtivFg2STJMRQ==} dev: false - /map-visit/1.0.0: + /map-visit@1.0.0: resolution: {integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==} engines: {node: '>=0.10.0'} dependencies: object-visit: 1.0.1 dev: true - /markdown-it-anchor/8.6.7_2zb4u3vubltivolgu556vv4aom: + /markdown-it-anchor@8.6.7(@types/markdown-it@12.2.3)(markdown-it@12.3.2): resolution: {integrity: sha512-FlCHFwNnutLgVTflOYHPW2pPcl2AACqVzExlkGQNsi4CJgqOHN7YTgDd4LuhgN1BFO3TS0vLAruV1Td6dwWPJA==} + requiresBuild: true peerDependencies: '@types/markdown-it': '*' markdown-it: '*' @@ -34422,9 +35522,10 @@ packages: dev: false optional: true - /markdown-it/12.3.2: + /markdown-it@12.3.2: resolution: {integrity: sha512-TchMembfxfNVpHkbtriWltGWc+m3xszaRD0CZup7GFFhzIgQqxIfn3eGj1yZpfuflzPvfkt611B2Q/Bsk1YnGg==} hasBin: true + requiresBuild: true dependencies: argparse: 2.0.1 entities: 2.1.0 @@ -34434,7 +35535,7 @@ packages: dev: false optional: true - /markdown-it/13.0.1: + /markdown-it@13.0.1: resolution: {integrity: sha512-lTlxriVoy2criHP0JKRhO2VDG9c2ypWCsT237eDiLqi09rmbKoUetyGHq2uOIRoRS//kfoJckS0eUzzkDR+k2Q==} hasBin: true dependencies: @@ -34445,11 +35546,11 @@ packages: uc.micro: 1.0.6 dev: true - /markdown-table/3.0.3: + /markdown-table@3.0.3: resolution: {integrity: sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==} dev: true - /markdown-to-jsx/7.3.2_react@17.0.2: + /markdown-to-jsx@7.3.2(react@17.0.2): resolution: {integrity: sha512-B+28F5ucp83aQm+OxNrPkS8z0tMKaeHiy0lHJs3LqCyDQFtWuenaIrkaVTgAm1pf1AU85LXltva86hlaT17i8Q==} engines: {node: '>= 10'} peerDependencies: @@ -34457,7 +35558,7 @@ packages: dependencies: react: 17.0.2 - /markdownlint-cli/0.33.0: + /markdownlint-cli@0.33.0: resolution: {integrity: sha512-zMK1oHpjYkhjO+94+ngARiBBrRDEUMzooDHBAHtmEIJ9oYddd9l3chCReY2mPlecwH7gflQp1ApilTo+o0zopQ==} engines: {node: '>=14'} hasBin: true @@ -34473,14 +35574,14 @@ packages: run-con: 1.2.11 dev: true - /markdownlint/0.27.0: + /markdownlint@0.27.0: resolution: {integrity: sha512-HtfVr/hzJJmE0C198F99JLaeada+646B5SaG2pVoEakLFI6iRGsvMqrnnrflq8hm1zQgwskEgqSnhDW11JBp0w==} engines: {node: '>=14.18.0'} dependencies: markdown-it: 13.0.1 dev: true - /marked-terminal/5.1.1_marked@4.3.0: + /marked-terminal@5.1.1(marked@4.3.0): resolution: {integrity: sha512-+cKTOx9P4l7HwINYhzbrBSyzgxO2HaHKGZGuB1orZsMIgXYaJyfidT81VXRdpelW/PcHEWxywscePVgI/oUF6g==} engines: {node: '>=14.13.1 || >=16.0.0'} peerDependencies: @@ -34495,20 +35596,20 @@ packages: supports-hyperlinks: 2.3.0 dev: true - /marked/4.3.0: + /marked@4.3.0: resolution: {integrity: sha512-PRsaiG84bK+AMvxziE/lCFss8juXjNaWzVbN5tXAm4XjeaS9NAHhop+PjQxz2A9h8Q4M/xGmzP8vqNwy6JeK0A==} engines: {node: '>= 12'} hasBin: true - /material-colors/1.2.6: + /material-colors@1.2.6: resolution: {integrity: sha512-6qE4B9deFBIa9YSpOc9O0Sgc43zTeVYbgDT5veRKSlB2+ZuHNoVVxA1L/ckMUayV9Ay9y7Z/SZCLcGteW9i7bg==} dev: false - /math-random/1.0.4: + /math-random@1.0.4: resolution: {integrity: sha512-rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A==} dev: true - /md5/2.3.0: + /md5@2.3.0: resolution: {integrity: sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==} dependencies: charenc: 0.0.2 @@ -34516,12 +35617,12 @@ packages: is-buffer: 1.1.6 dev: false - /mdast-util-definitions/4.0.0: + /mdast-util-definitions@4.0.0: resolution: {integrity: sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==} dependencies: unist-util-visit: 2.0.3 - /mdast-util-find-and-replace/2.2.2: + /mdast-util-find-and-replace@2.2.2: resolution: {integrity: sha512-MTtdFRz/eMDHXzeK6W3dO7mXUlF82Gom4y0oOgvHhh/HXZAGvIQDUvQ0SuUx+j2tv44b8xTHOm8K/9OoRFnXKw==} dependencies: '@types/mdast': 3.0.11 @@ -34530,7 +35631,7 @@ packages: unist-util-visit-parents: 5.1.3 dev: true - /mdast-util-from-markdown/1.3.1: + /mdast-util-from-markdown@1.3.1: resolution: {integrity: sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==} dependencies: '@types/mdast': 3.0.11 @@ -34549,7 +35650,7 @@ packages: - supports-color dev: true - /mdast-util-gfm-autolink-literal/1.0.3: + /mdast-util-gfm-autolink-literal@1.0.3: resolution: {integrity: sha512-My8KJ57FYEy2W2LyNom4n3E7hKTuQk/0SES0u16tjA9Z3oFkF4RrC/hPAPgjlSpezsOvI8ObcXcElo92wn5IGA==} dependencies: '@types/mdast': 3.0.11 @@ -34558,7 +35659,7 @@ packages: micromark-util-character: 1.2.0 dev: true - /mdast-util-gfm-footnote/1.0.2: + /mdast-util-gfm-footnote@1.0.2: resolution: {integrity: sha512-56D19KOGbE00uKVj3sgIykpwKL179QsVFwx/DCW0u/0+URsryacI4MAdNJl0dh+u2PSsD9FtxPFbHCzJ78qJFQ==} dependencies: '@types/mdast': 3.0.11 @@ -34566,14 +35667,14 @@ packages: micromark-util-normalize-identifier: 1.1.0 dev: true - /mdast-util-gfm-strikethrough/1.0.3: + /mdast-util-gfm-strikethrough@1.0.3: resolution: {integrity: sha512-DAPhYzTYrRcXdMjUtUjKvW9z/FNAMTdU0ORyMcbmkwYNbKocDpdk+PX1L1dQgOID/+vVs1uBQ7ElrBQfZ0cuiQ==} dependencies: '@types/mdast': 3.0.11 mdast-util-to-markdown: 1.5.0 dev: true - /mdast-util-gfm-table/1.0.7: + /mdast-util-gfm-table@1.0.7: resolution: {integrity: sha512-jjcpmNnQvrmN5Vx7y7lEc2iIOEytYv7rTvu+MeyAsSHTASGCCRA79Igg2uKssgOs1i1po8s3plW0sTu1wkkLGg==} dependencies: '@types/mdast': 3.0.11 @@ -34584,14 +35685,14 @@ packages: - supports-color dev: true - /mdast-util-gfm-task-list-item/1.0.2: + /mdast-util-gfm-task-list-item@1.0.2: resolution: {integrity: sha512-PFTA1gzfp1B1UaiJVyhJZA1rm0+Tzn690frc/L8vNX1Jop4STZgOE6bxUhnzdVSB+vm2GU1tIsuQcA9bxTQpMQ==} dependencies: '@types/mdast': 3.0.11 mdast-util-to-markdown: 1.5.0 dev: true - /mdast-util-gfm/2.0.2: + /mdast-util-gfm@2.0.2: resolution: {integrity: sha512-qvZ608nBppZ4icQlhQQIAdc6S3Ffj9RGmzwUKUWuEICFnd1LVkN3EktF7ZHAgfcEdvZB5owU9tQgt99e2TlLjg==} dependencies: mdast-util-from-markdown: 1.3.1 @@ -34605,14 +35706,14 @@ packages: - supports-color dev: true - /mdast-util-phrasing/3.0.1: + /mdast-util-phrasing@3.0.1: resolution: {integrity: sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==} dependencies: '@types/mdast': 3.0.11 unist-util-is: 5.2.1 dev: true - /mdast-util-to-markdown/1.5.0: + /mdast-util-to-markdown@1.5.0: resolution: {integrity: sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==} dependencies: '@types/mdast': 3.0.11 @@ -34625,38 +35726,38 @@ packages: zwitch: 2.0.4 dev: true - /mdast-util-to-string/1.1.0: + /mdast-util-to-string@1.1.0: resolution: {integrity: sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==} - /mdast-util-to-string/3.2.0: + /mdast-util-to-string@3.2.0: resolution: {integrity: sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==} dependencies: '@types/mdast': 3.0.11 dev: true - /mdn-data/2.0.14: + /mdn-data@2.0.14: resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==} - /mdn-data/2.0.4: + /mdn-data@2.0.4: resolution: {integrity: sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==} - /mdurl/1.0.1: + /mdurl@1.0.1: resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==} - /meant/1.0.3: + /meant@1.0.3: resolution: {integrity: sha512-88ZRGcNxAq4EH38cQ4D85PM57pikCwS8Z99EWHODxN7KBY+UuPiqzRTtZzS8KTXO/ywSWbdjjJST2Hly/EQxLw==} - /media-typer/0.3.0: + /media-typer@0.3.0: resolution: {integrity: sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=} 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 - /mem/8.1.1: + /mem@8.1.1: resolution: {integrity: sha512-qFCFUDs7U3b8mBDPyz5EToEKoAkgCzqquIgi9nkkR9bixxOVOre+09lbuH7+9Kn2NFpm56M3GUWVbU2hQgdACA==} engines: {node: '>=10'} dependencies: @@ -34664,32 +35765,32 @@ packages: mimic-fn: 3.1.0 dev: true - /memfs/3.5.0: + /memfs@3.5.0: resolution: {integrity: sha512-yK6o8xVJlQerz57kvPROwTMgx5WtGwC2ZxDtOUsnGl49rHjYkfQoPNZPCKH73VdLE1BwBu/+Fx/NL8NYMUw2aA==} engines: {node: '>= 4.0.0'} dependencies: fs-monkey: 1.0.3 - /memoizerific/1.11.3: + /memoizerific@1.11.3: resolution: {integrity: sha512-/EuHYwAPdLtXwAwSZkh/Gutery6pD2KYd44oQLhAvQp/50mpyduZh8Q7PYHXTCJ+wuXxt7oij2LXyIJOOYFPog==} dependencies: map-or-similar: 1.5.0 - /memory-fs/0.2.0: + /memory-fs@0.2.0: resolution: {integrity: sha512-+y4mDxU4rvXXu5UDSGCGNiesFmwCHuefGMoPCO1WYucNYj7DsLqrFaa2fXVI0H+NNiPTwwzKwspn9yTZqUGqng==} - dev: true - /memory-pager/1.5.0: + /memory-pager@1.5.0: resolution: {integrity: sha512-ZS4Bp4r/Zoeq6+NLJpP+0Zzm0pR8whtGPf1XExKLJBAczGMnSi3It14OiNCStjQjM6NU1okjQGSxgEZN8eBYKg==} + requiresBuild: true dev: false optional: true - /memorystream/0.3.1: + /memorystream@0.3.1: resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==} engines: {node: '>= 0.10.0'} dev: true - /meow/10.1.5: + /meow@10.1.5: resolution: {integrity: sha512-/d+PQ4GKmGvM9Bee/DPa8z3mXs/pkvJE2KEThngVNOqtmljC6K7NMPxtc2JeZYTmpWb9k/TmxjeL18ez3h7vCw==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: @@ -34707,7 +35808,7 @@ packages: yargs-parser: 20.2.9 dev: true - /meow/4.0.1: + /meow@4.0.1: resolution: {integrity: sha512-xcSBHD5Z86zaOc+781KrupuHAzeGXSLtiAOmBsiLDiPSaYSB6hdew2ng9EBAnZ62jagG9MHAOdxpDi/lWBFJ/A==} engines: {node: '>=4'} dependencies: @@ -34722,7 +35823,7 @@ packages: trim-newlines: 2.0.0 dev: true - /meow/6.1.1: + /meow@6.1.1: resolution: {integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==} engines: {node: '>=8'} dependencies: @@ -34739,7 +35840,7 @@ packages: yargs-parser: 18.1.3 dev: true - /meow/8.1.2: + /meow@8.1.2: resolution: {integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==} engines: {node: '>=10'} dependencies: @@ -34756,25 +35857,25 @@ 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==} - /merge/2.1.1: - resolution: {integrity: sha512-jz+Cfrg9GWOZbQAnDQ4hlVnQky+341Yk5ru8bZSe6sIDTCIg8n9i/u7hSQGSVOF3C7lH6mGtqjkiT9G4wFLL0w==} - dev: true - - /merge2/1.4.1: + /merge2@1.4.1: resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} engines: {node: '>= 8'} - /methods/1.1.2: + /merge@2.1.1: + resolution: {integrity: sha512-jz+Cfrg9GWOZbQAnDQ4hlVnQky+341Yk5ru8bZSe6sIDTCIg8n9i/u7hSQGSVOF3C7lH6mGtqjkiT9G4wFLL0w==} + dev: true + + /methods@1.1.2: resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} engines: {node: '>= 0.6'} - /micromark-core-commonmark/1.1.0: + /micromark-core-commonmark@1.1.0: resolution: {integrity: sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw==} dependencies: decode-named-character-reference: 1.0.2 @@ -34795,7 +35896,7 @@ packages: uvu: 0.5.6 dev: true - /micromark-extension-gfm-autolink-literal/1.0.5: + /micromark-extension-gfm-autolink-literal@1.0.5: resolution: {integrity: sha512-z3wJSLrDf8kRDOh2qBtoTRD53vJ+CWIyo7uyZuxf/JAbNJjiHsOpG1y5wxk8drtv3ETAHutCu6N3thkOOgueWg==} dependencies: micromark-util-character: 1.2.0 @@ -34804,7 +35905,7 @@ packages: micromark-util-types: 1.1.0 dev: true - /micromark-extension-gfm-footnote/1.1.2: + /micromark-extension-gfm-footnote@1.1.2: resolution: {integrity: sha512-Yxn7z7SxgyGWRNa4wzf8AhYYWNrwl5q1Z8ii+CSTTIqVkmGZF1CElX2JI8g5yGoM3GAman9/PVCUFUSJ0kB/8Q==} dependencies: micromark-core-commonmark: 1.1.0 @@ -34817,7 +35918,7 @@ packages: uvu: 0.5.6 dev: true - /micromark-extension-gfm-strikethrough/1.0.7: + /micromark-extension-gfm-strikethrough@1.0.7: resolution: {integrity: sha512-sX0FawVE1o3abGk3vRjOH50L5TTLr3b5XMqnP9YDRb34M0v5OoZhG+OHFz1OffZ9dlwgpTBKaT4XW/AsUVnSDw==} dependencies: micromark-util-chunked: 1.1.0 @@ -34828,7 +35929,7 @@ packages: uvu: 0.5.6 dev: true - /micromark-extension-gfm-table/1.0.7: + /micromark-extension-gfm-table@1.0.7: resolution: {integrity: sha512-3ZORTHtcSnMQEKtAOsBQ9/oHp9096pI/UvdPtN7ehKvrmZZ2+bbWhi0ln+I9drmwXMt5boocn6OlwQzNXeVeqw==} dependencies: micromark-factory-space: 1.1.0 @@ -34838,13 +35939,13 @@ packages: uvu: 0.5.6 dev: true - /micromark-extension-gfm-tagfilter/1.0.2: + /micromark-extension-gfm-tagfilter@1.0.2: resolution: {integrity: sha512-5XWB9GbAUSHTn8VPU8/1DBXMuKYT5uOgEjJb8gN3mW0PNW5OPHpSdojoqf+iq1xo7vWzw/P8bAHY0n6ijpXF7g==} dependencies: micromark-util-types: 1.1.0 dev: true - /micromark-extension-gfm-task-list-item/1.0.5: + /micromark-extension-gfm-task-list-item@1.0.5: resolution: {integrity: sha512-RMFXl2uQ0pNQy6Lun2YBYT9g9INXtWJULgbt01D/x8/6yJ2qpKyzdZD3pi6UIkzF++Da49xAelVKUeUMqd5eIQ==} dependencies: micromark-factory-space: 1.1.0 @@ -34854,7 +35955,7 @@ packages: uvu: 0.5.6 dev: true - /micromark-extension-gfm/2.0.3: + /micromark-extension-gfm@2.0.3: resolution: {integrity: sha512-vb9OoHqrhCmbRidQv/2+Bc6pkP0FrtlhurxZofvOEy5o8RtuuvTq+RQ1Vw5ZDNrVraQZu3HixESqbG+0iKk/MQ==} dependencies: micromark-extension-gfm-autolink-literal: 1.0.5 @@ -34867,7 +35968,7 @@ packages: micromark-util-types: 1.1.0 dev: true - /micromark-factory-destination/1.1.0: + /micromark-factory-destination@1.1.0: resolution: {integrity: sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg==} dependencies: micromark-util-character: 1.2.0 @@ -34875,7 +35976,7 @@ packages: micromark-util-types: 1.1.0 dev: true - /micromark-factory-label/1.1.0: + /micromark-factory-label@1.1.0: resolution: {integrity: sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w==} dependencies: micromark-util-character: 1.2.0 @@ -34884,14 +35985,14 @@ packages: uvu: 0.5.6 dev: true - /micromark-factory-space/1.1.0: + /micromark-factory-space@1.1.0: resolution: {integrity: sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ==} dependencies: micromark-util-character: 1.2.0 micromark-util-types: 1.1.0 dev: true - /micromark-factory-title/1.1.0: + /micromark-factory-title@1.1.0: resolution: {integrity: sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ==} dependencies: micromark-factory-space: 1.1.0 @@ -34900,7 +36001,7 @@ packages: micromark-util-types: 1.1.0 dev: true - /micromark-factory-whitespace/1.1.0: + /micromark-factory-whitespace@1.1.0: resolution: {integrity: sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ==} dependencies: micromark-factory-space: 1.1.0 @@ -34909,20 +36010,20 @@ packages: micromark-util-types: 1.1.0 dev: true - /micromark-util-character/1.2.0: + /micromark-util-character@1.2.0: resolution: {integrity: sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg==} dependencies: micromark-util-symbol: 1.1.0 micromark-util-types: 1.1.0 dev: true - /micromark-util-chunked/1.1.0: + /micromark-util-chunked@1.1.0: resolution: {integrity: sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ==} dependencies: micromark-util-symbol: 1.1.0 dev: true - /micromark-util-classify-character/1.1.0: + /micromark-util-classify-character@1.1.0: resolution: {integrity: sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw==} dependencies: micromark-util-character: 1.2.0 @@ -34930,20 +36031,20 @@ packages: micromark-util-types: 1.1.0 dev: true - /micromark-util-combine-extensions/1.1.0: + /micromark-util-combine-extensions@1.1.0: resolution: {integrity: sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA==} dependencies: micromark-util-chunked: 1.1.0 micromark-util-types: 1.1.0 dev: true - /micromark-util-decode-numeric-character-reference/1.1.0: + /micromark-util-decode-numeric-character-reference@1.1.0: resolution: {integrity: sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw==} dependencies: micromark-util-symbol: 1.1.0 dev: true - /micromark-util-decode-string/1.1.0: + /micromark-util-decode-string@1.1.0: resolution: {integrity: sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ==} dependencies: decode-named-character-reference: 1.0.2 @@ -34952,27 +36053,27 @@ packages: micromark-util-symbol: 1.1.0 dev: true - /micromark-util-encode/1.1.0: + /micromark-util-encode@1.1.0: resolution: {integrity: sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw==} dev: true - /micromark-util-html-tag-name/1.2.0: + /micromark-util-html-tag-name@1.2.0: resolution: {integrity: sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==} dev: true - /micromark-util-normalize-identifier/1.1.0: + /micromark-util-normalize-identifier@1.1.0: resolution: {integrity: sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q==} dependencies: micromark-util-symbol: 1.1.0 dev: true - /micromark-util-resolve-all/1.1.0: + /micromark-util-resolve-all@1.1.0: resolution: {integrity: sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA==} dependencies: micromark-util-types: 1.1.0 dev: true - /micromark-util-sanitize-uri/1.2.0: + /micromark-util-sanitize-uri@1.2.0: resolution: {integrity: sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A==} dependencies: micromark-util-character: 1.2.0 @@ -34980,7 +36081,7 @@ packages: micromark-util-symbol: 1.1.0 dev: true - /micromark-util-subtokenize/1.1.0: + /micromark-util-subtokenize@1.1.0: resolution: {integrity: sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A==} dependencies: micromark-util-chunked: 1.1.0 @@ -34989,19 +36090,19 @@ packages: uvu: 0.5.6 dev: true - /micromark-util-symbol/1.1.0: + /micromark-util-symbol@1.1.0: resolution: {integrity: sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag==} dev: true - /micromark-util-types/1.1.0: + /micromark-util-types@1.1.0: resolution: {integrity: sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==} dev: true - /micromark/3.2.0: + /micromark@3.2.0: resolution: {integrity: sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==} dependencies: '@types/debug': 4.1.8 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) decode-named-character-reference: 1.0.2 micromark-core-commonmark: 1.1.0 micromark-factory-space: 1.1.0 @@ -35021,7 +36122,7 @@ packages: - supports-color dev: true - /micromatch/2.3.11: + /micromatch@2.3.11: resolution: {integrity: sha512-LnU2XFEk9xxSJ6rfgAry/ty5qwUTyHYOBU0g4R6tIw5ljwgGIBmiKhRWLw5NpMOnrgUNcDJ4WMp8rl3sYVHLNA==} engines: {node: '>=0.10.0'} dependencies: @@ -35040,7 +36141,7 @@ packages: regex-cache: 0.4.4 dev: true - /micromatch/3.1.10: + /micromatch@3.1.10: resolution: {integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==} engines: {node: '>=0.10.0'} dependencies: @@ -35061,45 +36162,45 @@ packages: - supports-color dev: true - /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-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.5.2: + /mime@2.5.2: resolution: {integrity: sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==} engines: {node: '>=4.0.0'} hasBin: true dev: true - /mime/2.6.0: + /mime@2.6.0: resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==} engines: {node: '>=4.0.0'} hasBin: true - /mime/3.0.0: + /mime@3.0.0: resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==} engines: {node: '>=10.0.0'} hasBin: true - /mimelib/0.3.1: + /mimelib@0.3.1: resolution: {integrity: sha512-ipzNp6TBsNfD3hButGlPVlGmuCgybIM9SBf8YwIG+SYmBgtU0u8wjf+BSrJX0mvqtv59SLmwphw/XiCbkLWv7w==} deprecated: This project is unmaintained dependencies: @@ -35107,122 +36208,122 @@ packages: encoding: 0.1.13 dev: false - /mimic-fn/1.2.0: + /mimic-fn@1.2.0: resolution: {integrity: sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==} engines: {node: '>=4'} dev: true - /mimic-fn/2.1.0: + /mimic-fn@2.1.0: resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} engines: {node: '>=6'} - /mimic-fn/3.1.0: + /mimic-fn@3.1.0: resolution: {integrity: sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ==} engines: {node: '>=8'} dev: true - /mimic-fn/4.0.0: + /mimic-fn@4.0.0: resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} engines: {node: '>=12'} dev: true - /min-indent/1.0.1: + /min-indent@1.0.1: resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} engines: {node: '>=4'} dev: true - /mini-css-extract-plugin/2.7.2_webpack@5.76.1: + /mini-css-extract-plugin@2.7.2(webpack@5.76.1): resolution: {integrity: sha512-EdlUizq13o0Pd+uCp+WO/JpkLvHRVGt97RqfeGhXqAcorYo1ypJSpkV+WDT0vY/kmh/p7wRdJNJtuyK540PXDw==} engines: {node: '>= 12.13.0'} peerDependencies: webpack: ^5.0.0 dependencies: schema-utils: 4.0.0 - webpack: 5.76.1 + webpack: 5.76.1(@swc/core@1.3.49)(esbuild@0.17.8) dev: true - /mini-css-extract-plugin/2.7.5_webpack@5.78.0: + /mini-css-extract-plugin@2.7.5(webpack@5.78.0): resolution: {integrity: sha512-9HaR++0mlgom81s95vvNjxkg52n2b5s//3ZTI1EtzFb98awsLSivs2LMsVqnQ3ay0PVhqWcGNyDaTE961FOcjQ==} engines: {node: '>= 12.13.0'} peerDependencies: webpack: ^5.0.0 dependencies: schema-utils: 4.0.0 - webpack: 5.78.0_u5c4qderjagc6tepfyiby6xhau + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) - /minimalistic-assert/1.0.1: + /minimalistic-assert@1.0.1: resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==} - /minimatch/3.0.4: + /minimatch@3.0.4: resolution: {integrity: sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==} dependencies: brace-expansion: 1.1.11 dev: true - /minimatch/3.0.5: + /minimatch@3.0.5: resolution: {integrity: sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==} dependencies: brace-expansion: 1.1.11 - /minimatch/3.0.8: + /minimatch@3.0.8: resolution: {integrity: sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==} dependencies: brace-expansion: 1.1.11 dev: true - /minimatch/3.1.2: + /minimatch@3.1.2: resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} dependencies: brace-expansion: 1.1.11 - /minimatch/5.0.1: + /minimatch@5.0.1: resolution: {integrity: sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g==} engines: {node: '>=10'} dependencies: brace-expansion: 2.0.1 dev: true - /minimatch/5.1.6: + /minimatch@5.1.6: resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} engines: {node: '>=10'} dependencies: brace-expansion: 2.0.1 - /minimatch/6.2.0: + /minimatch@6.2.0: resolution: {integrity: sha512-sauLxniAmvnhhRjFwPNnJKaPFYyddAgbYdeUpHULtCT/GhzdCx/MDNy+Y40lBxTQUrMzDE8e0S43Z5uqfO0REg==} engines: {node: '>=10'} dependencies: brace-expansion: 2.0.1 dev: true - /minimatch/7.4.6: + /minimatch@7.4.6: resolution: {integrity: sha512-sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw==} engines: {node: '>=10'} dependencies: brace-expansion: 2.0.1 dev: true - /minimatch/8.0.4: + /minimatch@8.0.4: resolution: {integrity: sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==} engines: {node: '>=16 || 14 >=14.17'} dependencies: brace-expansion: 2.0.1 dev: true - /minimatch/9.0.0: + /minimatch@9.0.0: resolution: {integrity: sha512-0jJj8AvgKqWN05mrwuqi8QYKx1WmYSUoKSxu5Qhs9prezTz10sxAHGNZe9J9cqIJzta8DWsleh2KaVaLl6Ru2w==} engines: {node: '>=16 || 14 >=14.17'} dependencies: brace-expansion: 2.0.1 dev: true - /minimatch/9.0.3: + /minimatch@9.0.3: resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} engines: {node: '>=16 || 14 >=14.17'} dependencies: brace-expansion: 2.0.1 - /minimist-options/3.0.2: + /minimist-options@3.0.2: resolution: {integrity: sha512-FyBrT/d0d4+uiZRbqznPXqw3IpZZG3gl3wKWiX784FycUKVwBt0uLBFkQrtE4tZOrgo78nZp2jnKz3L65T5LdQ==} engines: {node: '>= 4'} dependencies: @@ -35230,7 +36331,7 @@ packages: is-plain-obj: 1.1.0 dev: true - /minimist-options/4.1.0: + /minimist-options@4.1.0: resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} engines: {node: '>= 6'} dependencies: @@ -35239,21 +36340,21 @@ packages: kind-of: 6.0.3 dev: true - /minimist/1.2.7: + /minimist@1.2.7: resolution: {integrity: sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==} dev: true - /minimist/1.2.8: + /minimist@1.2.8: resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} - /minipass-collect/1.0.2: + /minipass-collect@1.0.2: resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==} engines: {node: '>= 8'} dependencies: minipass: 3.3.6 dev: true - /minipass-fetch/2.1.2: + /minipass-fetch@2.1.2: resolution: {integrity: sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: @@ -35264,7 +36365,7 @@ packages: encoding: 0.1.13 dev: true - /minipass-fetch/3.0.1: + /minipass-fetch@3.0.1: resolution: {integrity: sha512-t9/wowtf7DYkwz8cfMSt0rMwiyNIBXf5CKZ3S5ZMqRqMYT0oLTp0x1WorMI9WTwvaPg21r1JbFxJMum8JrLGfw==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: @@ -35275,56 +36376,56 @@ packages: encoding: 0.1.13 dev: true - /minipass-flush/1.0.5: + /minipass-flush@1.0.5: resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==} engines: {node: '>= 8'} dependencies: minipass: 3.3.6 dev: true - /minipass-json-stream/1.0.1: + /minipass-json-stream@1.0.1: resolution: {integrity: sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==} dependencies: jsonparse: 1.3.1 minipass: 3.3.6 dev: true - /minipass-pipeline/1.2.4: + /minipass-pipeline@1.2.4: resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==} engines: {node: '>=8'} dependencies: minipass: 3.3.6 dev: true - /minipass-sized/1.0.3: + /minipass-sized@1.0.3: resolution: {integrity: sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==} engines: {node: '>=8'} dependencies: minipass: 3.3.6 dev: true - /minipass/3.3.6: + /minipass@3.3.6: resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} engines: {node: '>=8'} dependencies: yallist: 4.0.0 - /minipass/4.2.7: + /minipass@4.2.7: resolution: {integrity: sha512-ScVIgqHcXRMyfflqHmEW0bm8z8rb5McHyOY3ewX9JBgZaR77G7nxq9L/mtV96/QbAAwtbCAHVVLzD1kkyfFQEw==} engines: {node: '>=8'} - /minipass/5.0.0: + /minipass@5.0.0: resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==} engines: {node: '>=8'} - /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 - /mississippi/4.0.0: + /mississippi@4.0.0: resolution: {integrity: sha512-7PujJ3Te6GGg9lG1nfw5jYCPV6/BsoAT0nCQwb6w+ROuromXYxI6jc/CQSlD82Z/OUMSBX1SoaqhTE+vXiLQzQ==} engines: {node: '>=4.0.0'} dependencies: @@ -35340,7 +36441,7 @@ packages: through2: 3.0.2 dev: true - /mixin-deep/1.3.2: + /mixin-deep@1.3.2: resolution: {integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==} engines: {node: '>=0.10.0'} dependencies: @@ -35348,7 +36449,7 @@ packages: is-extendable: 1.0.1 dev: true - /mixpanel/0.17.0: + /mixpanel@0.17.0: resolution: {integrity: sha512-DY5WeOy/hmkPrNiiZugJpWR0iMuOwuj1a3u0bgwB2eUFRV6oIew/pIahhpawdbNjb+Bye4a8ID3gefeNPvL81g==} engines: {node: '>=10.0'} dependencies: @@ -35357,11 +36458,11 @@ packages: - supports-color dev: false - /mkdirp-classic/0.5.3: + /mkdirp-classic@0.5.3: resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==} dev: true - /mkdirp-infer-owner/2.0.0: + /mkdirp-infer-owner@2.0.0: resolution: {integrity: sha512-sdqtiFt3lkOaYvTXSRIUjkIdPTcxgv5+fgqYE/5qgwdw12cOrAuzzgzvVExIkH/ul1oeHN3bCLOWSG3XOqbKKw==} engines: {node: '>=10'} dependencies: @@ -35370,18 +36471,18 @@ packages: mkdirp: 1.0.4 dev: true - /mkdirp/0.5.6: + /mkdirp@0.5.6: resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} hasBin: true dependencies: minimist: 1.2.8 - /mkdirp/1.0.4: + /mkdirp@1.0.4: resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} engines: {node: '>=10'} hasBin: true - /mocha/10.2.0: + /mocha@10.2.0: resolution: {integrity: sha512-IDY7fl/BecMwFHzoqF2sg/SHHANeBoMMXFlS9r0OXKDssYE1M5O43wUY/9BVPeIvfH2zmEbBfseqN9gBQZzXkg==} engines: {node: '>= 14.0.0'} hasBin: true @@ -35389,7 +36490,7 @@ packages: ansi-colors: 4.1.1 browser-stdout: 1.3.1 chokidar: 3.5.3 - debug: 4.3.4_supports-color@8.1.1 + debug: 4.3.4(supports-color@8.1.1) diff: 5.0.0 escape-string-regexp: 4.0.0 find-up: 5.0.0 @@ -35409,7 +36510,7 @@ packages: yargs-unparser: 2.0.0 dev: true - /mocha/8.4.0: + /mocha@8.4.0: resolution: {integrity: sha512-hJaO0mwDXmZS4ghXsvPVriOhsxQ7ofcpQdm8dE+jISUOKopitvnXFQmpRR7jd2K6VBG6E26gU3IAbXXGIbu4sQ==} engines: {node: '>= 10.12.0'} hasBin: true @@ -35418,7 +36519,7 @@ packages: ansi-colors: 4.1.1 browser-stdout: 1.3.1 chokidar: 3.5.1 - debug: 4.3.1_supports-color@8.1.1 + debug: 4.3.1(supports-color@8.1.1) diff: 5.0.0 escape-string-regexp: 4.0.0 find-up: 5.0.0 @@ -35441,27 +36542,27 @@ packages: yargs-unparser: 2.0.0 dev: true - /modify-values/1.0.1: + /modify-values@1.0.1: resolution: {integrity: sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==} engines: {node: '>=0.10.0'} dev: true - /module-alias/2.2.2: + /module-alias@2.2.2: resolution: {integrity: sha512-A/78XjoX2EmNvppVWEhM2oGk3x4lLxnkEA4jTbaK97QKSDjkIoOsKQlfylt/d3kKKi596Qy3NP5XrXJ6fZIC9Q==} dev: true - /moment/2.29.4: + /moment@2.29.4: resolution: {integrity: sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==} dev: false - /mongodb-connection-string-url/2.6.0: + /mongodb-connection-string-url@2.6.0: resolution: {integrity: sha512-WvTZlI9ab0QYtTYnuMLgobULWhokRjtC7db9LtcVfJ+Hsnyr5eo6ZtNAt3Ly24XZScGMelOcGtm7lSn0332tPQ==} dependencies: '@types/whatwg-url': 8.2.2 whatwg-url: 11.0.0 dev: false - /mongodb/5.8.1: + /mongodb@5.8.1: resolution: {integrity: sha512-wKyh4kZvm6NrCPH8AxyzXm3JBoEf4Xulo0aUWh3hCgwgYJxyQ1KLST86ZZaSWdj6/kxYUA3+YZuyADCE61CMSg==} engines: {node: '>=14.20.1'} peerDependencies: @@ -35489,7 +36590,7 @@ packages: '@mongodb-js/saslprep': 1.1.0 dev: false - /mongoose-delete/1.0.1_mongoose@7.5.2: + /mongoose-delete@1.0.1(mongoose@7.5.2): resolution: {integrity: sha512-vm24uep4UJOW3Ac8H/gDxURcwvl+1Cc2H7tIJ0O8ejDEFJIUoksKS9HzTOM4SvEJusAVQ0JpjhbttHpevUz71A==} peerDependencies: mongoose: 5.x || 6.x || 7.x @@ -35497,7 +36598,7 @@ packages: mongoose: 7.5.2 dev: false - /mongoose/7.5.2: + /mongoose@7.5.2: resolution: {integrity: sha512-yEkmI1jfiog7QUvMWz3eB/XoA3/5DrVvSz+z3V5hnq8VtZIHC7ujEV0RKzRXwr8QNMOs+OTB7+aK7R/N/V3yXA==} engines: {node: '>=14.20.1'} dependencies: @@ -35517,44 +36618,43 @@ packages: - supports-color dev: false - /mpath/0.9.0: + /mpath@0.9.0: resolution: {integrity: sha512-ikJRQTk8hw5DEoFVxHG1Gn9T/xcjtdnOKIU1JTmGjZZlg9LST2mBLmcX3/ICIbgJydT2GOc15RnNy5mHmzfSew==} engines: {node: '>=4.0.0'} dev: false - /mquery/5.0.0: + /mquery@5.0.0: resolution: {integrity: sha512-iQMncpmEK8R8ncT8HJGsGc9Dsp8xcgYMVSbs5jgnm1lFHTZqMJTUWTDx1LBO8+mK3tPNZWFLBghQEIOULSTHZg==} engines: {node: '>=14.0.0'} dependencies: - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) transitivePeerDependencies: - supports-color dev: false - /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.1: + /ms@2.1.1: resolution: {integrity: sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==} dev: true - /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==} - /msgpackr-extract/3.0.2: + /msgpackr-extract@3.0.2: resolution: {integrity: sha512-SdzXp4kD/Qf8agZ9+iTu6eql0m3kWm1A2y1hkpTeVNENutaB0BwHlSvAIaMxwntmRUAUjon2V4L8Z/njd0Ct8A==} hasBin: true requiresBuild: true @@ -35570,17 +36670,17 @@ packages: dev: false optional: true - /msgpackr/1.8.5: + /msgpackr@1.8.5: resolution: {integrity: sha512-mpPs3qqTug6ahbblkThoUY2DQdNXcm4IapwOS3Vm/87vmpzLVelvp9h3It1y9l1VPpiFLV11vfOXnmeEwiIXwg==} optionalDependencies: msgpackr-extract: 3.0.2 dev: false - /muggle-string/0.2.2: + /muggle-string@0.2.2: resolution: {integrity: sha512-YVE1mIJ4VpUMqZObFndk9CJu6DBJR/GB13p3tXuNbwD4XExaI5EOuRl6BHeIDxIqXZVxSfAC+y6U1Z/IxCfKUg==} 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: @@ -35592,14 +36692,14 @@ packages: type-is: 1.6.18 xtend: 4.0.2 - /multicast-dns/7.2.5: + /multicast-dns@7.2.5: resolution: {integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==} hasBin: true dependencies: dns-packet: 5.5.0 thunky: 1.1.0 - /multimatch/5.0.0: + /multimatch@5.0.0: resolution: {integrity: sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==} engines: {node: '>=10'} dependencies: @@ -35610,43 +36710,43 @@ packages: minimatch: 3.1.2 dev: true - /mute-stream/0.0.8: + /mute-stream@0.0.8: resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} - /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 - /nan/2.17.0: + /nan@2.17.0: resolution: {integrity: sha512-2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ==} requiresBuild: true optional: true - /nanoid/2.1.11: + /nanoid@2.1.11: resolution: {integrity: sha512-s/snB+WGm6uwi0WjsZdaVcuf3KJXlfGl2LcxgwkEwJF0D/BWzVWAZW/XY4bFaiR7s0Jk3FPvlnepg1H1b1UwlA==} dev: false - /nanoid/3.1.20: + /nanoid@3.1.20: resolution: {integrity: sha512-a1cQNyczgKbLX9jwbS/+d7W8fX/RfgYR7lVWwWOGIPNgK2m0MWvrGF6/m4kk6U3QcFMnZf3RIhL0v2Jgh/0Uxw==} engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true dev: true - /nanoid/3.3.3: + /nanoid@3.3.3: resolution: {integrity: sha512-p1sjXuopFs0xg+fPASzQ28agW1oHD7xDsd9Xkf3T15H3c/cifrFHVwrh74PdoklAPi+i7MdRsE47vm2r6JoB+w==} engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true dev: true - /nanoid/3.3.6: + /nanoid@3.3.6: resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==} engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true - /nanomatch/1.2.13: + /nanomatch@1.2.13: resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==} engines: {node: '>=0.10.0'} dependencies: @@ -35665,7 +36765,7 @@ packages: - supports-color dev: true - /native-fetch/4.0.2_undici@5.23.0: + /native-fetch@4.0.2(undici@5.23.0): resolution: {integrity: sha512-4QcVlKFtv2EYVS5MBgsGX5+NWKtbDbIECdUXDBGDMAZXq3Jkv9zf+y8iS7Ub8fEdga3GpYeazp9gauNqXHJOCg==} peerDependencies: undici: '*' @@ -35673,18 +36773,18 @@ packages: undici: 5.23.0 dev: false - /natural-compare-lite/1.4.0: + /natural-compare-lite@1.4.0: resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==} - /natural-compare/1.4.0: + /natural-compare@1.4.0: resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} - /ncp/2.0.0: + /ncp@2.0.0: resolution: {integrity: sha512-zIdGUrPRFTUELUvr3Gmc7KZ2Sw/h1PiVM0Af/oHB6zgnV1ikqSfRk+TOufi79aHYCW3NiOXmr1BP5nWbzojLaA==} hasBin: true dev: true - /ndjson/2.0.0: + /ndjson@2.0.0: resolution: {integrity: sha512-nGl7LRGrzugTtaFcJMhLbpzJM6XdivmbkdlaGcrk/LXg2KL/YBC6z1g70xh0/al+oFuVFP8N8kiWRucmeEH/qQ==} engines: {node: '>=10'} hasBin: true @@ -35696,42 +36796,42 @@ packages: through2: 4.0.2 dev: true - /needle/3.2.0: + /needle@3.2.0: resolution: {integrity: sha512-oUvzXnyLiVyVGoianLijF9O/RecZUf7TkBfimjGrLM4eQhXyeJwM6GeAWccwfQ9aa4gMCZKqhAOuLaMIcQxajQ==} engines: {node: '>= 4.4.x'} hasBin: true requiresBuild: true dependencies: - debug: 3.2.7 + debug: 3.2.7(supports-color@8.1.1) iconv-lite: 0.6.3 sax: 1.2.4 transitivePeerDependencies: - supports-color optional: true - /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==} - /nerf-dart/1.0.0: + /nerf-dart@1.0.0: resolution: {integrity: sha512-EZSPZB70jiVsivaBLYDCyntd5eH8NTSMOn3rB+HxwdmKThGELLdYv8qVIMWvZEFy9w8ZZpW9h9OB32l1rGtj7g==} dev: true - /nest-raven/10.0.0_5jm5ambngrgwc4qwlo7r47envy: + /nest-raven@10.0.0(@nestjs/common@10.2.2)(@nestjs/core@10.2.2)(@sentry/node@7.47.0)(class-transformer@0.5.1)(class-validator@0.14.0)(graphql@16.8.0)(reflect-metadata@0.1.13)(rxjs@7.8.1): resolution: {integrity: sha512-MnemxfEjYU1+JFt16epeUx1DwibxhhRinzgfJXNhPPeV7AzlZXHrFlrjpxA1hUkha6tWkFxa444S1wC2j5PpKQ==} peerDependencies: '@nestjs/common': ^10.0.0 '@sentry/node': '*' rxjs: '*' dependencies: - '@nestjs/common': 10.2.2_j3td4gnlgk75ora6o6suo62byy + '@nestjs/common': 10.2.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.1.13)(rxjs@7.8.1) '@sentry/node': 7.47.0 rxjs: 7.8.1 optionalDependencies: - '@nestjs/graphql': 12.0.8_vwvzqo7zbf7canbr2urjqmzihy + '@nestjs/graphql': 12.0.8(@nestjs/common@10.2.2)(@nestjs/core@10.2.2)(class-transformer@0.5.1)(class-validator@0.14.0)(graphql@16.8.0)(reflect-metadata@0.1.13) transitivePeerDependencies: - '@apollo/subgraph' - '@nestjs/core' @@ -35744,18 +36844,18 @@ packages: - utf-8-validate dev: false - /nest-raven/10.0.0_yqdl5gxg4kqzuhpdj6c6ocukde: + /nest-raven@10.0.0(@nestjs/common@10.2.2)(@nestjs/core@10.2.2)(@sentry/node@7.66.0)(class-transformer@0.5.1)(class-validator@0.14.0)(graphql@16.8.0)(reflect-metadata@0.1.13)(rxjs@7.8.1): resolution: {integrity: sha512-MnemxfEjYU1+JFt16epeUx1DwibxhhRinzgfJXNhPPeV7AzlZXHrFlrjpxA1hUkha6tWkFxa444S1wC2j5PpKQ==} peerDependencies: '@nestjs/common': ^10.0.0 '@sentry/node': '*' rxjs: '*' dependencies: - '@nestjs/common': 10.2.2_j3td4gnlgk75ora6o6suo62byy + '@nestjs/common': 10.2.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.1.13)(rxjs@7.8.1) '@sentry/node': 7.66.0 rxjs: 7.8.1 optionalDependencies: - '@nestjs/graphql': 12.0.8_vwvzqo7zbf7canbr2urjqmzihy + '@nestjs/graphql': 12.0.8(@nestjs/common@10.2.2)(@nestjs/core@10.2.2)(class-transformer@0.5.1)(class-validator@0.14.0)(graphql@16.8.0)(reflect-metadata@0.1.13) transitivePeerDependencies: - '@apollo/subgraph' - '@nestjs/core' @@ -35768,11 +36868,11 @@ packages: - utf-8-validate dev: false - /nested-error-stacks/2.0.1: + /nested-error-stacks@2.0.1: resolution: {integrity: sha512-SrQrok4CATudVzBS7coSz26QRSmlK9TzzoFbeKfcPBUFPjcQM9Rqvr/DlJkOrwI/0KcgvMub1n1g5Jt9EgRn4A==} dev: true - /nestjs-pino/3.4.0_63skzxoikz7i6kgl2v2i7k2p4y: + /nestjs-pino@3.4.0(@nestjs/common@10.2.2)(pino-http@8.3.3): resolution: {integrity: sha512-L79tk+WqVJApGxD4K40srSHopwlBX8WVPoIJtVhWaxJUfk9ND6eZp7kmgdgwQw8PpYUeoeOhS1g2j0Ep3c0NJA==} engines: {node: '>= 14'} requiresBuild: true @@ -35780,31 +36880,31 @@ packages: '@nestjs/common': ^8.0.0 || ^9.0.0 || ^10.0.0 pino-http: ^6.4.0 || ^7.0.0 || ^8.0.0 dependencies: - '@nestjs/common': 10.2.2_j3td4gnlgk75ora6o6suo62byy + '@nestjs/common': 10.2.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.1.13)(rxjs@7.8.1) pino-http: 8.3.3 dev: false - /netmask/2.0.2: + /netmask@2.0.2: resolution: {integrity: sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==} engines: {node: '>= 0.4.0'} dev: false - /new-date/1.0.3: + /new-date@1.0.3: resolution: {integrity: sha512-0fsVvQPbo2I18DT2zVHpezmeeNYV2JaJSrseiHLc17GNOxJzUdx5mvSigPu8LtIfZSij5i1wXnXFspEs2CD6hA==} dependencies: '@segment/isodate': 1.0.3 dev: false - /newrelic/9.15.0: + /newrelic@9.15.0: resolution: {integrity: sha512-5bo4JDR76sk6ml8qykqQyUJIJ6IZfZrMWAbSwUVYErSs8faYOac6QpzRB11EvHQKZ8fnz5cRcksgERwY7Ia3zA==} engines: {node: '>=14', npm: '>=6.0.0'} hasBin: true dependencies: '@grpc/grpc-js': 1.8.21 '@grpc/proto-loader': 0.7.9 - '@newrelic/aws-sdk': 5.0.5_newrelic@9.15.0 - '@newrelic/koa': 7.2.0_newrelic@9.15.0 - '@newrelic/superagent': 6.0.0_newrelic@9.15.0 + '@newrelic/aws-sdk': 5.0.5(newrelic@9.15.0) + '@newrelic/koa': 7.2.0(newrelic@9.15.0) + '@newrelic/superagent': 6.0.0(newrelic@9.15.0) '@tyriar/fibonacci-heap': 2.0.9 concat-stream: 2.0.0 https-proxy-agent: 5.0.1 @@ -35820,14 +36920,14 @@ packages: - supports-color dev: false - /ng-intercom/8.0.2: + /ng-intercom@8.0.2: resolution: {integrity: sha512-Kgzu6FXvGdUSze5WpjMjwYtYOoxzcSNzAbmBMHQrnE9RVMlZu9bJO4BZo75W5xosaWqJK02nyrZ3iQYIjx7O2g==} engines: {node: '>= 8.0.0', npm: '>= 3'} dependencies: tslib: 1.14.1 dev: false - /ng-packagr/15.2.2_ahbmumcorrwcj53hbqfxcomynm: + /ng-packagr@15.2.2(@angular/compiler-cli@15.2.6)(tslib@2.5.0)(typescript@4.9.5): resolution: {integrity: sha512-+042GBD35ztxbHywGJloAiDM/s3Ja3TZtQh361TWqd/xza3K5DMUu6VRGLTgMwG7CW1YsqYHWgMZslP1c+ng7A==} engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0} hasBin: true @@ -35840,12 +36940,12 @@ packages: tailwindcss: optional: true dependencies: - '@angular/compiler-cli': 15.2.6_54xk3mtsepvzoktlwdjj2rm7na - '@rollup/plugin-json': 6.0.0_rollup@3.20.2 - '@rollup/plugin-node-resolve': 15.0.2_rollup@3.20.2 + '@angular/compiler-cli': 15.2.6(@angular/compiler@15.2.6)(typescript@4.9.5) + '@rollup/plugin-json': 6.0.0(rollup@3.20.2) + '@rollup/plugin-node-resolve': 15.0.2(rollup@3.20.2) ajv: 8.12.0 ansi-colors: 4.1.3 - autoprefixer: 10.4.14_postcss@8.4.21 + autoprefixer: 10.4.14(postcss@8.4.21) browserslist: 4.21.5 cacache: 17.0.5 chokidar: 3.5.3 @@ -35861,7 +36961,7 @@ packages: ora: 5.4.1 piscina: 3.2.0 postcss: 8.4.21 - postcss-url: 10.1.3_postcss@8.4.21 + postcss-url: 10.1.3(postcss@8.4.21) rollup: 3.20.2 rxjs: 7.8.1 sass: 1.61.0 @@ -35874,7 +36974,7 @@ packages: - supports-color dev: true - /nice-napi/1.0.2: + /nice-napi@1.0.2: resolution: {integrity: sha512-px/KnJAJZf5RuBGcfD+Sp2pAKq0ytz8j+1NehvgIGFkvtvFrDM3T8E4x/JJODXK9WZow8RRGrbA9QQ3hs+pDhA==} os: ['!win32'] requiresBuild: true @@ -35884,11 +36984,11 @@ packages: dev: true optional: true - /nice-try/1.0.5: + /nice-try@1.0.5: resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==} dev: true - /nise/4.1.0: + /nise@4.1.0: resolution: {integrity: sha512-eQMEmGN/8arp0xsvGoQ+B1qvSkR73B1nWSCh7nOt5neMCtwcQVYQGdzQMhcNscktTsWB54xnlSQFzOAPJD8nXA==} dependencies: '@sinonjs/commons': 1.8.6 @@ -35897,23 +36997,23 @@ packages: just-extend: 4.2.1 path-to-regexp: 1.8.0 - /no-case/2.3.2: + /no-case@2.3.2: resolution: {integrity: sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==} dependencies: lower-case: 1.1.4 dev: true - /no-case/3.0.4: + /no-case@3.0.4: resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} dependencies: lower-case: 2.0.2 tslib: 2.6.2 - /nock/13.3.0: + /nock@13.3.0: resolution: {integrity: sha512-HHqYQ6mBeiMc+N038w8LkMpDCRquCHWeNmN3v6645P3NhN2+qXOBqvPqo7Rt1VyCMzKhJ733wZqw5B7cQVFNPg==} engines: {node: '>= 10.13'} dependencies: - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) json-stringify-safe: 5.0.1 lodash: 4.17.21 propagate: 2.0.1 @@ -35921,42 +37021,42 @@ packages: - supports-color dev: false - /node-abort-controller/3.1.1: + /node-abort-controller@3.1.1: resolution: {integrity: sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==} dev: true - /node-addon-api/3.2.1: + /node-addon-api@3.2.1: resolution: {integrity: sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==} - /node-cache/5.1.2: + /node-cache@5.1.2: resolution: {integrity: sha512-t1QzWwnk4sjLWaQAS8CHgOJ+RAfmHpxFWmc36IWTiWHQfs0w5JDMBS1b1ZxQteo0vVVuWJvIUKHDkkeK7vIGCg==} engines: {node: '>= 8.0.0'} dependencies: clone: 2.1.2 dev: false - /node-dir/0.1.17: + /node-dir@0.1.17: resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==} engines: {node: '>= 0.10.5'} dependencies: minimatch: 3.1.2 dev: true - /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-native/1.4.0: + /node-fetch-native@1.4.0: resolution: {integrity: sha512-F5kfEj95kX8tkDhUCYdV8dg3/8Olx/94zB8+ZNthFs6Bz31UpUi8Xh40TN3thLwXgrwXry1pEg9lJ++tLWTcqA==} 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: @@ -35967,7 +37067,7 @@ packages: dependencies: whatwg-url: 5.0.0 - /node-fetch/2.6.9: + /node-fetch@2.6.9: resolution: {integrity: sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==} engines: {node: 4.x || >=6.0.0} peerDependencies: @@ -35978,7 +37078,7 @@ packages: dependencies: whatwg-url: 5.0.0 - /node-fetch/2.7.0: + /node-fetch@2.7.0: resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} engines: {node: 4.x || >=6.0.0} peerDependencies: @@ -35989,7 +37089,7 @@ packages: dependencies: whatwg-url: 5.0.0 - /node-fetch/3.3.1: + /node-fetch@3.3.1: resolution: {integrity: sha512-cRVc/kyto/7E5shrWca1Wsea4y6tL9iYJE5FBCius3JQfb/4P4I295PfhgbJQBLTx6lATE4z+wK0rPM4VS2uow==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: @@ -35997,21 +37097,22 @@ packages: fetch-blob: 3.2.0 formdata-polyfill: 4.0.10 - /node-forge/1.3.1: + /node-forge@1.3.1: resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==} engines: {node: '>= 6.13.0'} - /node-gyp-build-optional-packages/5.0.7: + /node-gyp-build-optional-packages@5.0.7: resolution: {integrity: sha512-YlCCc6Wffkx0kHkmam79GKvDQ6x+QZkMjFGrIMxgFNILFvGSbCp2fCBC55pGTT9gVaz8Na5CLmxt/urtzRv36w==} hasBin: true + requiresBuild: true dev: false optional: true - /node-gyp-build/4.6.0: + /node-gyp-build@4.6.0: resolution: {integrity: sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ==} hasBin: true - /node-gyp/9.3.1: + /node-gyp@9.3.1: resolution: {integrity: sha512-4Q16ZCqq3g8awk6UplT7AuxQ35XN4R/yf/+wSAwcBUAjg7l58RTactWaP8fIDTi0FzI7YcVLujwExakZlfWkXg==} engines: {node: ^12.13 || ^14.13 || >=16} hasBin: true @@ -36031,14 +37132,14 @@ packages: - supports-color dev: true - /node-int64/0.4.0: + /node-int64@0.4.0: resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} - /node-machine-id/1.1.12: + /node-machine-id@1.1.12: resolution: {integrity: sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==} dev: true - /node-mailjet/6.0.4: + /node-mailjet@6.0.4: resolution: {integrity: sha512-gNWfbVnsH+KxkhfDLPA8OrQ2Q25OgyKp19C7DSJYmN2zNfqTKIXzhB9BZwgxZtErmPxz2Fp1NR18WPCmrJDuwg==} engines: {node: '>= 12.0.0', npm: '>= 6.9.0'} dependencies: @@ -36049,38 +37150,38 @@ packages: - debug dev: false - /node-preload/0.2.1: + /node-preload@0.2.1: resolution: {integrity: sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ==} engines: {node: '>=8'} dependencies: process-on-spawn: 1.0.0 dev: true - /node-releases/2.0.13: + /node-releases@2.0.13: resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==} - /nodemailer-fetch/1.6.0: + /nodemailer-fetch@1.6.0: resolution: {integrity: sha512-P7S5CEVGAmDrrpn351aXOLYs1R/7fD5NamfMCHyi6WIkbjS2eeZUB/TkuvpOQr0bvRZicVqo59+8wbhR3yrJbQ==} dev: false - /nodemailer-shared/1.1.0: + /nodemailer-shared@1.1.0: resolution: {integrity: sha512-68xW5LSyPWv8R0GLm6veAvm7E+XFXkVgvE3FW0FGxNMMZqMkPFeGDVALfR1DPdSfcoO36PnW7q5AAOgFImEZGg==} dependencies: nodemailer-fetch: 1.6.0 dev: false - /nodemailer/6.9.1: + /nodemailer@6.9.1: resolution: {integrity: sha512-qHw7dOiU5UKNnQpXktdgQ1d3OFgRAekuvbJLcdG5dnEo/GtcTHRYM7+UfJARdOFU9WUQO8OiIamgWPmiSFHYAA==} engines: {node: '>=6.0.0'} dev: false - /nodemon/3.0.1: + /nodemon@3.0.1: resolution: {integrity: sha512-g9AZ7HmkhQkqXkRc20w+ZfQ73cHLbE8hnPbtaFbFtCumZsjyMhKk9LajQ07U5Ux28lvFjZ5X7HvWR1xzU8jHVw==} engines: {node: '>=10'} hasBin: true dependencies: chokidar: 3.5.3 - debug: 3.2.7_supports-color@5.5.0 + debug: 3.2.7(supports-color@5.5.0) ignore-by-default: 1.0.1 minimatch: 3.1.2 pstree.remy: 1.1.8 @@ -36091,28 +37192,28 @@ packages: undefsafe: 2.0.5 dev: true - /nopt/1.0.10: + /nopt@1.0.10: resolution: {integrity: sha512-NWmpvLSqUrgrAC9HCuxEvb+PSloHpqVu+FqcO4eeF2h5qYRhA7ev6KvelyQAKtegUbC6RypJnlEOhd8vloNKYg==} hasBin: true dependencies: abbrev: 1.1.1 dev: true - /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 dependencies: abbrev: 1.1.1 - /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 @@ -36121,7 +37222,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: @@ -36131,7 +37232,7 @@ packages: validate-npm-package-license: 3.0.4 dev: true - /normalize-package-data/4.0.1: + /normalize-package-data@4.0.1: resolution: {integrity: sha512-EBk5QKKuocMJhB3BILuKhmaPjI8vNRSpIfO9woLC6NyHVkKKdVEdAO1mrT0ZfxNR1lKwCcTkuZfmGIFdizZ8Pg==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: @@ -36141,7 +37242,7 @@ packages: validate-npm-package-license: 3.0.4 dev: true - /normalize-package-data/5.0.0: + /normalize-package-data@5.0.0: resolution: {integrity: sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: @@ -36151,82 +37252,82 @@ 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 dev: true - /normalize-path/3.0.0: + /normalize-path@3.0.0: resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} engines: {node: '>=0.10.0'} - /normalize-range/0.1.2: + /normalize-range@0.1.2: resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} engines: {node: '>=0.10.0'} - /normalize-registry-url/2.0.0: + /normalize-registry-url@2.0.0: resolution: {integrity: sha512-3e9FwDyRAhbxXw4slm4Tjv40u78yPwMc/WZkACpqNQOs5sM7wic853AeTLkMFEVhivZkclGYlse8iYsklz0Yvg==} dev: true - /normalize-url/6.1.0: + /normalize-url@6.1.0: resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==} engines: {node: '>=10'} - /notepack.io/2.2.0: + /notepack.io@2.2.0: resolution: {integrity: sha512-9b5w3t5VSH6ZPosoYnyDONnUTF8o0UkBw7JLA6eBlYJWyGT1Q3vQa8Hmuj1/X6RYvHjjygBDgw6fJhe0JEojfw==} dev: false - /npm-bundled/1.1.2: + /npm-bundled@1.1.2: resolution: {integrity: sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==} dependencies: npm-normalize-package-bin: 1.0.1 dev: true - /npm-bundled/2.0.1: + /npm-bundled@2.0.1: resolution: {integrity: sha512-gZLxXdjEzE/+mOstGDqR6b0EkhJ+kM6fxM6vUuckuctuVPh80Q6pw/rSZj9s4Gex9GxWtIicO1pc8DB9KZWudw==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: npm-normalize-package-bin: 2.0.0 dev: true - /npm-bundled/3.0.0: + /npm-bundled@3.0.0: resolution: {integrity: sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: npm-normalize-package-bin: 3.0.0 dev: true - /npm-install-checks/5.0.0: + /npm-install-checks@5.0.0: resolution: {integrity: sha512-65lUsMI8ztHCxFz5ckCEC44DRvEGdZX5usQFriauxHEwt7upv1FKaQEmAtU0YnOAdwuNWCmk64xYiQABNrEyLA==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: semver: 7.5.4 dev: true - /npm-install-checks/6.1.0: + /npm-install-checks@6.1.0: resolution: {integrity: sha512-udSGENih/5xKh3Ex+L0PtZcOt0Pa+6ppDLnpG5D49/EhMja3LupaY9E/DtJTxyFBwE09ot7Fc+H4DywnZNWTVA==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: semver: 7.5.4 dev: true - /npm-normalize-package-bin/1.0.1: + /npm-normalize-package-bin@1.0.1: resolution: {integrity: sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==} dev: true - /npm-normalize-package-bin/2.0.0: + /npm-normalize-package-bin@2.0.0: resolution: {integrity: sha512-awzfKUO7v0FscrSpRoogyNm0sajikhBWpU0QMrW09AMi9n1PoKU6WaIqUzuJSQnpciZZmJ/jMZ2Egfmb/9LiWQ==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dev: true - /npm-normalize-package-bin/3.0.0: + /npm-normalize-package-bin@3.0.0: resolution: {integrity: sha512-g+DPQSkusnk7HYXr75NtzkIP4+N81i3RPsGFidF3DzHd9MT9wWngmqoeg/fnHFz5MNdtG4w03s+QnhewSLTT2Q==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dev: true - /npm-package-arg/10.1.0: + /npm-package-arg@10.1.0: resolution: {integrity: sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: @@ -36236,7 +37337,7 @@ packages: validate-npm-package-name: 5.0.0 dev: true - /npm-package-arg/8.1.1: + /npm-package-arg@8.1.1: resolution: {integrity: sha512-CsP95FhWQDwNqiYS+Q0mZ7FAEDytDZAkNxQqea6IaAFJTAY9Lhhqyl0irU/6PMc7BGfUmnsbHcqxJD7XuVM/rg==} engines: {node: '>=10'} dependencies: @@ -36245,7 +37346,7 @@ packages: validate-npm-package-name: 3.0.0 dev: true - /npm-package-arg/9.1.2: + /npm-package-arg@9.1.2: resolution: {integrity: sha512-pzd9rLEx4TfNJkovvlBSLGhq31gGu2QDexFPWT19yCDh0JgnRhlBLNo5759N0AJmBk+kQ9Y/hXoLnlgFD+ukmg==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: @@ -36255,7 +37356,7 @@ packages: validate-npm-package-name: 4.0.0 dev: true - /npm-packlist/5.1.3: + /npm-packlist@5.1.3: resolution: {integrity: sha512-263/0NGrn32YFYi4J533qzrQ/krmmrWwhKkzwTuM4f/07ug51odoaNjUexxO4vxlzURHcmYMH1QjvHjsNDKLVg==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} hasBin: true @@ -36266,14 +37367,14 @@ packages: npm-normalize-package-bin: 2.0.0 dev: true - /npm-packlist/7.0.4: + /npm-packlist@7.0.4: resolution: {integrity: sha512-d6RGEuRrNS5/N84iglPivjaJPxhDbZmlbTwTDX2IbcRHG5bZCdtysYMhwiPvcF4GisXHGn7xsxv+GQ7T/02M5Q==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: ignore-walk: 6.0.2 dev: true - /npm-pick-manifest/7.0.2: + /npm-pick-manifest@7.0.2: resolution: {integrity: sha512-gk37SyRmlIjvTfcYl6RzDbSmS9Y4TOBXfsPnoYqTHARNgWbyDiCSMLUpmALDj4jjcTZpURiEfsSHJj9k7EV4Rw==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: @@ -36283,7 +37384,7 @@ packages: semver: 7.5.4 dev: true - /npm-pick-manifest/8.0.1: + /npm-pick-manifest@8.0.1: resolution: {integrity: sha512-mRtvlBjTsJvfCCdmPtiu2bdlx8d/KXtF7yNXNWe7G0Z36qWA9Ny5zXsI2PfBZEv7SXgoxTmNaTzGSbbzDZChoA==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: @@ -36293,7 +37394,7 @@ packages: semver: 7.5.4 dev: true - /npm-registry-fetch/13.3.1: + /npm-registry-fetch@13.3.1: resolution: {integrity: sha512-eukJPi++DKRTjSBRcDZSDDsGqRK3ehbxfFUcgaRd0Yp6kRwOwh2WVn0r+8rMB4nnuzvAk6rQVzl6K5CkYOmnvw==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: @@ -36309,7 +37410,7 @@ packages: - supports-color dev: true - /npm-registry-fetch/14.0.3: + /npm-registry-fetch@14.0.3: resolution: {integrity: sha512-YaeRbVNpnWvsGOjX2wk5s85XJ7l1qQBGAp724h8e2CZFFhMSuw9enom7K1mWVUtvXO1uUSFIAPofQK0pPN0ZcA==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: @@ -36325,7 +37426,7 @@ packages: - supports-color dev: true - /npm-run-all/4.1.5: + /npm-run-all@4.1.5: resolution: {integrity: sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==} engines: {node: '>= 4'} hasBin: true @@ -36341,27 +37442,27 @@ packages: string.prototype.padend: 3.1.4 dev: true - /npm-run-path/2.0.2: + /npm-run-path@2.0.2: resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==} engines: {node: '>=4'} dependencies: path-key: 2.0.1 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 - /npm-run-path/5.1.0: + /npm-run-path@5.1.0: resolution: {integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: path-key: 4.0.0 dev: true - /npm/8.19.4: + /npm@8.19.4: resolution: {integrity: sha512-3HANl8i9DKnUA89P4KEgVNN28EjSeDCmvEqbzOAuxCFDzdBZzjUl99zgnGpOUumvW5lvJo2HKcjrsc+tfyv1Hw==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} hasBin: true @@ -36441,7 +37542,7 @@ packages: - which - write-file-atomic - /npmlog/5.0.1: + /npmlog@5.0.1: resolution: {integrity: sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==} dependencies: are-we-there-yet: 2.0.0 @@ -36450,7 +37551,7 @@ packages: set-blocking: 2.0.0 dev: false - /npmlog/6.0.2: + /npmlog@6.0.2: resolution: {integrity: sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: @@ -36460,32 +37561,32 @@ packages: set-blocking: 2.0.0 dev: true - /nth-check/2.1.1: + /nth-check@2.1.1: resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} dependencies: boolbase: 1.0.0 - /num2fraction/1.2.2: + /num2fraction@1.2.2: resolution: {integrity: sha512-Y1wZESM7VUThYY+4W+X4ySH2maqcA+p7UR+w8VWNWVAd6lwuXXWz/w/Cz43J/dI2I+PS6wD5N+bJUF+gjWvIqg==} dev: false - /number-is-nan/1.0.1: + /number-is-nan@1.0.1: resolution: {integrity: sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==} engines: {node: '>=0.10.0'} dev: true - /nwsapi/2.2.3: + /nwsapi@2.2.3: resolution: {integrity: sha512-jscxIO4/VKScHlbmFBdV1Z6LXnLO+ZR4VMtypudUdfwtKxUN3TQcNFIHLwKtrUbDyHN4/GycY9+oRGZ2XMXYPw==} - /nx/13.10.6_typescript@4.9.5: + /nx@13.10.6(typescript@4.9.5): resolution: {integrity: sha512-kkW1Yy/DE/56XfMqFhMDbM9KAYw2xpSyMdak0ZK7aPnoy/TgZT/PmeHXUzip+GWQYQhLzUD2i/68G3PgFq0YQQ==} hasBin: true requiresBuild: true dependencies: - '@nrwl/cli': 13.10.6_typescript@4.9.5 - '@nrwl/tao': 13.10.6_typescript@4.9.5 + '@nrwl/cli': 13.10.6(typescript@4.9.5) + '@nrwl/tao': 13.10.6(typescript@4.9.5) '@parcel/watcher': 2.0.4 - '@swc-node/register': 1.6.4_jn42jkxdhvnoxcj2sz3bqdtc5u + '@swc-node/register': 1.6.4(@swc/core@1.3.49)(typescript@4.9.5) '@swc/core': 1.3.49 chalk: 4.1.0 chokidar: 3.5.3 @@ -36504,7 +37605,7 @@ packages: npm-run-path: 4.0.1 open: 8.4.2 rxjs: 6.6.7 - rxjs-for-await: 0.0.2_rxjs@6.6.7 + rxjs-for-await: 0.0.2(rxjs@6.6.7) semver: 7.3.4 tar-stream: 2.2.0 tmp: 0.2.1 @@ -36519,7 +37620,7 @@ packages: - typescript dev: true - /nx/15.9.2_@swc+core@1.3.49: + /nx@15.9.2(@swc/core@1.3.49): resolution: {integrity: sha512-wtcs+wsuplSckvgk+bV+/XuGlo+sVWzSG0RpgWBjQYeqA3QsVFEAPVY66Z5cSoukDbTV77ddcAjEw+Rz8oOR1A==} hasBin: true requiresBuild: true @@ -36532,8 +37633,8 @@ packages: '@swc/core': optional: true dependencies: - '@nrwl/cli': 15.9.2_@swc+core@1.3.49 - '@nrwl/tao': 15.9.2 + '@nrwl/cli': 15.9.2(@swc/core@1.3.49) + '@nrwl/tao': 15.9.2(@swc/core@1.3.49) '@parcel/watcher': 2.0.4 '@swc/core': 1.3.49 '@yarnpkg/lockfile': 1.1.0 @@ -36581,7 +37682,7 @@ packages: transitivePeerDependencies: - debug - /nx/15.9.3_@swc+core@1.3.49: + /nx@15.9.3(@swc/core@1.3.49): resolution: {integrity: sha512-GLwbykfTABc7/UZjQEEnV1bQbTVC53W+Zj4xWY640/45I4iZf/TUqKMBCgtLZ9v89gEsKOM4zsx55CqHT3bekA==} hasBin: true requiresBuild: true @@ -36594,8 +37695,8 @@ packages: '@swc/core': optional: true dependencies: - '@nrwl/cli': 15.9.3_@swc+core@1.3.49 - '@nrwl/tao': 15.9.3_@swc+core@1.3.49 + '@nrwl/cli': 15.9.3(@swc/core@1.3.49) + '@nrwl/tao': 15.9.3(@swc/core@1.3.49) '@parcel/watcher': 2.0.4 '@swc/core': 1.3.49 '@yarnpkg/lockfile': 1.1.0 @@ -36644,7 +37745,7 @@ packages: - debug dev: true - /nx/15.9.4_@swc+core@1.3.49: + /nx@15.9.4(@swc/core@1.3.49): resolution: {integrity: sha512-P1G4t59UvE/lkHyruLeSOB5ZuNyh01IwU0tTUOi8f9s/NbP7+OQ8MYVwDV74JHTr6mQgjlS+n+4Eox8tVm9itA==} hasBin: true requiresBuild: true @@ -36657,8 +37758,8 @@ packages: '@swc/core': optional: true dependencies: - '@nrwl/cli': 15.9.4_@swc+core@1.3.49 - '@nrwl/tao': 15.9.4_@swc+core@1.3.49 + '@nrwl/cli': 15.9.4(@swc/core@1.3.49) + '@nrwl/tao': 15.9.4(@swc/core@1.3.49) '@parcel/watcher': 2.0.4 '@swc/core': 1.3.49 '@yarnpkg/lockfile': 1.1.0 @@ -36707,7 +37808,7 @@ packages: - debug dev: true - /nyc/15.1.0: + /nyc@15.1.0: resolution: {integrity: sha512-jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A==} engines: {node: '>=8.9'} hasBin: true @@ -36743,22 +37844,22 @@ packages: - supports-color dev: true - /oauth-sign/0.9.0: + /oauth-sign@0.9.0: resolution: {integrity: sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==} - /oauth/0.9.15: + /oauth@0.9.15: resolution: {integrity: sha512-a5ERWK1kh38ExDEfoO6qUHJb32rd7aYmPHuyCu3Fta/cnICvYmgd2uhuKXvPD+PXB+gCEYYEaQdIRAjCOwAKNA==} dev: false - /obj-case/0.2.1: + /obj-case@0.2.1: resolution: {integrity: sha512-PquYBBTy+Y6Ob/O2574XHhDtHJlV1cJHMCgW+rDRc9J5hhmRelJB3k5dTK/3cVmFVtzvAKuENeuLpoyTzMzkOg==} 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-copy/0.1.0: + /object-copy@0.1.0: resolution: {integrity: sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==} engines: {node: '>=0.10.0'} dependencies: @@ -36767,32 +37868,32 @@ packages: kind-of: 3.2.2 dev: true - /object-hash/3.0.0: + /object-hash@3.0.0: resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} engines: {node: '>= 6'} - /object-inspect/1.12.3: + /object-inspect@1.12.3: resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==} - /object-is/1.1.5: + /object-is@1.1.5: resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 define-properties: 1.2.0 - /object-keys/1.1.1: + /object-keys@1.1.1: resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} engines: {node: '>= 0.4'} - /object-visit/1.0.1: + /object-visit@1.0.1: resolution: {integrity: sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==} engines: {node: '>=0.10.0'} dependencies: isobject: 3.0.1 dev: true - /object.assign/4.1.4: + /object.assign@4.1.4: resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==} engines: {node: '>= 0.4'} dependencies: @@ -36801,7 +37902,7 @@ packages: has-symbols: 1.0.3 object-keys: 1.1.1 - /object.entries/1.1.6: + /object.entries@1.1.6: resolution: {integrity: sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==} engines: {node: '>= 0.4'} dependencies: @@ -36809,7 +37910,7 @@ packages: define-properties: 1.2.0 es-abstract: 1.22.1 - /object.fromentries/2.0.6: + /object.fromentries@2.0.6: resolution: {integrity: sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==} engines: {node: '>= 0.4'} dependencies: @@ -36817,7 +37918,7 @@ packages: define-properties: 1.2.0 es-abstract: 1.22.1 - /object.getownpropertydescriptors/2.1.6: + /object.getownpropertydescriptors@2.1.6: resolution: {integrity: sha512-lq+61g26E/BgHv0ZTFgRvi7NMEPuAxLkFU7rukXjc/AlwH4Am5xXVnIXy3un1bg/JPbXHrixRkK1itUzzPiIjQ==} engines: {node: '>= 0.8'} dependencies: @@ -36827,7 +37928,7 @@ packages: es-abstract: 1.22.1 safe-array-concat: 1.0.0 - /object.groupby/1.0.1: + /object.groupby@1.0.1: resolution: {integrity: sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==} dependencies: call-bind: 1.0.2 @@ -36835,13 +37936,13 @@ packages: es-abstract: 1.22.1 get-intrinsic: 1.2.1 - /object.hasown/1.1.2: + /object.hasown@1.1.2: resolution: {integrity: sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==} dependencies: define-properties: 1.2.0 es-abstract: 1.22.1 - /object.omit/2.0.1: + /object.omit@2.0.1: resolution: {integrity: sha512-UiAM5mhmIuKLsOvrL+B0U2d1hXHF3bFYWIuH1LMpuV2EJEHG1Ntz06PgLEHjm6VFd87NpH8rastvPoyv6UW2fA==} engines: {node: '>=0.10.0'} dependencies: @@ -36849,14 +37950,14 @@ packages: is-extendable: 0.1.1 dev: true - /object.pick/1.3.0: + /object.pick@1.3.0: resolution: {integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==} engines: {node: '>=0.10.0'} dependencies: isobject: 3.0.1 dev: true - /object.values/1.1.6: + /object.values@1.1.6: resolution: {integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==} engines: {node: '>= 0.4'} dependencies: @@ -36864,74 +37965,74 @@ packages: define-properties: 1.2.0 es-abstract: 1.22.1 - /objectorarray/1.0.5: + /objectorarray@1.0.5: resolution: {integrity: sha512-eJJDYkhJFFbBBAxeh8xW+weHlkI28n2ZdQV/J/DNfWfSKlGEf2xcfAbZTv3riEXHAhL9SVOTs2pRmXiSTf78xg==} dev: true - /obuf/1.1.2: + /obuf@1.1.2: resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==} - /on-exit-leak-free/2.1.0: + /on-exit-leak-free@2.1.0: resolution: {integrity: sha512-VuCaZZAjReZ3vUwgOB8LxAosIurDiAW0s13rI1YwmaP++jvcxP77AWoQvenZebpCA2m8WC1/EosPYPMjnRAp/w==} dev: false - /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'} - /once/1.4.0: + /once@1.4.0: resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} dependencies: wrappy: 1.0.2 - /one-time/1.0.0: + /one-time@1.0.0: resolution: {integrity: sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==} dependencies: fn.name: 1.1.0 dev: false - /onesignal-node/3.4.0: + /onesignal-node@3.4.0: resolution: {integrity: sha512-9dNpfU5Xp6VhJLkdZT4kVqmOaU36RJOgp+6REQHyv+hLOcgqqa4/FRXxuHbjRCE51x9BK4jIC/gn2Mnw0gQgFQ==} engines: {node: '>=8.13.0'} dependencies: request: 2.88.2 - request-promise: 4.2.6_request@2.88.2 + request-promise: 4.2.6(request@2.88.2) dev: false - /onetime/2.0.1: + /onetime@2.0.1: resolution: {integrity: sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==} engines: {node: '>=4'} dependencies: mimic-fn: 1.2.0 dev: true - /onetime/5.1.2: + /onetime@5.1.2: resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} engines: {node: '>=6'} dependencies: mimic-fn: 2.1.0 - /onetime/6.0.0: + /onetime@6.0.0: resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} engines: {node: '>=12'} dependencies: mimic-fn: 4.0.0 dev: true - /open-cli/6.0.1: + /open-cli@6.0.1: resolution: {integrity: sha512-A5h8MF3GrT1efn9TiO9LPajDnLtuEiGQT5G8TxWObBlgt1cZJF1YbQo/kNtsD1bJb7HxnT6SaSjzeLq0Rfhygw==} engines: {node: '>=10'} hasBin: true @@ -36943,7 +38044,7 @@ packages: temp-write: 4.0.0 dev: true - /open/7.4.2: + /open@7.4.2: resolution: {integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==} engines: {node: '>=8'} dependencies: @@ -36951,7 +38052,7 @@ packages: is-wsl: 2.2.0 dev: true - /open/8.4.1: + /open@8.4.1: resolution: {integrity: sha512-/4b7qZNhv6Uhd7jjnREh1NjnPxlTq+XNWPG88Ydkj5AILcA5m3ajvcg57pB24EQjKv0dK62XnDqk9c/hkIG5Kg==} engines: {node: '>=12'} dependencies: @@ -36960,7 +38061,7 @@ packages: is-wsl: 2.2.0 dev: true - /open/8.4.2: + /open@8.4.2: resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} engines: {node: '>=12'} dependencies: @@ -36968,20 +38069,20 @@ packages: is-docker: 2.2.1 is-wsl: 2.2.0 - /opener/1.5.2: + /opener@1.5.2: resolution: {integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==} hasBin: true - dev: true - /optimism/0.10.3: + /optimism@0.10.3: resolution: {integrity: sha512-9A5pqGoQk49H6Vhjb9kPgAeeECfUDF6aIICbMDL23kDLStBn1MWk3YvcZ4xWF9CsSf6XEgvRLkXy4xof/56vVw==} dependencies: '@wry/context': 0.4.4 dev: true - /optionator/0.8.3: + /optionator@0.8.3: resolution: {integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==} engines: {node: '>= 0.8.0'} + requiresBuild: true dependencies: deep-is: 0.1.4 fast-levenshtein: 2.0.6 @@ -36992,7 +38093,7 @@ packages: dev: false optional: true - /optionator/0.9.1: + /optionator@0.9.1: resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==} engines: {node: '>= 0.8.0'} dependencies: @@ -37002,9 +38103,8 @@ packages: prelude-ls: 1.2.1 type-check: 0.4.0 word-wrap: 1.2.5 - dev: true - /optionator/0.9.3: + /optionator@0.9.3: resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} engines: {node: '>= 0.8.0'} dependencies: @@ -37015,7 +38115,7 @@ packages: prelude-ls: 1.2.1 type-check: 0.4.0 - /ora/5.4.1: + /ora@5.4.1: resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} engines: {node: '>=10'} dependencies: @@ -37029,12 +38129,12 @@ packages: strip-ansi: 6.0.1 wcwidth: 1.0.1 - /os-homedir/1.0.2: + /os-homedir@1.0.2: resolution: {integrity: sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==} engines: {node: '>=0.10.0'} dev: true - /os-name/4.0.1: + /os-name@4.0.1: resolution: {integrity: sha512-xl9MAoU97MH1Xt5K9ERft2YfCAoaO6msy1OBA0ozxEC0x0TmIoE6K3QvgJMMZA9yKGLmHXNY/YZoDbiGDj4zYw==} engines: {node: '>=10'} dependencies: @@ -37042,127 +38142,127 @@ 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'} - /ospath/1.2.2: + /ospath@1.2.2: resolution: {integrity: sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==} - /p-defer/1.0.0: + /p-defer@1.0.0: resolution: {integrity: sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw==} engines: {node: '>=4'} dev: true - /p-each-series/2.2.0: + /p-each-series@2.2.0: resolution: {integrity: sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA==} engines: {node: '>=8'} dev: true - /p-filter/2.1.0: + /p-filter@2.1.0: resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==} engines: {node: '>=8'} dependencies: p-map: 2.1.0 dev: true - /p-finally/1.0.0: + /p-finally@1.0.0: resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==} engines: {node: '>=4'} dev: true - /p-is-promise/3.0.0: + /p-is-promise@3.0.0: resolution: {integrity: sha512-Wo8VsW4IRQSKVXsJCn7TomUaVtyfjVDn3nUP7kE967BQk0CwFpdbZs0X0uk5sW9mkBa9eNM7hCMaG93WUAwxYQ==} engines: {node: '>=8'} dev: true - /p-limit/1.3.0: + /p-limit@1.3.0: resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==} engines: {node: '>=4'} dependencies: p-try: 1.0.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 - /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: false - /p-locate/2.0.0: + /p-locate@2.0.0: resolution: {integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==} engines: {node: '>=4'} dependencies: p-limit: 1.3.0 dev: true - /p-locate/3.0.0: + /p-locate@3.0.0: resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==} engines: {node: '>=6'} dependencies: p-limit: 2.3.0 - /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 - /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-locate/6.0.0: + /p-locate@6.0.0: resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: p-limit: 4.0.0 dev: false - /p-map-series/2.1.0: + /p-map-series@2.1.0: resolution: {integrity: sha512-RpYIIK1zXSNEOdwxcfe7FdvGcs7+y5n8rifMhMNWvaxRNMPINJHF5GDeuVxWqnfrcHPSCnp7Oo5yNXHId9Av2Q==} engines: {node: '>=8'} dev: true - /p-map/2.1.0: + /p-map@2.1.0: resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==} engines: {node: '>=6'} dev: true - /p-map/3.0.0: + /p-map@3.0.0: resolution: {integrity: sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==} engines: {node: '>=8'} dependencies: aggregate-error: 3.1.0 dev: true - /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-pipe/3.1.0: + /p-pipe@3.1.0: resolution: {integrity: sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw==} engines: {node: '>=8'} dev: true - /p-queue/6.6.2: + /p-queue@6.6.2: resolution: {integrity: sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==} engines: {node: '>=8'} dependencies: @@ -37170,48 +38270,48 @@ packages: p-timeout: 3.2.0 dev: true - /p-reduce/2.1.0: + /p-reduce@2.1.0: resolution: {integrity: sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==} engines: {node: '>=8'} dev: true - /p-retry/4.6.2: + /p-retry@4.6.2: resolution: {integrity: sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==} engines: {node: '>=8'} dependencies: '@types/retry': 0.12.0 retry: 0.13.1 - /p-timeout/3.2.0: + /p-timeout@3.2.0: resolution: {integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==} engines: {node: '>=8'} dependencies: p-finally: 1.0.0 dev: true - /p-try/1.0.0: + /p-try@1.0.0: resolution: {integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==} engines: {node: '>=4'} dev: true - /p-try/2.2.0: + /p-try@2.2.0: resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} engines: {node: '>=6'} - /p-waterfall/2.1.1: + /p-waterfall@2.1.1: resolution: {integrity: sha512-RRTnDb2TBG/epPRI2yYXsimO0v3BXC8Yd3ogr1545IaqKK17VGhbWVeGGN+XfCm/08OK8635nH31c8bATkHuSw==} engines: {node: '>=8'} dependencies: p-reduce: 2.1.0 dev: true - /pac-proxy-agent/7.0.0: + /pac-proxy-agent@7.0.0: resolution: {integrity: sha512-t4tRAMx0uphnZrio0S0Jw9zg3oDbz1zVhQ/Vy18FjLfP1XOLNUEjaVxYCYRI6NS+BsMBXKIzV6cTLOkO9AtywA==} engines: {node: '>= 14'} dependencies: '@tootallnate/quickjs-emscripten': 0.23.0 agent-base: 7.1.0 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) get-uri: 6.0.1 http-proxy-agent: 7.0.0 https-proxy-agent: 7.0.1 @@ -37221,7 +38321,7 @@ packages: - supports-color dev: false - /pac-resolver/7.0.0: + /pac-resolver@7.0.0: resolution: {integrity: sha512-Fd9lT9vJbHYRACT8OhCbZBbxr6KRSawSovFpy8nDGshaK99S/EBhVIHp9+crhxrsZOuvLpgL1n23iyPg6Rl2hg==} engines: {node: '>= 14'} dependencies: @@ -37230,7 +38330,7 @@ packages: netmask: 2.0.2 dev: false - /package-hash/4.0.0: + /package-hash@4.0.0: resolution: {integrity: sha512-whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ==} engines: {node: '>=8'} dependencies: @@ -37240,7 +38340,7 @@ packages: release-zalgo: 1.0.0 dev: true - /pacote/13.6.2: + /pacote@13.6.2: resolution: {integrity: sha512-Gu8fU3GsvOPkak2CkbojR7vjs3k3P9cA6uazKTHdsdV0gpCEQq2opelnEv30KRQWgVzP5Vd/5umjcedma3MKtg==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} hasBin: true @@ -37271,7 +38371,7 @@ packages: - supports-color dev: true - /pacote/15.1.0: + /pacote@15.1.0: resolution: {integrity: sha512-FFcjtIl+BQNfeliSm7MZz5cpdohvUV1yjGnqgVM4UnVF7JslRY0ImXAygdaCDV0jjUADEWu4y5xsDV8brtrTLg==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} hasBin: true @@ -37299,15 +38399,15 @@ packages: - supports-color dev: true - /pako/0.2.9: + /pako@0.2.9: resolution: {integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==} dev: true - /pako/1.0.11: + /pako@1.0.11: resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==} dev: true - /parallel-transform/1.2.0: + /parallel-transform@1.2.0: resolution: {integrity: sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==} dependencies: cyclist: 1.0.1 @@ -37315,39 +38415,39 @@ packages: readable-stream: 2.3.8 dev: true - /param-case/2.1.1: + /param-case@2.1.1: resolution: {integrity: sha512-eQE845L6ot89sk2N8liD8HAuH4ca6Vvr7VWAWwt7+kvvG5aBcPmmphQ68JsEG2qa9n1TykS2DLeMt363AAH8/w==} dependencies: no-case: 2.3.2 dev: true - /param-case/3.0.4: + /param-case@3.0.4: resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==} dependencies: dot-case: 3.0.4 tslib: 2.6.2 - /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 - /parent-module/2.0.0: + /parent-module@2.0.0: resolution: {integrity: sha512-uo0Z9JJeWzv8BG+tRcapBKNJ0dro9cLyczGzulS6EfeyAdeC9sbojtW6XwvYxJkEne9En+J2XEl4zyglVeIwFg==} engines: {node: '>=8'} dependencies: callsites: 3.1.0 dev: true - /parse-author/2.0.0: + /parse-author@2.0.0: resolution: {integrity: sha512-yx5DfvkN8JsHL2xk2Os9oTia467qnvRgey4ahSm2X8epehBLx/gWLcy5KI+Y36ful5DzGbCS6RazqZGgy1gHNw==} engines: {node: '>=0.10.0'} dependencies: author-regex: 1.0.0 dev: true - /parse-conflict-json/2.0.2: + /parse-conflict-json@2.0.2: resolution: {integrity: sha512-jDbRGb00TAPFsKWCpZZOT93SxVP9nONOSgES3AevqRq/CHvavEBvKAjxX9p5Y5F0RZLxH9Ufd9+RwtCsa+lFDA==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: @@ -37356,7 +38456,7 @@ packages: just-diff-apply: 5.5.0 dev: true - /parse-entities/2.0.0: + /parse-entities@2.0.0: resolution: {integrity: sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==} dependencies: character-entities: 1.2.4 @@ -37367,13 +38467,13 @@ packages: is-hexadecimal: 1.0.4 dev: false - /parse-github-url/1.0.2: + /parse-github-url@1.0.2: resolution: {integrity: sha512-kgBf6avCbO3Cn6+RnzRGLkUsv4ZVqv/VfAYkRsyBcgkshNvVBkRn1FEZcW0Jb+npXQWm2vHPnnOqFteZxRRGNw==} engines: {node: '>=0.10.0'} hasBin: true dev: true - /parse-glob/3.0.4: + /parse-glob@3.0.4: resolution: {integrity: sha512-FC5TeK0AwXzq3tUBFtH74naWkPQCEWs4K+xMxWZBlKDWu0bVHXGZa+KKqxKidd7xwhdZ19ZNuF2uO1M/r196HA==} engines: {node: '>=0.10.0'} dependencies: @@ -37383,7 +38483,7 @@ packages: is-glob: 2.0.1 dev: true - /parse-json/4.0.0: + /parse-json@4.0.0: resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==} engines: {node: '>=4'} dependencies: @@ -37391,7 +38491,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: @@ -37400,37 +38500,37 @@ packages: json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 - /parse-ms/2.1.0: + /parse-ms@2.1.0: resolution: {integrity: sha512-kHt7kzLoS9VBZfUsiKjv43mr91ea+U05EyKkEtqp7vNbHxmaVuEqN7XxeEVnGrMtYOAxGrDElSi96K7EgO1zCA==} engines: {node: '>=6'} dev: true - /parse-node-version/1.0.1: + /parse-node-version@1.0.1: resolution: {integrity: sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==} engines: {node: '>= 0.10'} - /parse-passwd/1.0.0: + /parse-passwd@1.0.0: resolution: {integrity: sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==} engines: {node: '>=0.10.0'} dev: true - /parse-path/7.0.0: + /parse-path@7.0.0: resolution: {integrity: sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==} dependencies: protocols: 2.0.1 dev: true - /parse-srcset/1.0.2: + /parse-srcset@1.0.2: resolution: {integrity: sha512-/2qh0lav6CmI15FzA3i/2Bzk2zCgQhGMkvhOhKNcBVQ1ldgpbfiNTVslmooUmWJcADi1f1kIeynbDRVzNlfR6Q==} dev: false - /parse-url/8.1.0: + /parse-url@8.1.0: resolution: {integrity: sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==} dependencies: parse-path: 7.0.0 dev: true - /parse5-html-rewriting-stream/7.0.0: + /parse5-html-rewriting-stream@7.0.0: resolution: {integrity: sha512-mazCyGWkmCRWDI15Zp+UiCqMp/0dgEmkZRvhlsqqKYr4SsVm/TvnSpD9fCvqCA2zoWJcfRym846ejWBBHRiYEg==} dependencies: entities: 4.4.0 @@ -37438,84 +38538,84 @@ packages: parse5-sax-parser: 7.0.0 dev: true - /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: true - /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-sax-parser/7.0.0: + /parse5-sax-parser@7.0.0: resolution: {integrity: sha512-5A+v2SNsq8T6/mG3ahcz8ZtQ0OUFTatxPbeidoMB7tkJSGDY3tdfl4MHovtLQHkEn5CGxijNWRQHhRQ6IRpXKg==} dependencies: parse5: 7.1.2 dev: true - /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 - /parseley/0.12.1: + /parseley@0.12.1: resolution: {integrity: sha512-e6qHKe3a9HWr0oMRVDTRhKce+bRO8VGQR3NyVwcjwrbhMmFCX9KszEV35+rn4AdilFAq9VPxP/Fe1wC9Qjd2lw==} dependencies: leac: 0.6.0 peberminta: 0.9.0 dev: false - /parseurl/1.3.3: + /parseurl@1.3.3: resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} engines: {node: '>= 0.8'} - /pascal-case/2.0.1: + /pascal-case@2.0.1: resolution: {integrity: sha512-qjS4s8rBOJa2Xm0jmxXiyh1+OFf6ekCWOvUaRgAQSktzlTbMotS0nmG9gyYAybCWBcuP4fsBeRCKNwGBnMe2OQ==} dependencies: camel-case: 3.0.0 upper-case-first: 1.1.2 dev: true - /pascal-case/3.1.2: + /pascal-case@3.1.2: resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} dependencies: no-case: 3.0.4 tslib: 2.6.2 - /pascalcase/0.1.1: + /pascalcase@0.1.1: resolution: {integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==} engines: {node: '>=0.10.0'} dev: true - /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.7.0 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-oauth2/1.7.0: + /passport-oauth2@1.7.0: resolution: {integrity: sha512-j2gf34szdTF2Onw3+76alNnaAExlUmHvkc7cL+cmaS5NzHzDP/BvFHJruueQ9XAeNOdpI+CH+PWid8RA7KCwAQ==} engines: {node: '>= 0.4.0'} dependencies: @@ -37526,12 +38626,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: @@ -37540,67 +38640,67 @@ packages: utils-merge: 1.0.1 dev: false - /path-absolute/1.0.1: + /path-absolute@1.0.1: resolution: {integrity: sha512-gds5iRhSeOcDtj8gfWkRHLtZKTPsFVuh7utbjYtvnclw4XM+ffRzJrwqMhOD1PVqef7nBLmgsu1vIujjvAJrAw==} engines: {node: '>=4'} dev: true - /path-browserify/1.0.1: + /path-browserify@1.0.1: resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} dev: true - /path-case/2.1.1: + /path-case@2.1.1: resolution: {integrity: sha512-Ou0N05MioItesaLr9q8TtHVWmJ6fxWdqKB2RohFmNWVyJ+2zeKIeDNWAN6B/Pe7wpzWChhZX6nONYmOnMeJQ/Q==} dependencies: no-case: 2.3.2 dev: true - /path-exists/3.0.0: + /path-exists@3.0.0: resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} engines: {node: '>=4'} - /path-exists/4.0.0: + /path-exists@4.0.0: resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} engines: {node: '>=8'} - /path-exists/5.0.0: + /path-exists@5.0.0: resolution: {integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dev: false - /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-key/4.0.0: + /path-key@4.0.0: resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} engines: {node: '>=12'} dev: true - /path-name/1.0.0: + /path-name@1.0.0: resolution: {integrity: sha512-/dcAb5vMXH0f51yvMuSUqFpxUcA8JelbRmE5mW/p4CUJxrNgK24IkstnV7ENtg2IDGBOu6izKTG6eilbnbNKWQ==} dev: true - /path-parse/1.0.7: + /path-parse@1.0.7: resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} - /path-scurry/1.10.1: + /path-scurry@1.10.1: resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==} engines: {node: '>=16 || 14 >=14.17'} dependencies: lru-cache: 10.0.1 minipass: 5.0.0 - /path-scurry/1.6.4: + /path-scurry@1.6.4: resolution: {integrity: sha512-Qp/9IHkdNiXJ3/Kon++At2nVpnhRiPq/aSvQN+H3U1WZbvNRK0RIQK/o4HMqPoXjpuGJUEWpHSs6Mnjxqh3TQg==} engines: {node: '>=16 || 14 >=14.17'} dependencies: @@ -37608,71 +38708,71 @@ packages: minipass: 5.0.0 dev: true - /path-temp/2.0.0: + /path-temp@2.0.0: resolution: {integrity: sha512-92olbatybjsHTGB2CUnAM7s0mU/27gcMfLNA7t09UftndUdxywlQKur3fzXEPpfLrgZD3I2Bt8+UmiL7YDEgXQ==} engines: {node: '>=8.15'} dependencies: unique-string: 2.0.0 dev: true - /path-to-regexp/0.1.7: + /path-to-regexp@0.1.7: resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==} - /path-to-regexp/1.8.0: + /path-to-regexp@1.8.0: resolution: {integrity: sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==} dependencies: isarray: 0.0.1 - /path-to-regexp/2.4.0: + /path-to-regexp@2.4.0: resolution: {integrity: sha512-G6zHoVqC6GGTQkZwF4lkuEyMbVOjoBKAEybQUypI1WTkqinCOrq2x6U2+phkJ1XsEMTy4LjtwPI7HW+NVrRR2w==} dev: true - /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'} - /pathe/1.1.1: + /pathe@1.1.1: resolution: {integrity: sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q==} 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 - /peberminta/0.9.0: + /peberminta@0.9.0: resolution: {integrity: sha512-XIxfHpEuSJbITd1H3EeQwpcZbTLHc+VVr8ANI9t5sit565tsI4/xK3KWTUFE2e6QiangUkh3B0jihzmGnNrRsQ==} dev: false - /peek-readable/4.1.0: + /peek-readable@4.1.0: resolution: {integrity: sha512-ZI3LnwUv5nOGbQzD9c2iDG6toheuXSZP5esSHBjopsXH4dg19soufvpUGA3uohi5anFtGb2lhAVdHzH6R/Evvg==} engines: {node: '>=8'} dev: true - /peek-stream/1.1.3: + /peek-stream@1.1.3: resolution: {integrity: sha512-FhJ+YbOSBb9/rIl2ZeE/QHEsWn7PqNYt8ARAY3kIgNGOk13g9FGyIY6JIl/xB/3TFRVoTv5as0l11weORrTekA==} dependencies: buffer-from: 1.1.2 @@ -37680,84 +38780,84 @@ packages: through2: 2.0.5 dev: true - /pend/1.2.0: + /pend@1.2.0: resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==} - /pepipost/5.0.0: + /pepipost@5.0.0: resolution: {integrity: sha512-571Qw/YxnBhgg3IeGjAFP6ghouCejghZG8P7EYSbzhBosjPNoFw2V8TBqplPz906qEf7kBHmbxaCP4ngIDQlYA==} dependencies: moment: 2.29.4 request: 2.88.2 dev: false - /performance-now/2.1.0: + /performance-now@2.1.0: resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==} - /phone/3.1.37: + /phone@3.1.37: resolution: {integrity: sha512-DV7+e8TkH1SHITfzayRVa4X6hRzIOX/Ptr7S2NhoetbeaZ6Sw330UO2gtyP8+TWj+KpoCfRJn2d6cFUO2jH5jw==} engines: {node: '>=12'} 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/0.2.1: + /picocolors@0.2.1: resolution: {integrity: sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==} - /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 - /pify/2.3.0: + /pify@2.3.0: resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} engines: {node: '>=0.10.0'} - /pify/3.0.0: + /pify@3.0.0: resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==} engines: {node: '>=4'} dev: true - /pify/4.0.1: + /pify@4.0.1: resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} engines: {node: '>=6'} - /pify/5.0.0: + /pify@5.0.0: resolution: {integrity: sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==} engines: {node: '>=10'} dev: true - /pinkie-promise/2.0.1: + /pinkie-promise@2.0.1: resolution: {integrity: sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==} engines: {node: '>=0.10.0'} dependencies: pinkie: 2.0.4 dev: true - /pinkie/2.0.4: + /pinkie@2.0.4: resolution: {integrity: sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==} engines: {node: '>=0.10.0'} dev: true - /pino-abstract-transport/1.0.0: + /pino-abstract-transport@1.0.0: resolution: {integrity: sha512-c7vo5OpW4wIS42hUVcT5REsL8ZljsUfBjqV/e2sFxmFEFZiq1XLUp5EYLtuDH6PEHq9W1egWqRbnLUP5FuZmOA==} dependencies: readable-stream: 4.3.0 split2: 4.2.0 dev: false - /pino-http/8.3.3: + /pino-http@8.3.3: resolution: {integrity: sha512-p4umsNIXXVu95HD2C8wie/vXH7db5iGRpc+yj1/ZQ3sRtTQLXNjoS6Be5+eI+rQbqCRxen/7k/KSN+qiZubGDw==} dependencies: get-caller-file: 2.0.5 @@ -37766,7 +38866,7 @@ packages: process-warning: 2.2.0 dev: false - /pino-pretty/9.4.0: + /pino-pretty@9.4.0: resolution: {integrity: sha512-NIudkNLxnl7MGj1XkvsqVyRgo6meFP82ECXF2PlOI+9ghmbGuBUUqKJ7IZPIxpJw4vhhSva0IuiDSAuGh6TV9g==} hasBin: true dependencies: @@ -37786,11 +38886,11 @@ packages: strip-json-comments: 3.1.1 dev: false - /pino-std-serializers/6.2.0: + /pino-std-serializers@6.2.0: resolution: {integrity: sha512-IWgSzUL8X1w4BIWTwErRgtV8PyOGOOi60uqv0oKuS/fOA8Nco/OeI6lBuc4dyP8MMfdFwyHqTMcBIA7nDiqEqA==} dev: false - /pino/8.11.0: + /pino@8.11.0: resolution: {integrity: sha512-Z2eKSvlrl2rH8p5eveNUnTdd4AjJk8tAsLkHYZQKGHP4WTh2Gi1cOSOs3eWPqaj+niS3gj4UkoreoaWgF3ZWYg==} hasBin: true dependencies: @@ -37807,11 +38907,11 @@ packages: thread-stream: 2.3.0 dev: false - /pirates/4.0.5: + /pirates@4.0.5: resolution: {integrity: sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==} engines: {node: '>= 6'} - /piscina/3.2.0: + /piscina@3.2.0: resolution: {integrity: sha512-yn/jMdHRw+q2ZJhFhyqsmANcbF6V2QwmD84c6xRau+QpQOmtrBCoRGdvTfeuFDYXB5W2m6MfLkjkvQa9lUSmIA==} dependencies: eventemitter-asyncresource: 1.0.0 @@ -37821,7 +38921,7 @@ packages: nice-napi: 1.0.2 dev: true - /pkg-conf/2.1.0: + /pkg-conf@2.1.0: resolution: {integrity: sha512-C+VUP+8jis7EsQZIhDYmS5qlNtjv2yP4SNtjXK9AP1ZcTRlnSfuumaTnRfYZnYgUUYVIKqL0fRvmUGDV2fmp6g==} engines: {node: '>=4'} dependencies: @@ -37829,38 +38929,38 @@ packages: load-json-file: 4.0.0 dev: true - /pkg-dir/3.0.0: + /pkg-dir@3.0.0: resolution: {integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==} engines: {node: '>=6'} dependencies: find-up: 3.0.0 dev: true - /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 - /pkg-dir/5.0.0: + /pkg-dir@5.0.0: resolution: {integrity: sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==} engines: {node: '>=10'} dependencies: find-up: 5.0.0 - /pkg-up/3.1.0: + /pkg-up@3.1.0: resolution: {integrity: sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==} engines: {node: '>=8'} dependencies: find-up: 3.0.0 - /please-upgrade-node/3.2.0: + /please-upgrade-node@3.2.0: resolution: {integrity: sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==} dependencies: semver-compare: 1.0.0 dev: true - /plivo/4.44.0: + /plivo@4.44.0: resolution: {integrity: sha512-724oFGUime4jUlmFFHzYm4FCCoqxLTt4QMJkj9fwQ17FRdLs3TRRW7sjMYJMHuHI6TLiQw+cTkDTm/MmDs05Ng==} dependencies: '@types/node': 14.18.42 @@ -37881,54 +38981,54 @@ packages: - supports-color dev: false - /pluralize/8.0.0: + /pluralize@8.0.0: resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==} engines: {node: '>=4'} dev: true - /pnp-webpack-plugin/1.7.0_typescript@4.9.5: + /pnp-webpack-plugin@1.7.0(typescript@4.9.5): resolution: {integrity: sha512-2Rb3vm+EXble/sMXNSu6eoBx8e79gKqhNq9F5ZWW6ERNCTE/Q0wQNne5541tE5vKjfM8hpNCYL+LGc1YTfI0dg==} engines: {node: '>=6'} dependencies: - ts-pnp: 1.2.0_typescript@4.9.5 + ts-pnp: 1.2.0(typescript@4.9.5) transitivePeerDependencies: - typescript dev: true - /pnpm/7.33.4: - resolution: {integrity: sha512-xEbf/tkwHpGM/GXq5U/sDSiE6ykLPho+o71PHNRWqkVLm6dJe4G/5Pg619Ow32ovekrr7pii5qtfamujB/+1bA==} - engines: {node: '>=14.6'} + /pnpm@8.9.0: + resolution: {integrity: sha512-74hZk44fBTe5/PAwkEQxE5Lzs4s0QXbmzU/e4hsiVSSwrCobCK4q4t3Vs/9LjKSW1neOlQ8+fJ9VW4EyWYJEHA==} + engines: {node: '>=16.14'} hasBin: true dev: true - /polished/4.2.2: + /polished@4.2.2: resolution: {integrity: sha512-Sz2Lkdxz6F2Pgnpi9U5Ng/WdWAUZxmHrNPoVlm3aAemxoy2Qy7LGjQg4uf8qKelDAUW94F4np3iH2YPf2qefcQ==} engines: {node: '>=10'} dependencies: '@babel/runtime': 7.21.0 - /popper.js/1.16.1: + /popper.js@1.16.1: resolution: {integrity: sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ==} deprecated: You can find the new Popper v2 at @popperjs/core, this package is dedicated to the legacy v1 dev: true - /portfinder/1.0.32: + /portfinder@1.0.32: resolution: {integrity: sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==} engines: {node: '>= 0.12.0'} dependencies: async: 2.6.4 - debug: 3.2.7 + debug: 3.2.7(supports-color@8.1.1) mkdirp: 0.5.6 transitivePeerDependencies: - supports-color dev: true - /posix-character-classes/0.1.1: + /posix-character-classes@0.1.1: resolution: {integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==} engines: {node: '>=0.10.0'} dev: true - /postcss-attribute-case-insensitive/5.0.2_postcss@8.4.21: + /postcss-attribute-case-insensitive@5.0.2(postcss@8.4.21): resolution: {integrity: sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==} engines: {node: ^12 || ^14 || >=16} peerDependencies: @@ -37937,7 +39037,7 @@ packages: postcss: 8.4.21 postcss-selector-parser: 6.0.13 - /postcss-browser-comments/4.0.0_jrpp4geoaqu5dz2gragkckznb4: + /postcss-browser-comments@4.0.0(browserslist@4.21.5)(postcss@8.4.21): resolution: {integrity: sha512-X9X9/WN3KIvY9+hNERUqX9gncsgBA25XaeR+jshHz2j8+sYyHktHw1JdKuMjeLpGktXidqDhA7b/qm1mrBDmgg==} engines: {node: '>=8'} peerDependencies: @@ -37947,7 +39047,7 @@ packages: browserslist: 4.21.5 postcss: 8.4.21 - /postcss-calc/8.2.4_postcss@8.4.29: + /postcss-calc@8.2.4(postcss@8.4.29): resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==} peerDependencies: postcss: ^8.2.2 @@ -37956,7 +39056,7 @@ packages: postcss-selector-parser: 6.0.13 postcss-value-parser: 4.2.0 - /postcss-clamp/4.1.0_postcss@8.4.21: + /postcss-clamp@4.1.0(postcss@8.4.21): resolution: {integrity: sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==} engines: {node: '>=7.6.0'} peerDependencies: @@ -37965,7 +39065,7 @@ packages: postcss: 8.4.21 postcss-value-parser: 4.2.0 - /postcss-color-functional-notation/4.2.4_postcss@8.4.21: + /postcss-color-functional-notation@4.2.4(postcss@8.4.21): resolution: {integrity: sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==} engines: {node: ^12 || ^14 || >=16} peerDependencies: @@ -37974,7 +39074,7 @@ packages: postcss: 8.4.21 postcss-value-parser: 4.2.0 - /postcss-color-hex-alpha/8.0.4_postcss@8.4.21: + /postcss-color-hex-alpha@8.0.4(postcss@8.4.21): resolution: {integrity: sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==} engines: {node: ^12 || ^14 || >=16} peerDependencies: @@ -37983,7 +39083,7 @@ packages: postcss: 8.4.21 postcss-value-parser: 4.2.0 - /postcss-color-rebeccapurple/7.1.1_postcss@8.4.21: + /postcss-color-rebeccapurple@7.1.1(postcss@8.4.21): resolution: {integrity: sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==} engines: {node: ^12 || ^14 || >=16} peerDependencies: @@ -37992,7 +39092,7 @@ packages: postcss: 8.4.21 postcss-value-parser: 4.2.0 - /postcss-colormin/5.3.1_postcss@8.4.29: + /postcss-colormin@5.3.1(postcss@8.4.29): resolution: {integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -38004,7 +39104,7 @@ packages: postcss: 8.4.29 postcss-value-parser: 4.2.0 - /postcss-convert-values/5.1.3_postcss@8.4.29: + /postcss-convert-values@5.1.3(postcss@8.4.29): resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -38014,7 +39114,7 @@ packages: postcss: 8.4.29 postcss-value-parser: 4.2.0 - /postcss-custom-media/8.0.2_postcss@8.4.21: + /postcss-custom-media@8.0.2(postcss@8.4.21): resolution: {integrity: sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==} engines: {node: ^12 || ^14 || >=16} peerDependencies: @@ -38023,7 +39123,7 @@ packages: postcss: 8.4.21 postcss-value-parser: 4.2.0 - /postcss-custom-properties/12.1.11_postcss@8.4.21: + /postcss-custom-properties@12.1.11(postcss@8.4.21): resolution: {integrity: sha512-0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ==} engines: {node: ^12 || ^14 || >=16} peerDependencies: @@ -38032,7 +39132,7 @@ packages: postcss: 8.4.21 postcss-value-parser: 4.2.0 - /postcss-custom-selectors/6.0.3_postcss@8.4.21: + /postcss-custom-selectors@6.0.3(postcss@8.4.21): resolution: {integrity: sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==} engines: {node: ^12 || ^14 || >=16} peerDependencies: @@ -38041,7 +39141,7 @@ packages: postcss: 8.4.21 postcss-selector-parser: 6.0.13 - /postcss-dir-pseudo-class/6.0.5_postcss@8.4.21: + /postcss-dir-pseudo-class@6.0.5(postcss@8.4.21): resolution: {integrity: sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==} engines: {node: ^12 || ^14 || >=16} peerDependencies: @@ -38050,7 +39150,7 @@ packages: postcss: 8.4.21 postcss-selector-parser: 6.0.13 - /postcss-discard-comments/5.1.2_postcss@8.4.29: + /postcss-discard-comments@5.1.2(postcss@8.4.29): resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -38058,7 +39158,7 @@ packages: dependencies: postcss: 8.4.29 - /postcss-discard-duplicates/5.1.0_postcss@8.4.29: + /postcss-discard-duplicates@5.1.0(postcss@8.4.29): resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -38066,7 +39166,7 @@ packages: dependencies: postcss: 8.4.29 - /postcss-discard-empty/5.1.1_postcss@8.4.29: + /postcss-discard-empty@5.1.1(postcss@8.4.29): resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -38074,7 +39174,7 @@ packages: dependencies: postcss: 8.4.29 - /postcss-discard-overridden/5.1.0_postcss@8.4.29: + /postcss-discard-overridden@5.1.0(postcss@8.4.29): resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -38082,17 +39182,17 @@ packages: dependencies: postcss: 8.4.29 - /postcss-double-position-gradients/3.1.2_postcss@8.4.21: + /postcss-double-position-gradients@3.1.2(postcss@8.4.21): resolution: {integrity: sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - '@csstools/postcss-progressive-custom-properties': 1.3.0_postcss@8.4.21 + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.21) postcss: 8.4.21 postcss-value-parser: 4.2.0 - /postcss-env-function/4.0.6_postcss@8.4.21: + /postcss-env-function@4.0.6(postcss@8.4.21): resolution: {integrity: sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==} engines: {node: ^12 || ^14 || >=16} peerDependencies: @@ -38101,14 +39201,14 @@ packages: postcss: 8.4.21 postcss-value-parser: 4.2.0 - /postcss-flexbugs-fixes/5.0.2_postcss@8.4.21: + /postcss-flexbugs-fixes@5.0.2(postcss@8.4.21): resolution: {integrity: sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==} peerDependencies: postcss: ^8.1.4 dependencies: postcss: 8.4.21 - /postcss-focus-visible/6.0.4_postcss@8.4.21: + /postcss-focus-visible@6.0.4(postcss@8.4.21): resolution: {integrity: sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==} engines: {node: ^12 || ^14 || >=16} peerDependencies: @@ -38117,7 +39217,7 @@ packages: postcss: 8.4.21 postcss-selector-parser: 6.0.13 - /postcss-focus-within/5.0.4_postcss@8.4.21: + /postcss-focus-within@5.0.4(postcss@8.4.21): resolution: {integrity: sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==} engines: {node: ^12 || ^14 || >=16} peerDependencies: @@ -38126,14 +39226,14 @@ packages: postcss: 8.4.21 postcss-selector-parser: 6.0.13 - /postcss-font-variant/5.0.0_postcss@8.4.21: + /postcss-font-variant@5.0.0(postcss@8.4.21): resolution: {integrity: sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==} peerDependencies: postcss: ^8.1.0 dependencies: postcss: 8.4.21 - /postcss-gap-properties/3.0.5_postcss@8.4.21: + /postcss-gap-properties@3.0.5(postcss@8.4.21): resolution: {integrity: sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==} engines: {node: ^12 || ^14 || >=16} peerDependencies: @@ -38141,7 +39241,7 @@ packages: dependencies: postcss: 8.4.21 - /postcss-image-set-function/4.0.7_postcss@8.4.21: + /postcss-image-set-function@4.0.7(postcss@8.4.21): resolution: {integrity: sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==} engines: {node: ^12 || ^14 || >=16} peerDependencies: @@ -38150,7 +39250,7 @@ packages: postcss: 8.4.21 postcss-value-parser: 4.2.0 - /postcss-import/14.1.0_postcss@8.4.21: + /postcss-import@14.1.0(postcss@8.4.21): resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==} engines: {node: '>=10.0.0'} peerDependencies: @@ -38161,14 +39261,14 @@ packages: read-cache: 1.0.0 resolve: 1.22.2 - /postcss-initial/4.0.1_postcss@8.4.21: + /postcss-initial@4.0.1(postcss@8.4.21): resolution: {integrity: sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==} peerDependencies: postcss: ^8.0.0 dependencies: postcss: 8.4.21 - /postcss-js/4.0.1_postcss@8.4.21: + /postcss-js@4.0.1(postcss@8.4.21): resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==} engines: {node: ^12 || ^14 || >= 16} peerDependencies: @@ -38177,17 +39277,17 @@ packages: camelcase-css: 2.0.1 postcss: 8.4.21 - /postcss-lab-function/4.2.1_postcss@8.4.21: + /postcss-lab-function@4.2.1(postcss@8.4.21): resolution: {integrity: sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - '@csstools/postcss-progressive-custom-properties': 1.3.0_postcss@8.4.21 + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.21) postcss: 8.4.21 postcss-value-parser: 4.2.0 - /postcss-load-config/3.1.4_postcss@8.4.21: + /postcss-load-config@3.1.4(postcss@8.4.21)(ts-node@10.9.1): resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} engines: {node: '>= 10'} peerDependencies: @@ -38201,9 +39301,10 @@ packages: dependencies: lilconfig: 2.1.0 postcss: 8.4.21 + ts-node: 10.9.1(@swc/core@1.3.49)(@types/node@16.11.7)(typescript@4.9.5) yaml: 1.10.2 - /postcss-loader/6.2.1_2izhiogyhzv3k6gmxpzxzwhblu: + /postcss-loader@6.2.1(postcss@8.4.21)(webpack@5.78.0): resolution: {integrity: sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==} engines: {node: '>= 12.13.0'} peerDependencies: @@ -38214,9 +39315,9 @@ packages: klona: 2.0.6 postcss: 8.4.21 semver: 7.5.4 - webpack: 5.78.0_u5c4qderjagc6tepfyiby6xhau + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) - /postcss-loader/7.0.2_mquw4qchulb5tpkmg3p2j6qala: + /postcss-loader@7.0.2(postcss@8.4.21)(webpack@5.76.1): resolution: {integrity: sha512-fUJzV/QH7NXUAqV8dWJ9Lg4aTkDCezpTS5HgJ2DvqznexTbSTxgi/dTECvTZ15BwKTtk8G/bqI/QTu2HPd3ZCg==} engines: {node: '>= 14.15.0'} peerDependencies: @@ -38227,10 +39328,10 @@ packages: klona: 2.0.6 postcss: 8.4.21 semver: 7.5.4 - webpack: 5.76.1 + webpack: 5.76.1(@swc/core@1.3.49)(esbuild@0.17.8) dev: true - /postcss-logical/5.0.4_postcss@8.4.21: + /postcss-logical@5.0.4(postcss@8.4.21): resolution: {integrity: sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==} engines: {node: ^12 || ^14 || >=16} peerDependencies: @@ -38238,7 +39339,7 @@ packages: dependencies: postcss: 8.4.21 - /postcss-media-minmax/5.0.0_postcss@8.4.21: + /postcss-media-minmax@5.0.0(postcss@8.4.21): resolution: {integrity: sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==} engines: {node: '>=10.0.0'} peerDependencies: @@ -38246,7 +39347,7 @@ packages: dependencies: postcss: 8.4.21 - /postcss-merge-longhand/5.1.7_postcss@8.4.29: + /postcss-merge-longhand@5.1.7(postcss@8.4.29): resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -38254,9 +39355,9 @@ packages: dependencies: postcss: 8.4.29 postcss-value-parser: 4.2.0 - stylehacks: 5.1.1_postcss@8.4.29 + stylehacks: 5.1.1(postcss@8.4.29) - /postcss-merge-rules/5.1.4_postcss@8.4.29: + /postcss-merge-rules@5.1.4(postcss@8.4.29): resolution: {integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -38264,11 +39365,11 @@ packages: dependencies: browserslist: 4.21.10 caniuse-api: 3.0.0 - cssnano-utils: 3.1.0_postcss@8.4.29 + cssnano-utils: 3.1.0(postcss@8.4.29) postcss: 8.4.29 postcss-selector-parser: 6.0.13 - /postcss-minify-font-values/5.1.0_postcss@8.4.29: + /postcss-minify-font-values@5.1.0(postcss@8.4.29): resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -38277,29 +39378,29 @@ packages: postcss: 8.4.29 postcss-value-parser: 4.2.0 - /postcss-minify-gradients/5.1.1_postcss@8.4.29: + /postcss-minify-gradients@5.1.1(postcss@8.4.29): resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: colord: 2.9.3 - cssnano-utils: 3.1.0_postcss@8.4.29 + cssnano-utils: 3.1.0(postcss@8.4.29) postcss: 8.4.29 postcss-value-parser: 4.2.0 - /postcss-minify-params/5.1.4_postcss@8.4.29: + /postcss-minify-params@5.1.4(postcss@8.4.29): resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: browserslist: 4.21.10 - cssnano-utils: 3.1.0_postcss@8.4.29 + cssnano-utils: 3.1.0(postcss@8.4.29) postcss: 8.4.29 postcss-value-parser: 4.2.0 - /postcss-minify-selectors/5.2.1_postcss@8.4.29: + /postcss-minify-selectors@5.2.1(postcss@8.4.29): resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -38308,7 +39409,7 @@ packages: postcss: 8.4.29 postcss-selector-parser: 6.0.13 - /postcss-modules-extract-imports/3.0.0_postcss@8.4.29: + /postcss-modules-extract-imports@3.0.0(postcss@8.4.29): resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: @@ -38316,18 +39417,18 @@ packages: dependencies: postcss: 8.4.29 - /postcss-modules-local-by-default/4.0.0_postcss@8.4.29: + /postcss-modules-local-by-default@4.0.0(postcss@8.4.29): resolution: {integrity: sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - icss-utils: 5.1.0_postcss@8.4.29 + icss-utils: 5.1.0(postcss@8.4.29) postcss: 8.4.29 postcss-selector-parser: 6.0.13 postcss-value-parser: 4.2.0 - /postcss-modules-scope/3.0.0_postcss@8.4.29: + /postcss-modules-scope@3.0.0(postcss@8.4.29): resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: @@ -38336,16 +39437,16 @@ packages: postcss: 8.4.29 postcss-selector-parser: 6.0.13 - /postcss-modules-values/4.0.0_postcss@8.4.29: + /postcss-modules-values@4.0.0(postcss@8.4.29): resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - icss-utils: 5.1.0_postcss@8.4.29 + icss-utils: 5.1.0(postcss@8.4.29) postcss: 8.4.29 - /postcss-nested/6.0.0_postcss@8.4.21: + /postcss-nested@6.0.0(postcss@8.4.21): resolution: {integrity: sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w==} engines: {node: '>=12.0'} peerDependencies: @@ -38354,17 +39455,17 @@ packages: postcss: 8.4.21 postcss-selector-parser: 6.0.13 - /postcss-nesting/10.2.0_postcss@8.4.21: + /postcss-nesting@10.2.0(postcss@8.4.21): resolution: {integrity: sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - '@csstools/selector-specificity': 2.2.0_c3vcbepomgmxc74cgtawpgpkyi + '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.13) postcss: 8.4.21 postcss-selector-parser: 6.0.13 - /postcss-normalize-charset/5.1.0_postcss@8.4.29: + /postcss-normalize-charset@5.1.0(postcss@8.4.29): resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -38372,7 +39473,7 @@ packages: dependencies: postcss: 8.4.29 - /postcss-normalize-display-values/5.1.0_postcss@8.4.29: + /postcss-normalize-display-values@5.1.0(postcss@8.4.29): resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -38381,7 +39482,7 @@ packages: postcss: 8.4.29 postcss-value-parser: 4.2.0 - /postcss-normalize-positions/5.1.1_postcss@8.4.29: + /postcss-normalize-positions@5.1.1(postcss@8.4.29): resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -38390,7 +39491,7 @@ packages: postcss: 8.4.29 postcss-value-parser: 4.2.0 - /postcss-normalize-repeat-style/5.1.1_postcss@8.4.29: + /postcss-normalize-repeat-style@5.1.1(postcss@8.4.29): resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -38399,7 +39500,7 @@ packages: postcss: 8.4.29 postcss-value-parser: 4.2.0 - /postcss-normalize-string/5.1.0_postcss@8.4.29: + /postcss-normalize-string@5.1.0(postcss@8.4.29): resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -38408,7 +39509,7 @@ packages: postcss: 8.4.29 postcss-value-parser: 4.2.0 - /postcss-normalize-timing-functions/5.1.0_postcss@8.4.29: + /postcss-normalize-timing-functions@5.1.0(postcss@8.4.29): resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -38417,7 +39518,7 @@ packages: postcss: 8.4.29 postcss-value-parser: 4.2.0 - /postcss-normalize-unicode/5.1.1_postcss@8.4.29: + /postcss-normalize-unicode@5.1.1(postcss@8.4.29): resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -38427,7 +39528,7 @@ packages: postcss: 8.4.29 postcss-value-parser: 4.2.0 - /postcss-normalize-url/5.1.0_postcss@8.4.29: + /postcss-normalize-url@5.1.0(postcss@8.4.29): resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -38437,7 +39538,7 @@ packages: postcss: 8.4.29 postcss-value-parser: 4.2.0 - /postcss-normalize-whitespace/5.1.1_postcss@8.4.29: + /postcss-normalize-whitespace@5.1.1(postcss@8.4.29): resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -38446,7 +39547,7 @@ packages: postcss: 8.4.29 postcss-value-parser: 4.2.0 - /postcss-normalize/10.0.1_jrpp4geoaqu5dz2gragkckznb4: + /postcss-normalize@10.0.1(browserslist@4.21.5)(postcss@8.4.21): resolution: {integrity: sha512-+5w18/rDev5mqERcG3W5GZNMJa1eoYYNGo8gB7tEwaos0ajk3ZXAI4mHGcNT47NE+ZnZD1pEpUOFLvltIwmeJA==} engines: {node: '>= 12'} peerDependencies: @@ -38456,10 +39557,10 @@ packages: '@csstools/normalize.css': 12.0.0 browserslist: 4.21.5 postcss: 8.4.21 - postcss-browser-comments: 4.0.0_jrpp4geoaqu5dz2gragkckznb4 + postcss-browser-comments: 4.0.0(browserslist@4.21.5)(postcss@8.4.21) sanitize.css: 13.0.0 - /postcss-opacity-percentage/1.1.3_postcss@8.4.21: + /postcss-opacity-percentage@1.1.3(postcss@8.4.21): resolution: {integrity: sha512-An6Ba4pHBiDtyVpSLymUUERMo2cU7s+Obz6BTrS+gxkbnSBNKSuD0AVUc+CpBMrpVPKKfoVz0WQCX+Tnst0i4A==} engines: {node: ^12 || ^14 || >=16} peerDependencies: @@ -38467,17 +39568,17 @@ packages: dependencies: postcss: 8.4.21 - /postcss-ordered-values/5.1.3_postcss@8.4.29: + /postcss-ordered-values@5.1.3(postcss@8.4.29): resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - cssnano-utils: 3.1.0_postcss@8.4.29 + cssnano-utils: 3.1.0(postcss@8.4.29) postcss: 8.4.29 postcss-value-parser: 4.2.0 - /postcss-overflow-shorthand/3.0.4_postcss@8.4.21: + /postcss-overflow-shorthand@3.0.4(postcss@8.4.21): resolution: {integrity: sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==} engines: {node: ^12 || ^14 || >=16} peerDependencies: @@ -38486,14 +39587,14 @@ packages: postcss: 8.4.21 postcss-value-parser: 4.2.0 - /postcss-page-break/3.0.4_postcss@8.4.21: + /postcss-page-break@3.0.4(postcss@8.4.21): resolution: {integrity: sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==} peerDependencies: postcss: ^8 dependencies: postcss: 8.4.21 - /postcss-place/7.0.5_postcss@8.4.21: + /postcss-place@7.0.5(postcss@8.4.21): resolution: {integrity: sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==} engines: {node: ^12 || ^14 || >=16} peerDependencies: @@ -38502,64 +39603,64 @@ packages: postcss: 8.4.21 postcss-value-parser: 4.2.0 - /postcss-preset-env/7.8.3_postcss@8.4.21: + /postcss-preset-env@7.8.3(postcss@8.4.21): resolution: {integrity: sha512-T1LgRm5uEVFSEF83vHZJV2z19lHg4yJuZ6gXZZkqVsqv63nlr6zabMH3l4Pc01FQCyfWVrh2GaUeCVy9Po+Aag==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - '@csstools/postcss-cascade-layers': 1.1.1_postcss@8.4.21 - '@csstools/postcss-color-function': 1.1.1_postcss@8.4.21 - '@csstools/postcss-font-format-keywords': 1.0.1_postcss@8.4.21 - '@csstools/postcss-hwb-function': 1.0.2_postcss@8.4.21 - '@csstools/postcss-ic-unit': 1.0.1_postcss@8.4.21 - '@csstools/postcss-is-pseudo-class': 2.0.7_postcss@8.4.21 - '@csstools/postcss-nested-calc': 1.0.0_postcss@8.4.21 - '@csstools/postcss-normalize-display-values': 1.0.1_postcss@8.4.21 - '@csstools/postcss-oklab-function': 1.1.1_postcss@8.4.21 - '@csstools/postcss-progressive-custom-properties': 1.3.0_postcss@8.4.21 - '@csstools/postcss-stepped-value-functions': 1.0.1_postcss@8.4.21 - '@csstools/postcss-text-decoration-shorthand': 1.0.0_postcss@8.4.21 - '@csstools/postcss-trigonometric-functions': 1.0.2_postcss@8.4.21 - '@csstools/postcss-unset-value': 1.0.2_postcss@8.4.21 - autoprefixer: 10.4.14_postcss@8.4.21 + '@csstools/postcss-cascade-layers': 1.1.1(postcss@8.4.21) + '@csstools/postcss-color-function': 1.1.1(postcss@8.4.21) + '@csstools/postcss-font-format-keywords': 1.0.1(postcss@8.4.21) + '@csstools/postcss-hwb-function': 1.0.2(postcss@8.4.21) + '@csstools/postcss-ic-unit': 1.0.1(postcss@8.4.21) + '@csstools/postcss-is-pseudo-class': 2.0.7(postcss@8.4.21) + '@csstools/postcss-nested-calc': 1.0.0(postcss@8.4.21) + '@csstools/postcss-normalize-display-values': 1.0.1(postcss@8.4.21) + '@csstools/postcss-oklab-function': 1.1.1(postcss@8.4.21) + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.21) + '@csstools/postcss-stepped-value-functions': 1.0.1(postcss@8.4.21) + '@csstools/postcss-text-decoration-shorthand': 1.0.0(postcss@8.4.21) + '@csstools/postcss-trigonometric-functions': 1.0.2(postcss@8.4.21) + '@csstools/postcss-unset-value': 1.0.2(postcss@8.4.21) + autoprefixer: 10.4.14(postcss@8.4.21) browserslist: 4.21.10 - css-blank-pseudo: 3.0.3_postcss@8.4.21 - css-has-pseudo: 3.0.4_postcss@8.4.21 - css-prefers-color-scheme: 6.0.3_postcss@8.4.21 + css-blank-pseudo: 3.0.3(postcss@8.4.21) + css-has-pseudo: 3.0.4(postcss@8.4.21) + css-prefers-color-scheme: 6.0.3(postcss@8.4.21) cssdb: 7.5.4 postcss: 8.4.21 - postcss-attribute-case-insensitive: 5.0.2_postcss@8.4.21 - postcss-clamp: 4.1.0_postcss@8.4.21 - postcss-color-functional-notation: 4.2.4_postcss@8.4.21 - postcss-color-hex-alpha: 8.0.4_postcss@8.4.21 - postcss-color-rebeccapurple: 7.1.1_postcss@8.4.21 - postcss-custom-media: 8.0.2_postcss@8.4.21 - postcss-custom-properties: 12.1.11_postcss@8.4.21 - postcss-custom-selectors: 6.0.3_postcss@8.4.21 - postcss-dir-pseudo-class: 6.0.5_postcss@8.4.21 - postcss-double-position-gradients: 3.1.2_postcss@8.4.21 - postcss-env-function: 4.0.6_postcss@8.4.21 - postcss-focus-visible: 6.0.4_postcss@8.4.21 - postcss-focus-within: 5.0.4_postcss@8.4.21 - postcss-font-variant: 5.0.0_postcss@8.4.21 - postcss-gap-properties: 3.0.5_postcss@8.4.21 - postcss-image-set-function: 4.0.7_postcss@8.4.21 - postcss-initial: 4.0.1_postcss@8.4.21 - postcss-lab-function: 4.2.1_postcss@8.4.21 - postcss-logical: 5.0.4_postcss@8.4.21 - postcss-media-minmax: 5.0.0_postcss@8.4.21 - postcss-nesting: 10.2.0_postcss@8.4.21 - postcss-opacity-percentage: 1.1.3_postcss@8.4.21 - postcss-overflow-shorthand: 3.0.4_postcss@8.4.21 - postcss-page-break: 3.0.4_postcss@8.4.21 - postcss-place: 7.0.5_postcss@8.4.21 - postcss-pseudo-class-any-link: 7.1.6_postcss@8.4.21 - postcss-replace-overflow-wrap: 4.0.0_postcss@8.4.21 - postcss-selector-not: 6.0.1_postcss@8.4.21 + postcss-attribute-case-insensitive: 5.0.2(postcss@8.4.21) + postcss-clamp: 4.1.0(postcss@8.4.21) + postcss-color-functional-notation: 4.2.4(postcss@8.4.21) + postcss-color-hex-alpha: 8.0.4(postcss@8.4.21) + postcss-color-rebeccapurple: 7.1.1(postcss@8.4.21) + postcss-custom-media: 8.0.2(postcss@8.4.21) + postcss-custom-properties: 12.1.11(postcss@8.4.21) + postcss-custom-selectors: 6.0.3(postcss@8.4.21) + postcss-dir-pseudo-class: 6.0.5(postcss@8.4.21) + postcss-double-position-gradients: 3.1.2(postcss@8.4.21) + postcss-env-function: 4.0.6(postcss@8.4.21) + postcss-focus-visible: 6.0.4(postcss@8.4.21) + postcss-focus-within: 5.0.4(postcss@8.4.21) + postcss-font-variant: 5.0.0(postcss@8.4.21) + postcss-gap-properties: 3.0.5(postcss@8.4.21) + postcss-image-set-function: 4.0.7(postcss@8.4.21) + postcss-initial: 4.0.1(postcss@8.4.21) + postcss-lab-function: 4.2.1(postcss@8.4.21) + postcss-logical: 5.0.4(postcss@8.4.21) + postcss-media-minmax: 5.0.0(postcss@8.4.21) + postcss-nesting: 10.2.0(postcss@8.4.21) + postcss-opacity-percentage: 1.1.3(postcss@8.4.21) + postcss-overflow-shorthand: 3.0.4(postcss@8.4.21) + postcss-page-break: 3.0.4(postcss@8.4.21) + postcss-place: 7.0.5(postcss@8.4.21) + postcss-pseudo-class-any-link: 7.1.6(postcss@8.4.21) + postcss-replace-overflow-wrap: 4.0.0(postcss@8.4.21) + postcss-selector-not: 6.0.1(postcss@8.4.21) postcss-value-parser: 4.2.0 - /postcss-pseudo-class-any-link/7.1.6_postcss@8.4.21: + /postcss-pseudo-class-any-link@7.1.6(postcss@8.4.21): resolution: {integrity: sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==} engines: {node: ^12 || ^14 || >=16} peerDependencies: @@ -38568,7 +39669,7 @@ packages: postcss: 8.4.21 postcss-selector-parser: 6.0.13 - /postcss-reduce-initial/5.1.2_postcss@8.4.29: + /postcss-reduce-initial@5.1.2(postcss@8.4.29): resolution: {integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -38578,7 +39679,7 @@ packages: caniuse-api: 3.0.0 postcss: 8.4.29 - /postcss-reduce-transforms/5.1.0_postcss@8.4.29: + /postcss-reduce-transforms@5.1.0(postcss@8.4.29): resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -38587,14 +39688,14 @@ packages: postcss: 8.4.29 postcss-value-parser: 4.2.0 - /postcss-replace-overflow-wrap/4.0.0_postcss@8.4.21: + /postcss-replace-overflow-wrap@4.0.0(postcss@8.4.21): resolution: {integrity: sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==} peerDependencies: postcss: ^8.0.3 dependencies: postcss: 8.4.21 - /postcss-selector-not/6.0.1_postcss@8.4.21: + /postcss-selector-not@6.0.1(postcss@8.4.21): resolution: {integrity: sha512-1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ==} engines: {node: ^12 || ^14 || >=16} peerDependencies: @@ -38603,7 +39704,7 @@ packages: postcss: 8.4.21 postcss-selector-parser: 6.0.13 - /postcss-selector-parser/6.0.11: + /postcss-selector-parser@6.0.11: resolution: {integrity: sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==} engines: {node: '>=4'} dependencies: @@ -38611,14 +39712,14 @@ packages: util-deprecate: 1.0.2 dev: true - /postcss-selector-parser/6.0.13: + /postcss-selector-parser@6.0.13: resolution: {integrity: sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==} engines: {node: '>=4'} dependencies: cssesc: 3.0.0 util-deprecate: 1.0.2 - /postcss-svgo/5.1.0_postcss@8.4.29: + /postcss-svgo@5.1.0(postcss@8.4.29): resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -38628,7 +39729,7 @@ packages: postcss-value-parser: 4.2.0 svgo: 2.8.0 - /postcss-unique-selectors/5.1.1_postcss@8.4.29: + /postcss-unique-selectors@5.1.1(postcss@8.4.29): resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -38637,7 +39738,7 @@ packages: postcss: 8.4.29 postcss-selector-parser: 6.0.13 - /postcss-url/10.1.3_postcss@8.4.21: + /postcss-url@10.1.3(postcss@8.4.21): resolution: {integrity: sha512-FUzyxfI5l2tKmXdYc6VTu3TWZsInayEKPbiyW+P6vmmIrrb4I6CGX0BFoewgYHLK+oIL5FECEK02REYRpBvUCw==} engines: {node: '>=10'} peerDependencies: @@ -38650,17 +39751,17 @@ packages: xxhashjs: 0.2.2 dev: true - /postcss-value-parser/4.2.0: + /postcss-value-parser@4.2.0: resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} - /postcss/7.0.39: + /postcss@7.0.39: resolution: {integrity: sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==} engines: {node: '>=6.0.0'} dependencies: picocolors: 0.2.1 source-map: 0.6.1 - /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: @@ -38668,7 +39769,7 @@ packages: picocolors: 1.0.0 source-map-js: 1.0.2 - /postcss/8.4.29: + /postcss@8.4.29: resolution: {integrity: sha512-cbI+jaqIeu/VGqXEarWkRCCffhjgXc0qjBtXpqJhTBohMUjUQnbBr0xqX3vEKudc4iviTewcJo5ajcec5+wdJw==} engines: {node: ^10 || ^12 || >=14} dependencies: @@ -38676,7 +39777,7 @@ packages: picocolors: 1.0.0 source-map-js: 1.0.2 - /postmark/2.9.5: + /postmark@2.9.5: resolution: {integrity: sha512-F27gc6wrxdn7GADodGpECoWez7FK2Pdach7A9ni5vVZiYz1YUY7T68nvVCzxrbWCjOS7ZujyclYlq1C0a4ar1w==} dependencies: axios: 0.25.0 @@ -38684,56 +39785,57 @@ packages: - debug dev: false - /prefix-style/2.0.1: + /prefix-style@2.0.1: resolution: {integrity: sha512-gdr1MBNVT0drzTq95CbSNdsrBDoHGlb2aDJP/FoY+1e+jSDPOb1Cv554gH2MGiSr2WTcXi/zu+NaFzfcHQkfBQ==} dev: false - /prelude-ls/1.1.2: + /prelude-ls@1.1.2: resolution: {integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==} engines: {node: '>= 0.8.0'} + requiresBuild: true dev: false optional: true - /prelude-ls/1.2.1: + /prelude-ls@1.2.1: resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} engines: {node: '>= 0.8.0'} - /preserve/0.2.0: + /preserve@0.2.0: resolution: {integrity: sha512-s/46sYeylUfHNjI+sA/78FAHlmIuKqI9wNnzEOGehAlUUYeObv5C2mOinXBjyUyWmJ2SfcS2/ydApH4hTF4WXQ==} engines: {node: '>=0.10.0'} dev: true - /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.7: + /prettier@2.8.7: resolution: {integrity: sha512-yPngTo3aXUUmyuTjeTUT75txrf+aMh9FiD7q9ZE/i6r0bPb22g4FsE6Y338PQX1bmfy08i9QQCB7/rcUAVntfw==} 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'} - /pretty-error/2.1.2: + /pretty-error@2.1.2: resolution: {integrity: sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw==} dependencies: lodash: 4.17.21 renderkid: 2.0.7 dev: false - /pretty-error/4.0.0: + /pretty-error@4.0.0: resolution: {integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==} dependencies: lodash: 4.17.21 renderkid: 3.0.0 - /pretty-format/24.9.0: + /pretty-format@24.9.0: resolution: {integrity: sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA==} engines: {node: '>= 6'} dependencies: @@ -38743,7 +39845,7 @@ packages: react-is: 16.13.1 dev: true - /pretty-format/26.6.2: + /pretty-format@26.6.2: resolution: {integrity: sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==} engines: {node: '>= 10'} dependencies: @@ -38752,7 +39854,7 @@ packages: ansi-styles: 4.3.0 react-is: 17.0.2 - /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: @@ -38760,7 +39862,7 @@ packages: ansi-styles: 5.2.0 react-is: 17.0.2 - /pretty-format/28.1.3: + /pretty-format@28.1.3: resolution: {integrity: sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: @@ -38769,7 +39871,7 @@ packages: ansi-styles: 5.2.0 react-is: 18.2.0 - /pretty-format/29.5.0: + /pretty-format@29.5.0: resolution: {integrity: sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -38777,18 +39879,18 @@ packages: ansi-styles: 5.2.0 react-is: 18.2.0 - /pretty-hrtime/1.0.3: + /pretty-hrtime@1.0.3: resolution: {integrity: sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==} engines: {node: '>= 0.8'} - /pretty-ms/7.0.1: + /pretty-ms@7.0.1: resolution: {integrity: sha512-973driJZvxiGOQ5ONsFhOF/DtzPMOMtgC11kCpUrPGMTgqp2q/1gwzCquocrN33is0VZ5GFHXZYMM9l6h67v2Q==} engines: {node: '>=10'} dependencies: parse-ms: 2.1.0 dev: true - /pretty/2.0.0: + /pretty@2.0.0: resolution: {integrity: sha512-G9xUchgTEiNpormdYBl+Pha50gOUovT18IvAe7EYMZ1/f9W/WWMPRn+xI68yXNMUk3QXHDwo/1wV/4NejVNe1w==} engines: {node: '>=0.10.0'} dependencies: @@ -38797,11 +39899,11 @@ packages: js-beautify: 1.14.7 dev: false - /printable-characters/1.0.42: + /printable-characters@1.0.42: resolution: {integrity: sha512-dKp+C4iXWK4vVYZmYSd0KBH5F/h1HoZRsbJ82AVKRO3PEo8L4lBS/vLwhVtpwwuYcoIsVY+1JYKR268yn480uQ==} dev: true - /prism-react-renderer/1.3.5_react@17.0.2: + /prism-react-renderer@1.3.5(react@17.0.2): resolution: {integrity: sha512-IJ+MSwBWKG+SM3b2SUfdrhC+gu01QkV2KmRQgREThBfSQRoufqRfxfHUxpG1WcaFjP+kojcFyO9Qqtpgt3qLCg==} peerDependencies: react: '>=0.14.9' @@ -38809,58 +39911,58 @@ packages: react: 17.0.2 dev: false - /prismjs/1.27.0: + /prismjs@1.27.0: resolution: {integrity: sha512-t13BGPUlFDR7wRB5kQDG4jjl7XeuH6jbJGt11JHPL96qwsEHNX2+68tFXqc1/k+/jALsbSWJKUOT/hcYAZ5LkA==} engines: {node: '>=6'} dev: false - /prismjs/1.29.0: + /prismjs@1.29.0: resolution: {integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==} engines: {node: '>=6'} dev: false - /proc-log/2.0.1: + /proc-log@2.0.1: resolution: {integrity: sha512-Kcmo2FhfDTXdcbfDH76N7uBYHINxc/8GW7UAVuVP9I+Va3uHSerrnKV6dLooga/gh7GlgzuCCr/eoldnL1muGw==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dev: true - /proc-log/3.0.0: + /proc-log@3.0.0: resolution: {integrity: sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dev: true - /process-nextick-args/2.0.1: + /process-nextick-args@2.0.1: resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} - /process-on-spawn/1.0.0: + /process-on-spawn@1.0.0: resolution: {integrity: sha512-1WsPDsUSMmZH5LeMLegqkPDrsGgsWwk1Exipy2hvB0o/F0ASzbpIctSCcZIK1ykJvtTJULEH+20WOFjMvGnCTg==} engines: {node: '>=8'} dependencies: fromentries: 1.3.2 dev: true - /process-warning/2.2.0: + /process-warning@2.2.0: resolution: {integrity: sha512-/1WZ8+VQjR6avWOgHeEPd7SDQmFQ1B5mC1eRXsCm5TarlNmx/wCsa5GEaxGm05BORRtyG/Ex/3xq3TuRvq57qg==} dev: false - /process/0.11.10: + /process@0.11.10: resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} engines: {node: '>= 0.6.0'} - /progress/2.0.3: + /progress@2.0.3: resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} engines: {node: '>=0.4.0'} dev: true - /promise-all-reject-late/1.0.1: + /promise-all-reject-late@1.0.1: resolution: {integrity: sha512-vuf0Lf0lOxyQREH7GDIOUMLS7kz+gs8i6B+Yi8dC68a2sychGrHTJYghMBD6k7eUcH0H5P73EckCA48xijWqXw==} dev: true - /promise-call-limit/1.0.2: + /promise-call-limit@1.0.2: resolution: {integrity: sha512-1vTUnfI2hzui8AEIixbdAJlFY4LFDXqQswy/2eOlThAscXCY4It8FdVuI0fMJGAB2aWGbdQf/gv0skKYXmdrHA==} dev: true - /promise-inflight/1.0.1: + /promise-inflight@1.0.1: resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==} peerDependencies: bluebird: '*' @@ -38869,23 +39971,23 @@ packages: optional: true dev: true - /promise-limit/2.7.0: + /promise-limit@2.7.0: resolution: {integrity: sha512-7nJ6v5lnJsXwGprnGXga4wx6d1POjvi5Qmf1ivTRxTjH4Z/9Czja/UCMLVmB9N93GeWOU93XaFaEt6jbuoagNw==} dev: false - /promise-retry/2.0.1: + /promise-retry@2.0.1: resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==} engines: {node: '>=10'} dependencies: err-code: 2.0.3 retry: 0.12.0 - /promise/8.3.0: + /promise@8.3.0: resolution: {integrity: sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==} dependencies: asap: 2.0.6 - /prompt/1.3.0: + /prompt@1.3.0: resolution: {integrity: sha512-ZkaRWtaLBZl7KKAKndKYUL8WqNT+cQHKRZnT4RYYms48jQkFw3rrBL+/N5K/KtdEveHkxs982MX2BkDKub2ZMg==} engines: {node: '>= 6.0.0'} dependencies: @@ -38896,52 +39998,54 @@ packages: winston: 2.4.7 dev: true - /prompts/2.4.2: + /prompts@2.4.2: resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} engines: {node: '>= 6'} dependencies: kleur: 3.0.3 sisteransi: 1.0.5 - /promzard/0.3.0: + /promzard@0.3.0: resolution: {integrity: sha512-JZeYqd7UAcHCwI+sTOeUDYkvEU+1bQ7iE0UT1MgB/tERkAPkesW46MrpIySzODi+owTjZtiF8Ay5j9m60KmMBw==} dependencies: read: 1.0.7 dev: true - /prop-types/15.8.1: + /prop-types@15.8.1: resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} dependencies: loose-envify: 1.4.0 object-assign: 4.1.1 react-is: 16.13.1 - /propagate/2.0.1: + /propagate@2.0.1: resolution: {integrity: sha512-vGrhOavPSTz4QVNuBNdcNXePNdNMaO1xj9yBeH1ScQPjk/rhg9sSlCXPhMkFuaNNW/syTvYqsnbIJxMBfRbbag==} engines: {node: '>= 8'} dev: false - /property-information/5.6.0: + /property-information@5.6.0: resolution: {integrity: sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==} dependencies: xtend: 4.0.2 dev: false - /proto-list/1.2.4: + /proto-list@1.2.4: resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==} - /proto3-json-serializer/1.1.1: + /proto3-json-serializer@1.1.1: resolution: {integrity: sha512-AwAuY4g9nxx0u52DnSMkqqgyLHaW/XaPLtaAo3y/ZCfeaQB/g4YDH4kb8Wc/mWzWvu0YjOznVnfn373MVZZrgw==} engines: {node: '>=12.0.0'} + requiresBuild: true dependencies: protobufjs: 7.2.5 dev: false optional: true - /protobufjs-cli/1.1.1_protobufjs@7.2.4: + /protobufjs-cli@1.1.1(protobufjs@7.2.4): resolution: {integrity: sha512-VPWMgIcRNyQwWUv8OLPyGQ/0lQY/QTQAVN5fh+XzfDwsVw1FZ2L3DM/bcBf8WPiRz2tNpaov9lPZfNcmNo6LXA==} engines: {node: '>=12.0.0'} hasBin: true + requiresBuild: true peerDependencies: protobufjs: ^7.0.0 dependencies: @@ -38959,7 +40063,7 @@ packages: dev: false optional: true - /protobufjs/7.2.4: + /protobufjs@7.2.4: resolution: {integrity: sha512-AT+RJgD2sH8phPmCf7OUZR8xGdcJRga4+1cOaXJ64hvcSkVhNcRHOwIxUatPH15+nj59WAGTDv3LSGZPEQbJaQ==} engines: {node: '>=12.0.0'} requiresBuild: true @@ -38979,7 +40083,7 @@ packages: dev: false optional: true - /protobufjs/7.2.5: + /protobufjs@7.2.5: resolution: {integrity: sha512-gGXRSXvxQ7UiPgfw8gevrfRWcTlSbOFg+p/N+JVJEK5VhueL2miT6qTymqAmjr1Q5WbOCyJbyrk6JfWKwlFn6A==} engines: {node: '>=12.0.0'} requiresBuild: true @@ -38998,23 +40102,23 @@ packages: long: 5.2.3 dev: false - /protocols/2.0.1: + /protocols@2.0.1: resolution: {integrity: sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==} dev: true - /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/6.3.0: + /proxy-agent@6.3.0: resolution: {integrity: sha512-0LdR757eTj/JfuU7TL2YCuAZnxWXu3tkJbg4Oq3geW/qFNT/32T0sp2HnZ9O0lMR4q3vwAt0+xCA8SR0WAD0og==} engines: {node: '>= 14'} dependencies: agent-base: 7.1.0 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) http-proxy-agent: 7.0.0 https-proxy-agent: 7.0.1 lru-cache: 7.18.3 @@ -39025,41 +40129,42 @@ packages: - supports-color dev: false - /proxy-from-env/1.0.0: + /proxy-from-env@1.0.0: resolution: {integrity: sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==} - /proxy-from-env/1.1.0: + /proxy-from-env@1.1.0: resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} - /prr/1.0.1: + /prr@1.0.1: resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==} + requiresBuild: true optional: true - /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==} - /pstree.remy/1.1.8: + /pstree.remy@1.1.8: resolution: {integrity: sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==} dev: true - /pump/2.0.1: + /pump@2.0.1: resolution: {integrity: sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==} dependencies: end-of-stream: 1.4.4 once: 1.4.0 dev: true - /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 - /pumpify/1.5.1: + /pumpify@1.5.1: resolution: {integrity: sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==} dependencies: duplexify: 3.7.1 @@ -39067,23 +40172,23 @@ packages: pump: 2.0.1 dev: true - /punycode/1.3.2: + /punycode@1.3.2: resolution: {integrity: sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==} - /punycode/1.4.1: + /punycode@1.4.1: resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==} dev: true - /punycode/2.3.0: + /punycode@2.3.0: resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==} engines: {node: '>=6'} - /puppeteer-core/2.1.1: + /puppeteer-core@2.1.1: resolution: {integrity: sha512-n13AWriBMPYxnpbb6bnaY5YoY6rGj8vPLrz6CZF3o0qJNEwlcfJVxBzYZ0NJsQ21UbdJoijPCDrM++SUVEz7+w==} engines: {node: '>=8.16.0'} dependencies: '@types/mime-types': 2.1.1 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) extract-zip: 1.7.0 https-proxy-agent: 4.0.0 mime: 2.6.0 @@ -39098,42 +40203,42 @@ packages: - utf-8-validate dev: true - /pure-rand/6.0.1: + /pure-rand@6.0.1: resolution: {integrity: sha512-t+x1zEHDjBwkDGY5v5ApnZ/utcd4XYDiJsaQQoptTXgUXX95sDg1elCdJghzicm7n2mbCBJ3uYWr6M22SO19rg==} 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'} - /qjobs/1.2.0: + /qjobs@1.2.0: resolution: {integrity: sha512-8YOJEHtxpySA3fFDyCRxA+UUV+fA+rTWnuWvylOK/NCjhY+b4ocCtmu8TtsWb+mYeU+GCHf/S66KZF/AsteKHg==} engines: {node: '>=0.9'} dev: true - /qs/6.10.4: + /qs@6.10.4: resolution: {integrity: sha512-OQiU+C+Ds5qiH91qh/mg0w+8nwQuLjM4F4M/PbmhDOoYehPh+Fb0bDjtR1sOvy7YKxvj28Y/M0PhP5uVX0kB+g==} engines: {node: '>=0.6'} dependencies: side-channel: 1.0.4 - /qs/6.11.0: + /qs@6.11.0: resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==} engines: {node: '>=0.6'} dependencies: side-channel: 1.0.4 - /qs/6.11.1: + /qs@6.11.1: resolution: {integrity: sha512-0wsrzgTz/kAVIeuxSjnpGC56rzYtr6JT/2BwEvMaPhFIoYa1aGO8LbzuU1R0uUYQkLpWBTOj0l/CLAJB64J6nQ==} engines: {node: '>=0.6'} dependencies: side-channel: 1.0.4 - /qs/6.5.3: + /qs@6.5.3: resolution: {integrity: sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==} engines: {node: '>=0.6'} - /query-string/7.1.3: + /query-string@7.1.3: resolution: {integrity: sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==} engines: {node: '>=6'} dependencies: @@ -39143,49 +40248,49 @@ packages: strict-uri-encode: 2.0.0 dev: false - /querystring/0.2.0: + /querystring@0.2.0: resolution: {integrity: sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==} engines: {node: '>=0.4.x'} deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead. - /querystring/0.2.1: + /querystring@0.2.1: resolution: {integrity: sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==} engines: {node: '>=0.4.x'} deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead. - /querystringify/2.2.0: + /querystringify@2.2.0: resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} - /queue-microtask/1.2.3: + /queue-microtask@1.2.3: resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} - /quick-format-unescaped/4.0.4: + /quick-format-unescaped@4.0.4: resolution: {integrity: sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==} dev: false - /quick-lru/1.1.0: + /quick-lru@1.1.0: resolution: {integrity: sha512-tRS7sTgyxMXtLum8L65daJnHUhfDUgboRdcWW2bR9vBfrj2+O5HSMbQOJfJJjIVSPFqbBCF37FpwWXGitDc5tA==} engines: {node: '>=4'} dev: true - /quick-lru/4.0.1: + /quick-lru@4.0.1: resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==} engines: {node: '>=8'} dev: true - /quick-lru/5.1.1: + /quick-lru@5.1.1: resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} engines: {node: '>=10'} - /raf/3.4.1: + /raf@3.4.1: resolution: {integrity: sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==} dependencies: performance-now: 2.1.0 - /ramda/0.29.0: + /ramda@0.29.0: resolution: {integrity: sha512-BBea6L67bYLtdbOqfp8f58fPMqEwx0doL+pAi8TZyp2YWz8R9G8z9x75CZI8W+ftqhFHCpEX2cRnUUXK130iKA==} - /randomatic/3.1.1: + /randomatic@3.1.1: resolution: {integrity: sha512-TuDE5KxZ0J461RVjrJZCJc+J+zCkTb1MbH9AQUq68sMhOMcy9jLcb3BrZKgp9q9Ncltdg4QVqWrH02W2EFFVYw==} engines: {node: '>= 0.10.0'} dependencies: @@ -39194,16 +40299,16 @@ packages: math-random: 1.0.4 dev: true - /randombytes/2.1.0: + /randombytes@2.1.0: resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} dependencies: safe-buffer: 5.2.1 - /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: @@ -39212,7 +40317,7 @@ packages: iconv-lite: 0.4.24 unpipe: 1.0.0 - /raw-body/2.5.2: + /raw-body@2.5.2: resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==} engines: {node: '>= 0.8'} dependencies: @@ -39221,7 +40326,7 @@ packages: iconv-lite: 0.4.24 unpipe: 1.0.0 - /rc-align/4.0.15_sfoxds7t5ydpegc3knd667wn6m: + /rc-align@4.0.15(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-wqJtVH60pka/nOX7/IspElA8gjPNQKIx/ZqJ6heATCkXpe1Zg4cPVrMD2vC96wjsFFL8WsmhPbx9tdMo1qqlIA==} peerDependencies: react: '>=16.9.0' @@ -39230,13 +40335,13 @@ packages: '@babel/runtime': 7.21.0 classnames: 2.3.2 dom-align: 1.12.4 - rc-util: 5.29.3_sfoxds7t5ydpegc3knd667wn6m + rc-util: 5.29.3(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) resize-observer-polyfill: 1.5.1 dev: false - /rc-cascader/3.7.2_sfoxds7t5ydpegc3knd667wn6m: + /rc-cascader@3.7.2(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-5nPEM76eMyikd0NFiy1gjwiB9m+bOzjY6Lnd5bVC6Ar3XLlOpOnlCcV3oBFWLN3f7B18tAGpaAVlT2uyEDCv9w==} peerDependencies: react: '>=16.9.0' @@ -39245,14 +40350,14 @@ packages: '@babel/runtime': 7.21.0 array-tree-filter: 2.1.0 classnames: 2.3.2 - rc-select: 14.1.17_sfoxds7t5ydpegc3knd667wn6m - rc-tree: 5.7.3_sfoxds7t5ydpegc3knd667wn6m - rc-util: 5.29.3_sfoxds7t5ydpegc3knd667wn6m + rc-select: 14.1.17(react-dom@17.0.2)(react@17.0.2) + rc-tree: 5.7.3(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.29.3(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /rc-checkbox/2.3.2_sfoxds7t5ydpegc3knd667wn6m: + /rc-checkbox@2.3.2(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-afVi1FYiGv1U0JlpNH/UaEXdh6WUJjcWokj/nUN2TgG80bfG+MDdbfHKlLcNNba94mbjy2/SXJ1HDgrOkXGAjg==} peerDependencies: react: '>=16.9.0' @@ -39261,10 +40366,10 @@ packages: '@babel/runtime': 7.21.0 classnames: 2.3.2 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /rc-collapse/3.4.2_sfoxds7t5ydpegc3knd667wn6m: + /rc-collapse@3.4.2(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-jpTwLgJzkhAgp2Wpi3xmbTbbYExg6fkptL67Uu5LCRVEj6wqmy0DHTjjeynsjOLsppHGHu41t1ELntZ0lEvS/Q==} peerDependencies: react: '>=16.9.0' @@ -39272,44 +40377,44 @@ packages: dependencies: '@babel/runtime': 7.21.0 classnames: 2.3.2 - rc-motion: 2.6.3_sfoxds7t5ydpegc3knd667wn6m - rc-util: 5.29.3_sfoxds7t5ydpegc3knd667wn6m + rc-motion: 2.6.3(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.29.3(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) shallowequal: 1.1.0 dev: false - /rc-dialog/9.0.2_sfoxds7t5ydpegc3knd667wn6m: + /rc-dialog@9.0.2(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-s3U+24xWUuB6Bn2Lk/Qt6rufy+uT+QvWkiFhNBcO9APLxcFFczWamaq7x9h8SCuhfc1nHcW4y8NbMsnAjNnWyg==} peerDependencies: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: '@babel/runtime': 7.21.0 - '@rc-component/portal': 1.1.1_sfoxds7t5ydpegc3knd667wn6m + '@rc-component/portal': 1.1.1(react-dom@17.0.2)(react@17.0.2) classnames: 2.3.2 - rc-motion: 2.6.3_sfoxds7t5ydpegc3knd667wn6m - rc-util: 5.29.3_sfoxds7t5ydpegc3knd667wn6m + rc-motion: 2.6.3(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.29.3(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /rc-drawer/6.1.5_sfoxds7t5ydpegc3knd667wn6m: + /rc-drawer@6.1.5(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-MDRomQXFi+tvDuwsRAddJ2Oy2ayLCZ29weMzp3rJFO9UNEVLEVV7nuyx5lEgNJIdM//tE6wWQV95cTUiMVqD6w==} peerDependencies: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: '@babel/runtime': 7.21.0 - '@rc-component/portal': 1.1.1_sfoxds7t5ydpegc3knd667wn6m + '@rc-component/portal': 1.1.1(react-dom@17.0.2)(react@17.0.2) classnames: 2.3.2 - rc-motion: 2.6.3_sfoxds7t5ydpegc3knd667wn6m - rc-util: 5.29.3_sfoxds7t5ydpegc3knd667wn6m + rc-motion: 2.6.3(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.29.3(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /rc-dropdown/4.0.1_sfoxds7t5ydpegc3knd667wn6m: + /rc-dropdown@4.0.1(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-OdpXuOcme1rm45cR0Jzgfl1otzmU4vuBVb+etXM8vcaULGokAKVpKlw8p6xzspG7jGd/XxShvq+N3VNEfk/l5g==} peerDependencies: react: '>=16.11.0' @@ -39317,13 +40422,13 @@ packages: dependencies: '@babel/runtime': 7.21.0 classnames: 2.3.2 - rc-trigger: 5.3.4_sfoxds7t5ydpegc3knd667wn6m - rc-util: 5.29.3_sfoxds7t5ydpegc3knd667wn6m + rc-trigger: 5.3.4(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.29.3(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /rc-field-form/1.27.4_sfoxds7t5ydpegc3knd667wn6m: + /rc-field-form@1.27.4(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-PQColQnZimGKArnOh8V2907+VzDCXcqtFvHgevDLtqWc/P7YASb/FqntSmdS8q3VND5SHX3Y1vgMIzY22/f/0Q==} engines: {node: '>=8.x'} peerDependencies: @@ -39332,28 +40437,28 @@ packages: dependencies: '@babel/runtime': 7.21.0 async-validator: 4.2.5 - rc-util: 5.29.3_sfoxds7t5ydpegc3knd667wn6m + rc-util: 5.29.3(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /rc-image/5.13.0_sfoxds7t5ydpegc3knd667wn6m: + /rc-image@5.13.0(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-iZTOmw5eWo2+gcrJMMcnd7SsxVHl3w5xlyCgsULUdJhJbnuI8i/AL0tVOsE7aLn9VfOh1qgDT3mC2G75/c7mqg==} peerDependencies: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: '@babel/runtime': 7.21.0 - '@rc-component/portal': 1.1.1_sfoxds7t5ydpegc3knd667wn6m + '@rc-component/portal': 1.1.1(react-dom@17.0.2)(react@17.0.2) classnames: 2.3.2 - rc-dialog: 9.0.2_sfoxds7t5ydpegc3knd667wn6m - rc-motion: 2.6.3_sfoxds7t5ydpegc3knd667wn6m - rc-util: 5.29.3_sfoxds7t5ydpegc3knd667wn6m + rc-dialog: 9.0.2(react-dom@17.0.2)(react@17.0.2) + rc-motion: 2.6.3(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.29.3(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /rc-input-number/7.3.11_sfoxds7t5ydpegc3knd667wn6m: + /rc-input-number@7.3.11(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-aMWPEjFeles6PQnMqP5eWpxzsvHm9rh1jQOWXExUEIxhX62Fyl/ptifLHOn17+waDG1T/YUb6flfJbvwRhHrbA==} peerDependencies: react: '>=16.9.0' @@ -39361,12 +40466,12 @@ packages: dependencies: '@babel/runtime': 7.21.0 classnames: 2.3.2 - rc-util: 5.29.3_sfoxds7t5ydpegc3knd667wn6m + rc-util: 5.29.3(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /rc-input/0.1.4_sfoxds7t5ydpegc3knd667wn6m: + /rc-input@0.1.4(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-FqDdNz+fV2dKNgfXzcSLKvC+jEs1709t7nD+WdfjrdSaOcefpgc7BUJYadc3usaING+b7ediMTfKxuJBsEFbXA==} peerDependencies: react: '>=16.0.0' @@ -39374,12 +40479,12 @@ packages: dependencies: '@babel/runtime': 7.21.0 classnames: 2.3.2 - rc-util: 5.29.3_sfoxds7t5ydpegc3knd667wn6m + rc-util: 5.29.3(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /rc-mentions/1.13.1_sfoxds7t5ydpegc3knd667wn6m: + /rc-mentions@1.13.1(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-FCkaWw6JQygtOz0+Vxz/M/NWqrWHB9LwqlY2RtcuFqWJNFK9njijOOzTSsBGANliGufVUzx/xuPHmZPBV0+Hgw==} peerDependencies: react: '>=16.9.0' @@ -39387,15 +40492,15 @@ packages: dependencies: '@babel/runtime': 7.21.0 classnames: 2.3.2 - rc-menu: 9.8.4_sfoxds7t5ydpegc3knd667wn6m - rc-textarea: 0.4.7_sfoxds7t5ydpegc3knd667wn6m - rc-trigger: 5.3.4_sfoxds7t5ydpegc3knd667wn6m - rc-util: 5.29.3_sfoxds7t5ydpegc3knd667wn6m + rc-menu: 9.8.4(react-dom@17.0.2)(react@17.0.2) + rc-textarea: 0.4.7(react-dom@17.0.2)(react@17.0.2) + rc-trigger: 5.3.4(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.29.3(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /rc-menu/9.8.4_sfoxds7t5ydpegc3knd667wn6m: + /rc-menu@9.8.4(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-lmw2j8I2fhdIzHmC9ajfImfckt0WDb2KVJJBBRIsxPEw2kGkEfjLMUoB1NgiNT/Q5cC8PdjGOGQjHJIJMwyNMw==} peerDependencies: react: '>=16.9.0' @@ -39403,15 +40508,15 @@ packages: dependencies: '@babel/runtime': 7.21.0 classnames: 2.3.2 - rc-motion: 2.6.3_sfoxds7t5ydpegc3knd667wn6m - rc-overflow: 1.3.0_sfoxds7t5ydpegc3knd667wn6m - rc-trigger: 5.3.4_sfoxds7t5ydpegc3knd667wn6m - rc-util: 5.29.3_sfoxds7t5ydpegc3knd667wn6m + rc-motion: 2.6.3(react-dom@17.0.2)(react@17.0.2) + rc-overflow: 1.3.0(react-dom@17.0.2)(react@17.0.2) + rc-trigger: 5.3.4(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.29.3(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /rc-motion/2.6.3_sfoxds7t5ydpegc3knd667wn6m: + /rc-motion@2.6.3(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-xFLkes3/7VL/J+ah9jJruEW/Akbx5F6jVa2wG5o/ApGKQKSOd5FR3rseHLL9+xtJg4PmCwo6/1tqhDO/T+jFHA==} peerDependencies: react: '>=16.9.0' @@ -39419,12 +40524,12 @@ packages: dependencies: '@babel/runtime': 7.21.0 classnames: 2.3.2 - rc-util: 5.29.3_sfoxds7t5ydpegc3knd667wn6m + rc-util: 5.29.3(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /rc-notification/4.6.1_sfoxds7t5ydpegc3knd667wn6m: + /rc-notification@4.6.1(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-NSmFYwrrdY3+un1GvDAJQw62Xi9LNMSsoQyo95tuaYrcad5Bn9gJUL8AREufRxSQAQnr64u3LtP3EUyLYT6bhw==} engines: {node: '>=8.x'} peerDependencies: @@ -39433,13 +40538,13 @@ packages: dependencies: '@babel/runtime': 7.21.0 classnames: 2.3.2 - rc-motion: 2.6.3_sfoxds7t5ydpegc3knd667wn6m - rc-util: 5.29.3_sfoxds7t5ydpegc3knd667wn6m + rc-motion: 2.6.3(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.29.3(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /rc-overflow/1.3.0_sfoxds7t5ydpegc3knd667wn6m: + /rc-overflow@1.3.0(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-p2Qt4SWPTHAYl4oAao1THy669Fm5q8pYBDBHRaFOekCvcdcrgIx0ByXQMEkyPm8wUDX4BK6aARWecvCRc/7CTA==} peerDependencies: react: '>=16.9.0' @@ -39447,13 +40552,13 @@ packages: dependencies: '@babel/runtime': 7.21.0 classnames: 2.3.2 - rc-resize-observer: 1.3.1_sfoxds7t5ydpegc3knd667wn6m - rc-util: 5.29.3_sfoxds7t5ydpegc3knd667wn6m + rc-resize-observer: 1.3.1(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.29.3(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /rc-pagination/3.2.0_sfoxds7t5ydpegc3knd667wn6m: + /rc-pagination@3.2.0(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-5tIXjB670WwwcAJzAqp2J+cOBS9W3cH/WU1EiYwXljuZ4vtZXKlY2Idq8FZrnYBz8KhN3vwPo9CoV/SJS6SL1w==} peerDependencies: react: '>=16.9.0' @@ -39462,10 +40567,10 @@ packages: '@babel/runtime': 7.21.0 classnames: 2.3.2 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /rc-picker/2.7.0_sfoxds7t5ydpegc3knd667wn6m: + /rc-picker@2.7.0(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-oZH6FZ3j4iuBxHB4NvQ6ABRsS2If/Kpty1YFFsji7/aej6ruGmfM7WnJWQ88AoPfpJ++ya5z+nVEA8yCRYGKyw==} engines: {node: '>=8.x'} peerDependencies: @@ -39477,14 +40582,14 @@ packages: date-fns: 2.29.3 dayjs: 1.11.9 moment: 2.29.4 - rc-trigger: 5.3.4_sfoxds7t5ydpegc3knd667wn6m - rc-util: 5.29.3_sfoxds7t5ydpegc3knd667wn6m + rc-trigger: 5.3.4(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.29.3(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) shallowequal: 1.1.0 dev: false - /rc-progress/3.4.1_sfoxds7t5ydpegc3knd667wn6m: + /rc-progress@3.4.1(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-eAFDHXlk8aWpoXl0llrenPMt9qKHQXphxcVsnKs0FHC6eCSk1ebJtyaVjJUzKe0233ogiLDeEFK1Uihz3s67hw==} peerDependencies: react: '>=16.9.0' @@ -39492,12 +40597,12 @@ packages: dependencies: '@babel/runtime': 7.21.0 classnames: 2.3.2 - rc-util: 5.29.3_sfoxds7t5ydpegc3knd667wn6m + rc-util: 5.29.3(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /rc-rate/2.9.2_sfoxds7t5ydpegc3knd667wn6m: + /rc-rate@2.9.2(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-SaiZFyN8pe0Fgphv8t3+kidlej+cq/EALkAJAc3A0w0XcPaH2L1aggM8bhe1u6GAGuQNAoFvTLjw4qLPGRKV5g==} engines: {node: '>=8.x'} peerDependencies: @@ -39506,12 +40611,12 @@ packages: dependencies: '@babel/runtime': 7.21.0 classnames: 2.3.2 - rc-util: 5.29.3_sfoxds7t5ydpegc3knd667wn6m + rc-util: 5.29.3(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /rc-resize-observer/1.3.1_sfoxds7t5ydpegc3knd667wn6m: + /rc-resize-observer@1.3.1(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-iFUdt3NNhflbY3mwySv5CA1TC06zdJ+pfo0oc27xpf4PIOvfZwZGtD9Kz41wGYqC4SLio93RVAirSSpYlV/uYg==} peerDependencies: react: '>=16.9.0' @@ -39519,13 +40624,13 @@ packages: dependencies: '@babel/runtime': 7.21.0 classnames: 2.3.2 - rc-util: 5.29.3_sfoxds7t5ydpegc3knd667wn6m + rc-util: 5.29.3(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) resize-observer-polyfill: 1.5.1 dev: false - /rc-segmented/2.1.2_sfoxds7t5ydpegc3knd667wn6m: + /rc-segmented@2.1.2(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-qGo1bCr83ESXpXVOCXjFe1QJlCAQXyi9KCiy8eX3rIMYlTeJr/ftySIaTnYsitL18SvWf5ZEHsfqIWoX0EMfFQ==} peerDependencies: react: '>=16.0.0' @@ -39533,13 +40638,13 @@ packages: dependencies: '@babel/runtime': 7.21.0 classnames: 2.3.2 - rc-motion: 2.6.3_sfoxds7t5ydpegc3knd667wn6m - rc-util: 5.29.3_sfoxds7t5ydpegc3knd667wn6m + rc-motion: 2.6.3(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.29.3(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /rc-select/14.1.17_sfoxds7t5ydpegc3knd667wn6m: + /rc-select@14.1.17(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-6qQhMqtoUkkboRqXKKFRR5Nu1mrnw2mC1uxIBIczg7aiJ94qCZBg4Ww8OLT9f4xdyCgbFSGh6r3yB9EBsjoHGA==} engines: {node: '>=8.x'} peerDependencies: @@ -39548,16 +40653,16 @@ packages: dependencies: '@babel/runtime': 7.21.0 classnames: 2.3.2 - rc-motion: 2.6.3_sfoxds7t5ydpegc3knd667wn6m - rc-overflow: 1.3.0_sfoxds7t5ydpegc3knd667wn6m - rc-trigger: 5.3.4_sfoxds7t5ydpegc3knd667wn6m - rc-util: 5.29.3_sfoxds7t5ydpegc3knd667wn6m - rc-virtual-list: 3.4.13_sfoxds7t5ydpegc3knd667wn6m + rc-motion: 2.6.3(react-dom@17.0.2)(react@17.0.2) + rc-overflow: 1.3.0(react-dom@17.0.2)(react@17.0.2) + rc-trigger: 5.3.4(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.29.3(react-dom@17.0.2)(react@17.0.2) + rc-virtual-list: 3.4.13(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /rc-slider/10.0.1_sfoxds7t5ydpegc3knd667wn6m: + /rc-slider@10.0.1(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-igTKF3zBet7oS/3yNiIlmU8KnZ45npmrmHlUUio8PNbIhzMcsh+oE/r2UD42Y6YD2D/s+kzCQkzQrPD6RY435Q==} engines: {node: '>=8.x'} peerDependencies: @@ -39566,13 +40671,13 @@ packages: dependencies: '@babel/runtime': 7.21.0 classnames: 2.3.2 - rc-util: 5.29.3_sfoxds7t5ydpegc3knd667wn6m + rc-util: 5.29.3(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) shallowequal: 1.1.0 dev: false - /rc-steps/5.0.0_sfoxds7t5ydpegc3knd667wn6m: + /rc-steps@5.0.0(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-9TgRvnVYirdhbV0C3syJFj9EhCRqoJAsxt4i1rED5o8/ZcSv5TLIYyo4H8MCjLPvbe2R+oBAm/IYBEtC+OS1Rw==} engines: {node: '>=8.x'} peerDependencies: @@ -39581,12 +40686,12 @@ packages: dependencies: '@babel/runtime': 7.21.0 classnames: 2.3.2 - rc-util: 5.29.3_sfoxds7t5ydpegc3knd667wn6m + rc-util: 5.29.3(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /rc-switch/3.2.2_sfoxds7t5ydpegc3knd667wn6m: + /rc-switch@3.2.2(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-+gUJClsZZzvAHGy1vZfnwySxj+MjLlGRyXKXScrtCTcmiYNPzxDFOxdQ/3pK1Kt/0POvwJ/6ALOR8gwdXGhs+A==} peerDependencies: react: '>=16.9.0' @@ -39594,12 +40699,12 @@ packages: dependencies: '@babel/runtime': 7.21.0 classnames: 2.3.2 - rc-util: 5.29.3_sfoxds7t5ydpegc3knd667wn6m + rc-util: 5.29.3(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /rc-table/7.26.0_sfoxds7t5ydpegc3knd667wn6m: + /rc-table@7.26.0(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-0cD8e6S+DTGAt5nBZQIPFYEaIukn17sfa5uFL98faHlH/whZzD8ii3dbFL4wmUDEL4BLybhYop+QUfZJ4CPvNQ==} engines: {node: '>=8.x'} peerDependencies: @@ -39608,14 +40713,14 @@ packages: dependencies: '@babel/runtime': 7.21.0 classnames: 2.3.2 - rc-resize-observer: 1.3.1_sfoxds7t5ydpegc3knd667wn6m - rc-util: 5.29.3_sfoxds7t5ydpegc3knd667wn6m + rc-resize-observer: 1.3.1(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.29.3(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) shallowequal: 1.1.0 dev: false - /rc-tabs/12.5.10_sfoxds7t5ydpegc3knd667wn6m: + /rc-tabs@12.5.10(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-Ay0l0jtd4eXepFH9vWBvinBjqOpqzcsJTerBGwJy435P2S90Uu38q8U/mvc1sxUEVOXX5ZCFbxcWPnfG3dH+tQ==} engines: {node: '>=8.x'} peerDependencies: @@ -39624,16 +40729,16 @@ packages: dependencies: '@babel/runtime': 7.21.0 classnames: 2.3.2 - rc-dropdown: 4.0.1_sfoxds7t5ydpegc3knd667wn6m - rc-menu: 9.8.4_sfoxds7t5ydpegc3knd667wn6m - rc-motion: 2.6.3_sfoxds7t5ydpegc3knd667wn6m - rc-resize-observer: 1.3.1_sfoxds7t5ydpegc3knd667wn6m - rc-util: 5.29.3_sfoxds7t5ydpegc3knd667wn6m + rc-dropdown: 4.0.1(react-dom@17.0.2)(react@17.0.2) + rc-menu: 9.8.4(react-dom@17.0.2)(react@17.0.2) + rc-motion: 2.6.3(react-dom@17.0.2)(react@17.0.2) + rc-resize-observer: 1.3.1(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.29.3(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /rc-textarea/0.4.7_sfoxds7t5ydpegc3knd667wn6m: + /rc-textarea@0.4.7(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-IQPd1CDI3mnMlkFyzt2O4gQ2lxUsnBAeJEoZGJnkkXgORNqyM9qovdrCj9NzcRfpHgLdzaEbU3AmobNFGUznwQ==} peerDependencies: react: '>=16.9.0' @@ -39641,14 +40746,14 @@ packages: dependencies: '@babel/runtime': 7.21.0 classnames: 2.3.2 - rc-resize-observer: 1.3.1_sfoxds7t5ydpegc3knd667wn6m - rc-util: 5.29.3_sfoxds7t5ydpegc3knd667wn6m + rc-resize-observer: 1.3.1(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.29.3(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) shallowequal: 1.1.0 dev: false - /rc-tooltip/5.2.2_sfoxds7t5ydpegc3knd667wn6m: + /rc-tooltip@5.2.2(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-jtQzU/18S6EI3lhSGoDYhPqNpWajMtS5VV/ld1LwyfrDByQpYmw/LW6U7oFXXLukjfDHQ7Ju705A82PRNFWYhg==} peerDependencies: react: '>=16.9.0' @@ -39656,12 +40761,12 @@ packages: dependencies: '@babel/runtime': 7.21.0 classnames: 2.3.2 - rc-trigger: 5.3.4_sfoxds7t5ydpegc3knd667wn6m + rc-trigger: 5.3.4(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /rc-tree-select/5.5.5_sfoxds7t5ydpegc3knd667wn6m: + /rc-tree-select@5.5.5(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-k2av7jF6tW9bIO4mQhaVdV4kJ1c54oxV3/hHVU+oD251Gb5JN+m1RbJFTMf1o0rAFqkvto33rxMdpafaGKQRJw==} peerDependencies: react: '*' @@ -39669,14 +40774,14 @@ packages: dependencies: '@babel/runtime': 7.21.0 classnames: 2.3.2 - rc-select: 14.1.17_sfoxds7t5ydpegc3knd667wn6m - rc-tree: 5.7.3_sfoxds7t5ydpegc3knd667wn6m - rc-util: 5.29.3_sfoxds7t5ydpegc3knd667wn6m + rc-select: 14.1.17(react-dom@17.0.2)(react@17.0.2) + rc-tree: 5.7.3(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.29.3(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /rc-tree/5.7.3_sfoxds7t5ydpegc3knd667wn6m: + /rc-tree@5.7.3(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-Oql2S9+ZmT+mfTp5SNo1XM0QvkENjc0mPRFsHWRFSPuKird0OYMZZKmLznUJ+0aGDeFFWN42wiUZJtMFhrLgLw==} engines: {node: '>=10.x'} peerDependencies: @@ -39685,14 +40790,14 @@ packages: dependencies: '@babel/runtime': 7.21.0 classnames: 2.3.2 - rc-motion: 2.6.3_sfoxds7t5ydpegc3knd667wn6m - rc-util: 5.29.3_sfoxds7t5ydpegc3knd667wn6m - rc-virtual-list: 3.4.13_sfoxds7t5ydpegc3knd667wn6m + rc-motion: 2.6.3(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.29.3(react-dom@17.0.2)(react@17.0.2) + rc-virtual-list: 3.4.13(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /rc-trigger/5.3.4_sfoxds7t5ydpegc3knd667wn6m: + /rc-trigger@5.3.4(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-mQv+vas0TwKcjAO2izNPkqR4j86OemLRmvL2nOzdP9OWNWA1ivoTt5hzFqYNW9zACwmTezRiN8bttrC7cZzYSw==} engines: {node: '>=8.x'} peerDependencies: @@ -39701,14 +40806,14 @@ packages: dependencies: '@babel/runtime': 7.21.0 classnames: 2.3.2 - rc-align: 4.0.15_sfoxds7t5ydpegc3knd667wn6m - rc-motion: 2.6.3_sfoxds7t5ydpegc3knd667wn6m - rc-util: 5.29.3_sfoxds7t5ydpegc3knd667wn6m + rc-align: 4.0.15(react-dom@17.0.2)(react@17.0.2) + rc-motion: 2.6.3(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.29.3(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /rc-upload/4.3.4_sfoxds7t5ydpegc3knd667wn6m: + /rc-upload@4.3.4(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-uVbtHFGNjHG/RyAfm9fluXB6pvArAGyAx8z7XzXXyorEgVIWj6mOlriuDm0XowDHYz4ycNK0nE0oP3cbFnzxiQ==} peerDependencies: react: '>=16.9.0' @@ -39716,12 +40821,12 @@ packages: dependencies: '@babel/runtime': 7.21.0 classnames: 2.3.2 - rc-util: 5.29.3_sfoxds7t5ydpegc3knd667wn6m + rc-util: 5.29.3(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /rc-util/5.29.3_sfoxds7t5ydpegc3knd667wn6m: + /rc-util@5.29.3(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-wX6ZwQTzY2v7phJBquN4mSEIFR0E0qumlENx0zjENtDvoVSq2s7cR95UidKRO1hOHfDsecsfM9D1gO4Kebs7fA==} peerDependencies: react: '>=16.9.0' @@ -39729,11 +40834,11 @@ packages: dependencies: '@babel/runtime': 7.21.0 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) react-is: 16.13.1 dev: false - /rc-virtual-list/3.4.13_sfoxds7t5ydpegc3knd667wn6m: + /rc-virtual-list@3.4.13(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-cPOVDmcNM7rH6ANotanMDilW/55XnFPw0Jh/GQYtrzZSy3AmWvCnqVNyNC/pgg3lfVmX2994dlzAhuUrd4jG7w==} engines: {node: '>=8.x'} peerDependencies: @@ -39742,13 +40847,13 @@ packages: dependencies: '@babel/runtime': 7.21.0 classnames: 2.3.2 - rc-resize-observer: 1.3.1_sfoxds7t5ydpegc3knd667wn6m - rc-util: 5.29.3_sfoxds7t5ydpegc3knd667wn6m + rc-resize-observer: 1.3.1(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.29.3(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /rc/1.2.8: + /rc@1.2.8: resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} hasBin: true dependencies: @@ -39758,7 +40863,7 @@ packages: strip-json-comments: 2.0.1 dev: true - /react-ace/9.5.0_sfoxds7t5ydpegc3knd667wn6m: + /react-ace@9.5.0(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-4l5FgwGh6K7A0yWVMQlPIXDItM4Q9zzXRqOae8KkCl6MkOob7sC1CzHxZdOGvV+QioKWbX2p5HcdOVUv6cAdSg==} peerDependencies: react: ^0.13.0 || ^0.14.0 || ^15.0.1 || ^16.0.0 || ^17.0.0 @@ -39770,10 +40875,10 @@ packages: lodash.isequal: 4.5.0 prop-types: 15.8.1 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /react-app-polyfill/3.0.0: + /react-app-polyfill@3.0.0: resolution: {integrity: sha512-sZ41cxiU5llIB003yxxQBYrARBqe0repqPTTYBTmMqTz9szeBbE37BehCE891NZsmdZqqP+xWKdT3eo3vOzN8w==} engines: {node: '>=14'} dependencies: @@ -39784,17 +40889,17 @@ packages: regenerator-runtime: 0.13.11 whatwg-fetch: 3.6.2 - /react-app-rewired/2.2.1_react-scripts@5.0.1: + /react-app-rewired@2.2.1(react-scripts@5.0.1): resolution: {integrity: sha512-uFQWTErXeLDrMzOJHKp0h8P1z0LV9HzPGsJ6adOtGlA/B9WfT6Shh4j2tLTTGlXOfiVx6w6iWpp7SOC5pvk+gA==} hasBin: true peerDependencies: react-scripts: '>=2.1.3' dependencies: - react-scripts: 5.0.1_sq2rawq4ox4a7yhpjmexqgy4wu + react-scripts: 5.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(@swc/core@1.3.49)(esbuild@0.18.20)(eslint-import-resolver-webpack@0.13.7)(eslint@8.48.0)(react@17.0.2)(ts-node@10.9.1)(typescript@4.9.5) semver: 5.7.1 dev: true - /react-chartjs-2/4.3.1_5vgmout2ofjcau3vzj5upbaj34: + /react-chartjs-2@4.3.1(chart.js@3.9.1)(react@17.0.2): resolution: {integrity: sha512-5i3mjP6tU7QSn0jvb8I4hudTzHJqS8l00ORJnVwI2sYu0ihpj83Lv2YzfxunfxTZkscKvZu2F2w9LkwNBhj6xA==} peerDependencies: chart.js: ^3.5.0 @@ -39804,31 +40909,31 @@ packages: react: 17.0.2 dev: false - /react-color/2.19.3_react@17.0.2: + /react-color@2.19.3(react@17.0.2): resolution: {integrity: sha512-LEeGE/ZzNLIsFWa1TMe8y5VYqr7bibneWmvJwm1pCn/eNmrabWDh659JSPn9BuaMpEfU83WTOJfnCcjDZwNQTA==} peerDependencies: react: '*' dependencies: - '@icons/material': 0.2.4_react@17.0.2 + '@icons/material': 0.2.4(react@17.0.2) lodash: 4.17.21 lodash-es: 4.17.21 material-colors: 1.2.6 prop-types: 15.8.1 react: 17.0.2 - reactcss: 1.2.3_react@17.0.2 + reactcss: 1.2.3(react@17.0.2) tinycolor2: 1.6.0 dev: false - /react-colorful/5.6.1_sfoxds7t5ydpegc3knd667wn6m: + /react-colorful@5.6.1(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-1exovf0uGTGyq5mXQT0zgQ80uvj2PCwvF8zY1RN9/vbJVSjSo3fsB/4L3ObbF7u70NduSiK4xu4Y6q1MHoUGEw==} peerDependencies: react: '>=16.8.0' react-dom: '>=16.8.0' dependencies: react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) - /react-css-theme-switcher/0.3.0_react@17.0.2: + /react-css-theme-switcher@0.3.0(react@17.0.2): resolution: {integrity: sha512-RV+fJ6mSbtsLOgIgeL4Q8MEH4Hyl72tQvGpCFBbk3ia6ie3KzXO1gfbKTV2q1ryP3hBpmyy1qrX+6E1f937A1A==} engines: {node: '>=10'} peerDependencies: @@ -39837,7 +40942,7 @@ packages: react: 17.0.2 dev: false - /react-custom-scrollbars/4.2.1_sfoxds7t5ydpegc3knd667wn6m: + /react-custom-scrollbars@4.2.1(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-VtJTUvZ7kPh/auZWIbBRceGPkE30XBYe+HktFxuMWBR2eVQQ+Ur6yFJMoaYcNpyGq22uYJ9Wx4UAEcC0K+LNPQ==} peerDependencies: react: ^0.14.0 || ^15.0.0 || ^16.0.0 @@ -39847,10 +40952,10 @@ packages: prop-types: 15.8.1 raf: 3.4.1 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /react-dev-utils/12.0.1_vq6t4wvflba3b6dvvfvomzl76u: + /react-dev-utils@12.0.1(eslint@8.48.0)(typescript@4.9.5)(webpack@5.78.0): resolution: {integrity: sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==} engines: {node: '>=14'} peerDependencies: @@ -39869,7 +40974,7 @@ packages: escape-string-regexp: 4.0.0 filesize: 8.0.7 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 6.5.3_vq6t4wvflba3b6dvvfvomzl76u + fork-ts-checker-webpack-plugin: 6.5.3(eslint@8.48.0)(typescript@4.9.5)(webpack@5.78.0) global-modules: 2.0.0 globby: 11.1.0 gzip-size: 6.0.0 @@ -39885,13 +40990,13 @@ packages: strip-ansi: 6.0.1 text-table: 0.2.0 typescript: 4.9.5 - webpack: 5.78.0_u5c4qderjagc6tepfyiby6xhau + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) transitivePeerDependencies: - eslint - supports-color - vue-template-compiler - /react-docgen-typescript/2.2.2_typescript@4.9.5: + /react-docgen-typescript@2.2.2(typescript@4.9.5): resolution: {integrity: sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==} peerDependencies: typescript: '>= 4.3.x' @@ -39899,7 +41004,7 @@ packages: typescript: 4.9.5 dev: true - /react-docgen/5.4.3: + /react-docgen@5.4.3: resolution: {integrity: sha512-xlLJyOlnfr8lLEEeaDZ+X2J/KJoe6Nr9AzxnkdQWush5hz2ZSu66w6iLMOScMmxoSHWpWMn+k3v5ZiyCfcWsOA==} engines: {node: '>=8.10.0'} hasBin: true @@ -39918,7 +41023,7 @@ packages: - supports-color dev: true - /react-dom/17.0.2_react@17.0.2: + /react-dom@17.0.2(react@17.0.2): resolution: {integrity: sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==} peerDependencies: react: 17.0.2 @@ -39928,7 +41033,7 @@ packages: react: 17.0.2 scheduler: 0.20.2 - /react-dom/18.2.0_react@18.2.0: + /react-dom@18.2.0(react@18.2.0): resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} peerDependencies: react: ^18.2.0 @@ -39938,7 +41043,7 @@ packages: scheduler: 0.23.0 dev: false - /react-dropzone/14.2.3_react@17.0.2: + /react-dropzone@14.2.3(react@17.0.2): resolution: {integrity: sha512-O3om8I+PkFKbxCukfIR3QAGftYXDZfOE2N1mr/7qebQJHs7U+/RSL/9xomJNpRg9kM5h9soQSdf0Gc7OHF5Fug==} engines: {node: '>= 10.13'} peerDependencies: @@ -39950,7 +41055,7 @@ packages: react: 17.0.2 dev: false - /react-editor-js/1.10.0_4t43o4z4vuajxdsiirtibzrzbi: + /react-editor-js@1.10.0(@editorjs/editorjs@2.26.5)(@editorjs/paragraph@2.9.0): resolution: {integrity: sha512-A4OZ88fkUdts1bOHy3CWpPiO37n2D9EG6gvVimD0zyiWJzR6EY7lM1MfLETWEU1NgEOdvj/0Qt0A9LcmRBKuGw==} peerDependencies: '@editorjs/editorjs': '*' @@ -39960,7 +41065,7 @@ packages: '@editorjs/paragraph': 2.9.0 dev: false - /react-element-to-jsx-string/15.0.0_sfoxds7t5ydpegc3knd667wn6m: + /react-element-to-jsx-string@15.0.0(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-UDg4lXB6BzlobN60P8fHWVPX3Kyw8ORrTeBtClmIlGdkOOE+GYQSFvmEU5iLLpwp/6v42DINwNcwOhOLfQ//FQ==} peerDependencies: react: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0 @@ -39969,11 +41074,11 @@ packages: '@base2/pretty-print-object': 1.0.1 is-plain-object: 5.0.0 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) react-is: 18.1.0 dev: true - /react-error-boundary/3.1.4_react@17.0.2: + /react-error-boundary@3.1.4(react@17.0.2): resolution: {integrity: sha512-uM9uPzZJTF6wRQORmSrvOIgt4lJ9MC1sNgEOj2XGsDTRE4kmpWxg7ENK9EWNKJRMAOY9z0MuF4yIfl6gp4sotA==} engines: {node: '>=10', npm: '>=6'} peerDependencies: @@ -39982,14 +41087,14 @@ packages: '@babel/runtime': 7.21.0 react: 17.0.2 - /react-error-overlay/6.0.11: + /react-error-overlay@6.0.11: resolution: {integrity: sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==} - /react-fast-compare/3.2.1: + /react-fast-compare@3.2.1: resolution: {integrity: sha512-xTYf9zFim2pEif/Fw16dBiXpe0hoy5PxcD8+OwBnTtNLfIm3g6WxhKNurY+6OmdH1u6Ta/W/Vl6vjbYP1MFnDg==} dev: false - /react-floater/0.7.6_sfoxds7t5ydpegc3knd667wn6m: + /react-floater@0.7.6(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-tt/15k/HpaShbtvWCwsQYLR+ebfUuYbl+oAUJ3DcEDkgYKeUcSkDey2PdAIERdVwzdFZANz47HbwoET2/Rduxg==} peerDependencies: react: 15 - 18 @@ -40001,12 +41106,12 @@ packages: popper.js: 1.16.1 prop-types: 15.8.1 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) react-proptype-conditional-require: 1.0.4 tree-changes: 0.9.3 dev: true - /react-flow-renderer/10.3.17_sfoxds7t5ydpegc3knd667wn6m: + /react-flow-renderer@10.3.17(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-bywiqVErlh5kCDqw3x0an5Ur3mT9j9CwJsDwmhmz4i1IgYM1a0SPqqEhClvjX+s5pU4nHjmVaGXWK96pwsiGcQ==} engines: {node: '>=14'} deprecated: react-flow-renderer has been renamed to reactflow, please use this package from now on https://reactflow.dev/docs/guides/migrate-to-v11/ @@ -40022,11 +41127,11 @@ packages: d3-selection: 3.0.0 d3-zoom: 3.0.0 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - zustand: 3.7.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) + zustand: 3.7.2(react@17.0.2) dev: false - /react-frame-component/5.2.6_oxfzelaz5ynxsop2v2nu2h2m64: + /react-frame-component@5.2.6(prop-types@15.8.1)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-CwkEM5VSt6nFwZ1Op8hi3JB5rPseZlmnp5CGiismVTauE6S4Jsc4TNMlT0O7Cts4WgIC3ZBAQ2p1Mm9XgLbj+w==} peerDependencies: prop-types: ^15.5.9 @@ -40035,10 +41140,10 @@ packages: dependencies: prop-types: 15.8.1 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /react-helmet-async/1.3.0_sfoxds7t5ydpegc3knd667wn6m: + /react-helmet-async@1.3.0(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-9jZ57/dAn9t3q6hneQS0wukqC2ENOBgMNVEhb/ZG9ZSxUetzVIw4iAmEU38IaVg3QGYauQPhSeUTuIUtFglWpg==} peerDependencies: react: ^16.6.0 || ^17.0.0 || ^18.0.0 @@ -40048,12 +41153,12 @@ packages: invariant: 2.2.4 prop-types: 15.8.1 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) react-fast-compare: 3.2.1 shallowequal: 1.1.0 dev: false - /react-hook-form/7.43.9_react@17.0.2: + /react-hook-form@7.43.9(react@17.0.2): resolution: {integrity: sha512-AUDN3Pz2NSeoxQ7Hs6OhQhDr6gtF9YRuutGDwPQqhSUAHJSgGl2VeY3qN19MG0SucpjgDiuMJ4iC5T5uB+eaNQ==} engines: {node: '>=12.22.0'} peerDependencies: @@ -40062,7 +41167,7 @@ packages: react: 17.0.2 dev: false - /react-infinite-scroll-component/6.1.0_react@17.0.2: + /react-infinite-scroll-component@6.1.0(react@17.0.2): resolution: {integrity: sha512-SQu5nCqy8DxQWpnUVLx7V7b7LcA37aM7tvoWjTLZp1dk6EJibM5/4EJKzOnl07/BsM1Y40sKLuqjCwwH/xV0TQ==} peerDependencies: react: '>=16.0.0' @@ -40071,7 +41176,7 @@ packages: throttle-debounce: 2.3.0 dev: false - /react-infinite-scroller/1.2.6_react@17.0.2: + /react-infinite-scroller@1.2.6(react@17.0.2): resolution: {integrity: sha512-mGdMyOD00YArJ1S1F3TVU9y4fGSfVVl6p5gh/Vt4u99CJOptfVu/q5V/Wlle72TMgYlBwIhbxK5wF0C/R33PXQ==} peerDependencies: react: ^0.14.9 || ^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 @@ -40080,7 +41185,7 @@ packages: react: 17.0.2 dev: false - /react-inspector/6.0.2_react@17.0.2: + /react-inspector@6.0.2(react@17.0.2): resolution: {integrity: sha512-x+b7LxhmHXjHoU/VrFAzw5iutsILRoYyDq97EDYdFpPLcvqtEzk4ZSZSQjnFPbr5T57tLXnHcqFYoN1pI6u8uQ==} peerDependencies: react: ^16.8.4 || ^17.0.0 || ^18.0.0 @@ -40088,20 +41193,20 @@ packages: react: 17.0.2 dev: true - /react-is/16.13.1: + /react-is@16.13.1: resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} - /react-is/17.0.2: + /react-is@17.0.2: resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} - /react-is/18.1.0: + /react-is@18.1.0: resolution: {integrity: sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg==} dev: true - /react-is/18.2.0: + /react-is@18.2.0: resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==} - /react-joyride/2.5.3_sfoxds7t5ydpegc3knd667wn6m: + /react-joyride@2.5.3(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-DKKvb/JAAsHm0x/RWO3WI6NOtTMHDso5v8MTauxTSz2dFs7Tu1rWg1BDBWmEMj6pUCvem7hblFbCiDAcvhs8tQ==} peerDependencies: react: 15 - 18 @@ -40112,26 +41217,26 @@ packages: is-lite: 0.9.2 prop-types: 15.8.1 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-floater: 0.7.6_sfoxds7t5ydpegc3knd667wn6m + react-dom: 17.0.2(react@17.0.2) + react-floater: 0.7.6(react-dom@17.0.2)(react@17.0.2) react-is: 16.13.1 scroll: 3.0.1 scrollparent: 2.0.1 tree-changes: 0.9.3 dev: true - /react-password-strength-bar/0.4.1_sfoxds7t5ydpegc3knd667wn6m: + /react-password-strength-bar@0.4.1(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-2NvYz4IUU8k7KDZgsXKoJWreKCZLKGaqF5QhIVhc09OsPBFXFMh0BeghNkBIRkaxLeI7/xjivknDCYfluBCXKA==} peerDependencies: react: '>=16.8.6' react-dom: '>=16.8.6' dependencies: react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) zxcvbn: 4.4.2 dev: false - /react-popper/2.3.0_qtrwknhowezr6dh25s26nfknpa: + /react-popper@2.3.0(@popperjs/core@2.11.7)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-e1hj8lL3uM+sgSR4Lxzn5h1GxBlpa4CQz0XLF8kx4MDrDRWY0Ena4c97PUeSX9i5W3UAfDP0z0FXCTQkoXUl3Q==} peerDependencies: '@popperjs/core': ^2.0.0 @@ -40140,24 +41245,24 @@ packages: dependencies: '@popperjs/core': 2.11.7 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) react-fast-compare: 3.2.1 warning: 4.0.3 dev: false - /react-proptype-conditional-require/1.0.4: + /react-proptype-conditional-require@1.0.4: resolution: {integrity: sha512-nopsRn7KnGgazBe2c3H2+Kf+Csp6PGDRLiBkYEDMKY8o/EIgft/WnIm/OnAKTawZiLnJXHAqhpFBddvs6NiXlw==} dev: true - /react-refresh/0.11.0: + /react-refresh@0.11.0: resolution: {integrity: sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==} engines: {node: '>=0.10.0'} - /react-refresh/0.14.0: + /react-refresh@0.14.0: resolution: {integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==} engines: {node: '>=0.10.0'} - /react-remove-scroll-bar/2.3.4_h7fc2el62uaa77gho3xhys6ola: + /react-remove-scroll-bar@2.3.4(@types/react@17.0.53)(react@17.0.2): resolution: {integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==} engines: {node: '>=10'} peerDependencies: @@ -40169,10 +41274,10 @@ packages: dependencies: '@types/react': 17.0.53 react: 17.0.2 - react-style-singleton: 2.2.1_h7fc2el62uaa77gho3xhys6ola + react-style-singleton: 2.2.1(@types/react@17.0.53)(react@17.0.2) tslib: 2.6.2 - /react-remove-scroll/2.5.5_h7fc2el62uaa77gho3xhys6ola: + /react-remove-scroll@2.5.5(@types/react@17.0.53)(react@17.0.2): resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==} engines: {node: '>=10'} peerDependencies: @@ -40184,13 +41289,13 @@ packages: dependencies: '@types/react': 17.0.53 react: 17.0.2 - react-remove-scroll-bar: 2.3.4_h7fc2el62uaa77gho3xhys6ola - react-style-singleton: 2.2.1_h7fc2el62uaa77gho3xhys6ola + react-remove-scroll-bar: 2.3.4(@types/react@17.0.53)(react@17.0.2) + react-style-singleton: 2.2.1(@types/react@17.0.53)(react@17.0.2) tslib: 2.6.2 - use-callback-ref: 1.3.0_h7fc2el62uaa77gho3xhys6ola - use-sidecar: 1.1.2_h7fc2el62uaa77gho3xhys6ola + use-callback-ref: 1.3.0(@types/react@17.0.53)(react@17.0.2) + use-sidecar: 1.1.2(@types/react@17.0.53)(react@17.0.2) - /react-router-dom/6.10.0_sfoxds7t5ydpegc3knd667wn6m: + /react-router-dom@6.10.0(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-E5dfxRPuXKJqzwSe/qGcqdwa18QiWC6f3H3cWXM24qj4N0/beCIf/CWTipop2xm7mR0RCS99NnaqPNjHtrAzCg==} engines: {node: '>=14'} peerDependencies: @@ -40199,11 +41304,11 @@ packages: dependencies: '@remix-run/router': 1.5.0 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-router: 6.10.0_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) + react-router: 6.10.0(react@17.0.2) dev: false - /react-router-dom/6.2.2_sfoxds7t5ydpegc3knd667wn6m: + /react-router-dom@6.2.2(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-AtYEsAST7bDD4dLSQHDnk/qxWLJdad5t1HFa1qJyUrCeGgEuCSw0VB/27ARbF9Fi/W5598ujvJOm3ujUCVzuYQ==} peerDependencies: react: '>=16.8' @@ -40211,11 +41316,11 @@ packages: dependencies: history: 5.3.0 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-router: 6.2.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) + react-router: 6.2.2(react@17.0.2) dev: false - /react-router/6.10.0_react@17.0.2: + /react-router@6.10.0(react@17.0.2): resolution: {integrity: sha512-Nrg0BWpQqrC3ZFFkyewrflCud9dio9ME3ojHCF/WLsprJVzkq3q3UeEhMCAW1dobjeGbWgjNn/PVF6m46ANxXQ==} engines: {node: '>=14'} peerDependencies: @@ -40225,7 +41330,7 @@ packages: react: 17.0.2 dev: false - /react-router/6.2.2_react@17.0.2: + /react-router@6.2.2(react@17.0.2): resolution: {integrity: sha512-/MbxyLzd7Q7amp4gDOGaYvXwhEojkJD5BtExkuKmj39VEE0m3l/zipf6h2WIB2jyAO0lI6NGETh4RDcktRm4AQ==} peerDependencies: react: '>=16.8' @@ -40234,7 +41339,7 @@ packages: react: 17.0.2 dev: false - /react-scripts/5.0.1_2xn6hao67zmtzyfac7qsgeyxpu: + /react-scripts@5.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(@swc/core@1.3.49)(esbuild@0.18.20)(eslint-import-resolver-webpack@0.13.7)(eslint@8.48.0)(react@17.0.2)(ts-node@10.9.1)(typescript@4.9.5): resolution: {integrity: sha512-8VAmEm/ZAwQzJ+GOMLbBsTdDKOpuZh7RPs0UymvBR2vRk4iZWCskjbFnxqjrzoIvlNNRZ3QJFx6/qDSi6zSnaQ==} engines: {node: '>=14.0.0'} hasBin: true @@ -40247,54 +41352,54 @@ packages: optional: true dependencies: '@babel/core': 7.21.4 - '@pmmmwh/react-refresh-webpack-plugin': 0.5.10_kwexxzmt7sjpqjleraytwi4jvu + '@pmmmwh/react-refresh-webpack-plugin': 0.5.10(react-refresh@0.11.0)(webpack-dev-server@4.11.1)(webpack@5.78.0) '@svgr/webpack': 5.5.0 - babel-jest: 27.5.1_@babel+core@7.21.4 - babel-loader: 8.3.0_2bpkfvz2mezbew2j5yjox7n6pu - babel-plugin-named-asset-import: 0.3.8_@babel+core@7.21.4 + babel-jest: 27.5.1(@babel/core@7.21.4) + babel-loader: 8.3.0(@babel/core@7.21.4)(webpack@5.78.0) + babel-plugin-named-asset-import: 0.3.8(@babel/core@7.21.4) babel-preset-react-app: 10.0.1 bfj: 7.0.2 browserslist: 4.21.5 camelcase: 6.3.0 case-sensitive-paths-webpack-plugin: 2.4.0 - css-loader: 6.7.3_webpack@5.78.0 - css-minimizer-webpack-plugin: 3.4.1_webpack@5.78.0 + css-loader: 6.7.3(webpack@5.78.0) + css-minimizer-webpack-plugin: 3.4.1(esbuild@0.18.20)(webpack@5.78.0) dotenv: 10.0.0 dotenv-expand: 5.1.0 eslint: 8.48.0 - eslint-config-react-app: 7.0.1_sbdixes4cky6hqsocdpcwctiue - eslint-webpack-plugin: 3.2.0_hzv2vgrkwrkjb5sk6efnemby4e - file-loader: 6.2.0_webpack@5.78.0 + eslint-config-react-app: 7.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint-import-resolver-webpack@0.13.7)(eslint@8.48.0)(jest@27.5.1)(typescript@4.9.5) + eslint-webpack-plugin: 3.2.0(eslint@8.48.0)(webpack@5.78.0) + file-loader: 6.2.0(webpack@5.78.0) fs-extra: 10.1.0 - html-webpack-plugin: 5.5.3_webpack@5.78.0 + html-webpack-plugin: 5.5.3(webpack@5.78.0) identity-obj-proxy: 3.0.0 - jest: 27.5.1 + jest: 27.5.1(ts-node@10.9.1) jest-resolve: 27.5.1 - jest-watch-typeahead: 1.1.0_jest@27.5.1 - mini-css-extract-plugin: 2.7.5_webpack@5.78.0 + jest-watch-typeahead: 1.1.0(jest@27.5.1) + mini-css-extract-plugin: 2.7.5(webpack@5.78.0) postcss: 8.4.21 - postcss-flexbugs-fixes: 5.0.2_postcss@8.4.21 - postcss-loader: 6.2.1_2izhiogyhzv3k6gmxpzxzwhblu - postcss-normalize: 10.0.1_jrpp4geoaqu5dz2gragkckznb4 - postcss-preset-env: 7.8.3_postcss@8.4.21 + postcss-flexbugs-fixes: 5.0.2(postcss@8.4.21) + postcss-loader: 6.2.1(postcss@8.4.21)(webpack@5.78.0) + postcss-normalize: 10.0.1(browserslist@4.21.5)(postcss@8.4.21) + postcss-preset-env: 7.8.3(postcss@8.4.21) prompts: 2.4.2 react: 17.0.2 react-app-polyfill: 3.0.0 - react-dev-utils: 12.0.1_vq6t4wvflba3b6dvvfvomzl76u + react-dev-utils: 12.0.1(eslint@8.48.0)(typescript@4.9.5)(webpack@5.78.0) react-refresh: 0.11.0 resolve: 1.22.2 resolve-url-loader: 4.0.0 - sass-loader: 12.6.0_webpack@5.78.0 + sass-loader: 12.6.0(webpack@5.78.0) semver: 7.4.0 - source-map-loader: 3.0.2_webpack@5.78.0 - style-loader: 3.3.2_webpack@5.78.0 - tailwindcss: 3.3.1_postcss@8.4.21 - terser-webpack-plugin: 5.3.7_webpack@5.78.0 + source-map-loader: 3.0.2(webpack@5.78.0) + style-loader: 3.3.2(webpack@5.78.0) + tailwindcss: 3.3.1(postcss@8.4.21)(ts-node@10.9.1) + terser-webpack-plugin: 5.3.7(@swc/core@1.3.49)(esbuild@0.18.20)(webpack@5.78.0) typescript: 4.9.5 - webpack: 5.78.0 - webpack-dev-server: 4.11.1_webpack@5.78.0 - webpack-manifest-plugin: 4.1.1_webpack@5.78.0 - workbox-webpack-plugin: 6.5.4_webpack@5.78.0 + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) + webpack-dev-server: 4.11.1(webpack@5.78.0) + webpack-manifest-plugin: 4.1.1(webpack@5.78.0) + workbox-webpack-plugin: 6.5.4(webpack@5.78.0) optionalDependencies: fsevents: 2.3.3 transitivePeerDependencies: @@ -40329,9 +41434,8 @@ packages: - webpack-cli - webpack-hot-middleware - webpack-plugin-serve - dev: false - /react-scripts/5.0.1_sq2rawq4ox4a7yhpjmexqgy4wu: + /react-scripts@5.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(@swc/core@1.3.49)(eslint-import-resolver-webpack@0.13.7)(eslint@8.48.0)(react@17.0.2)(ts-node@10.9.1)(typescript@4.9.5): resolution: {integrity: sha512-8VAmEm/ZAwQzJ+GOMLbBsTdDKOpuZh7RPs0UymvBR2vRk4iZWCskjbFnxqjrzoIvlNNRZ3QJFx6/qDSi6zSnaQ==} engines: {node: '>=14.0.0'} hasBin: true @@ -40344,54 +41448,54 @@ packages: optional: true dependencies: '@babel/core': 7.21.4 - '@pmmmwh/react-refresh-webpack-plugin': 0.5.10_kwexxzmt7sjpqjleraytwi4jvu + '@pmmmwh/react-refresh-webpack-plugin': 0.5.10(react-refresh@0.11.0)(webpack-dev-server@4.11.1)(webpack@5.78.0) '@svgr/webpack': 5.5.0 - babel-jest: 27.5.1_@babel+core@7.21.4 - babel-loader: 8.3.0_2bpkfvz2mezbew2j5yjox7n6pu - babel-plugin-named-asset-import: 0.3.8_@babel+core@7.21.4 + babel-jest: 27.5.1(@babel/core@7.21.4) + babel-loader: 8.3.0(@babel/core@7.21.4)(webpack@5.78.0) + babel-plugin-named-asset-import: 0.3.8(@babel/core@7.21.4) babel-preset-react-app: 10.0.1 bfj: 7.0.2 browserslist: 4.21.5 camelcase: 6.3.0 case-sensitive-paths-webpack-plugin: 2.4.0 - css-loader: 6.7.3_webpack@5.78.0 - css-minimizer-webpack-plugin: 3.4.1_rw5du4nyxcvxj5knuew24gpv6a + css-loader: 6.7.3(webpack@5.78.0) + css-minimizer-webpack-plugin: 3.4.1(webpack@5.78.0) dotenv: 10.0.0 dotenv-expand: 5.1.0 eslint: 8.48.0 - eslint-config-react-app: 7.0.1_sbdixes4cky6hqsocdpcwctiue - eslint-webpack-plugin: 3.2.0_hzv2vgrkwrkjb5sk6efnemby4e - file-loader: 6.2.0_webpack@5.78.0 + eslint-config-react-app: 7.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint-import-resolver-webpack@0.13.7)(eslint@8.48.0)(jest@27.5.1)(typescript@4.9.5) + eslint-webpack-plugin: 3.2.0(eslint@8.48.0)(webpack@5.78.0) + file-loader: 6.2.0(webpack@5.78.0) fs-extra: 10.1.0 - html-webpack-plugin: 5.5.3_webpack@5.78.0 + html-webpack-plugin: 5.5.3(webpack@5.78.0) identity-obj-proxy: 3.0.0 - jest: 27.5.1 + jest: 27.5.1(ts-node@10.9.1) jest-resolve: 27.5.1 - jest-watch-typeahead: 1.1.0_jest@27.5.1 - mini-css-extract-plugin: 2.7.5_webpack@5.78.0 + jest-watch-typeahead: 1.1.0(jest@27.5.1) + mini-css-extract-plugin: 2.7.5(webpack@5.78.0) postcss: 8.4.21 - postcss-flexbugs-fixes: 5.0.2_postcss@8.4.21 - postcss-loader: 6.2.1_2izhiogyhzv3k6gmxpzxzwhblu - postcss-normalize: 10.0.1_jrpp4geoaqu5dz2gragkckznb4 - postcss-preset-env: 7.8.3_postcss@8.4.21 + postcss-flexbugs-fixes: 5.0.2(postcss@8.4.21) + postcss-loader: 6.2.1(postcss@8.4.21)(webpack@5.78.0) + postcss-normalize: 10.0.1(browserslist@4.21.5)(postcss@8.4.21) + postcss-preset-env: 7.8.3(postcss@8.4.21) prompts: 2.4.2 react: 17.0.2 react-app-polyfill: 3.0.0 - react-dev-utils: 12.0.1_vq6t4wvflba3b6dvvfvomzl76u + react-dev-utils: 12.0.1(eslint@8.48.0)(typescript@4.9.5)(webpack@5.78.0) react-refresh: 0.11.0 resolve: 1.22.2 resolve-url-loader: 4.0.0 - sass-loader: 12.6.0_webpack@5.78.0 + sass-loader: 12.6.0(webpack@5.78.0) semver: 7.4.0 - source-map-loader: 3.0.2_webpack@5.78.0 - style-loader: 3.3.2_webpack@5.78.0 - tailwindcss: 3.3.1_postcss@8.4.21 - terser-webpack-plugin: 5.3.7_dnqqsr3phzjhopay4d6e5ziqz4 + source-map-loader: 3.0.2(webpack@5.78.0) + style-loader: 3.3.2(webpack@5.78.0) + tailwindcss: 3.3.1(postcss@8.4.21)(ts-node@10.9.1) + terser-webpack-plugin: 5.3.7(@swc/core@1.3.49)(webpack@5.78.0) typescript: 4.9.5 - webpack: 5.78.0_u5c4qderjagc6tepfyiby6xhau - webpack-dev-server: 4.11.1_webpack@5.78.0 - webpack-manifest-plugin: 4.1.1_webpack@5.78.0 - workbox-webpack-plugin: 6.5.4_webpack@5.78.0 + webpack: 5.78.0(@swc/core@1.3.49) + webpack-dev-server: 4.11.1(webpack@5.78.0) + webpack-manifest-plugin: 4.1.1(webpack@5.78.0) + workbox-webpack-plugin: 6.5.4(webpack@5.78.0) optionalDependencies: fsevents: 2.3.3 transitivePeerDependencies: @@ -40426,16 +41530,17 @@ packages: - webpack-cli - webpack-hot-middleware - webpack-plugin-serve + dev: false - /react-simple-animate/3.5.2_react-dom@17.0.2: + /react-simple-animate@3.5.2(react-dom@17.0.2): resolution: {integrity: sha512-xLE65euP920QMTOmv5haPlml+hmOPDkbIr5WeF7ADIXWBYt5kW/vwpNfWg8EKMab8aeDxIZ6QjffVh8v2dUyhg==} peerDependencies: react-dom: ^16.8.0 || ^17 || ^18 dependencies: - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /react-style-singleton/2.2.1_h7fc2el62uaa77gho3xhys6ola: + /react-style-singleton@2.2.1(@types/react@17.0.53)(react@17.0.2): resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==} engines: {node: '>=10'} peerDependencies: @@ -40451,7 +41556,7 @@ packages: react: 17.0.2 tslib: 2.6.2 - /react-syntax-highlighter/15.5.0_react@17.0.2: + /react-syntax-highlighter@15.5.0(react@17.0.2): resolution: {integrity: sha512-+zq2myprEnQmH5yw6Gqc8lD55QHnpKaU8TOcFeC/Lg/MQSs8UknEA0JC4nTZGFAXC2J2Hyj/ijJ7NlabyPi2gg==} peerDependencies: react: '>= 0.14.0' @@ -40464,7 +41569,7 @@ packages: refractor: 3.6.0 dev: false - /react-table/7.8.0_react@17.0.2: + /react-table@7.8.0(react@17.0.2): resolution: {integrity: sha512-hNaz4ygkZO4bESeFfnfOft73iBUj8K5oKi1EcSHPAibEydfsX2MyU6Z8KCr3mv3C9Kqqh71U+DhZkFvibbnPbA==} peerDependencies: react: ^16.8.3 || ^17.0.0-0 || ^18.0.0 @@ -40472,7 +41577,7 @@ packages: react: 17.0.2 dev: false - /react-textarea-autosize/8.3.4_h7fc2el62uaa77gho3xhys6ola: + /react-textarea-autosize@8.3.4(@types/react@17.0.53)(react@17.0.2): resolution: {integrity: sha512-CdtmP8Dc19xL8/R6sWvtknD/eCXkQr30dtvC4VmGInhRsfF8X/ihXCq6+9l9qbxmKRiq407/7z5fxE7cVWQNgQ==} engines: {node: '>=10'} peerDependencies: @@ -40480,13 +41585,13 @@ packages: dependencies: '@babel/runtime': 7.21.0 react: 17.0.2 - use-composed-ref: 1.3.0_react@17.0.2 - use-latest: 1.2.1_h7fc2el62uaa77gho3xhys6ola + use-composed-ref: 1.3.0(react@17.0.2) + use-latest: 1.2.1(@types/react@17.0.53)(react@17.0.2) transitivePeerDependencies: - '@types/react' dev: false - /react-textarea-autosize/8.4.1_s55kszw6pq5iqmorlydcdh42pa: + /react-textarea-autosize@8.4.1(@types/react@17.0.62)(react@17.0.2): resolution: {integrity: sha512-aD2C+qK6QypknC+lCMzteOdIjoMbNlgSFmJjCV+DrfTPwp59i/it9mMNf2HDzvRjQgKAyBDPyLJhcrzElf2U4Q==} engines: {node: '>=10'} peerDependencies: @@ -40494,13 +41599,13 @@ packages: dependencies: '@babel/runtime': 7.21.0 react: 17.0.2 - use-composed-ref: 1.3.0_react@17.0.2 - use-latest: 1.2.1_s55kszw6pq5iqmorlydcdh42pa + use-composed-ref: 1.3.0(react@17.0.2) + use-latest: 1.2.1(@types/react@17.0.62)(react@17.0.2) transitivePeerDependencies: - '@types/react' dev: false - /react-transition-group/4.4.2_sfoxds7t5ydpegc3knd667wn6m: + /react-transition-group@4.4.2(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-/RNYfRAMlZwDSr6z4zNKV6xu53/e2BuaBbGhbyYIXTrmgu/bGHzmqOs7mJSJBHy9Ud+ApHx3QjrkKSp1pxvlFg==} peerDependencies: react: '>=16.6.0' @@ -40511,10 +41616,10 @@ packages: loose-envify: 1.4.0 prop-types: 15.8.1 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /react-use-intercom/2.1.0_sfoxds7t5ydpegc3knd667wn6m: + /react-use-intercom@2.1.0(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-M4g2Il31LcI75u1IirN1+6J30IXPIBgqf+78tmTTIyXWgy8rNuVg8wSLi7oaTUb3JnyU/l/RKFDlr3GYNcpiRg==} engines: {node: '>=10'} peerDependencies: @@ -40522,24 +41627,24 @@ packages: react-dom: '>=16.8.0' dependencies: react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) dev: false - /react/17.0.2: + /react@17.0.2: resolution: {integrity: sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==} engines: {node: '>=0.10.0'} dependencies: loose-envify: 1.4.0 object-assign: 4.1.1 - /react/18.2.0: + /react@18.2.0: resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} engines: {node: '>=0.10.0'} dependencies: loose-envify: 1.4.0 dev: false - /reactcss/1.2.3_react@17.0.2: + /reactcss@1.2.3(react@17.0.2): resolution: {integrity: sha512-KiwVUcFu1RErkI97ywr8nvx8dNOpT03rbnma0SSalTYjkrPYaEajR4a/MRt6DZ46K6arDRbWMNHF+xH7G7n/8A==} peerDependencies: react: '*' @@ -40548,17 +41653,17 @@ packages: react: 17.0.2 dev: false - /read-cache/1.0.0: + /read-cache@1.0.0: resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} dependencies: pify: 2.3.0 - /read-cmd-shim/3.0.1: + /read-cmd-shim@3.0.1: resolution: {integrity: sha512-kEmDUoYf/CDy8yZbLTmhB1X9kkjf9Q80PCNsDMb7ufrGd6zZSQA1+UyjrO+pZm5K/S4OXCWJeiIt1JA8kAsa6g==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dev: true - /read-ini-file/4.0.0: + /read-ini-file@4.0.0: resolution: {integrity: sha512-zz4qv/sKETv7nAkATqSJ9YMbKD8NXRPuA8d17VdYCuNYrVstB1S6UAMU6aytf5vRa9MESbZN7jLZdcmrOxz4gg==} engines: {node: '>=14.6'} dependencies: @@ -40566,7 +41671,7 @@ packages: strip-bom: 4.0.0 dev: true - /read-package-json-fast/2.0.3: + /read-package-json-fast@2.0.3: resolution: {integrity: sha512-W/BKtbL+dUjTuRL2vziuYhp76s5HZ9qQhd/dKfWIZveD0O40453QNyZhC0e63lqZrAQ4jiOapVoeJ7JrszenQQ==} engines: {node: '>=10'} dependencies: @@ -40574,7 +41679,7 @@ packages: npm-normalize-package-bin: 1.0.1 dev: true - /read-package-json-fast/3.0.2: + /read-package-json-fast@3.0.2: resolution: {integrity: sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: @@ -40582,7 +41687,7 @@ packages: npm-normalize-package-bin: 3.0.0 dev: true - /read-package-json/5.0.2: + /read-package-json@5.0.2: resolution: {integrity: sha512-BSzugrt4kQ/Z0krro8zhTwV1Kd79ue25IhNN/VtHFy1mG/6Tluyi+msc0UpwaoQzxSHa28mntAjIZY6kEgfR9Q==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: @@ -40592,7 +41697,7 @@ packages: npm-normalize-package-bin: 2.0.0 dev: true - /read-package-json/6.0.1: + /read-package-json@6.0.1: resolution: {integrity: sha512-AaHqXxfAVa+fNL07x8iAghfKOds/XXsu7zoouIVsbm7PEbQ3nMWXlvjcbrNLjElnUHWQtAo4QEa0RXuvD4XlpA==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: @@ -40602,7 +41707,7 @@ packages: npm-normalize-package-bin: 3.0.0 dev: true - /read-pkg-up/3.0.0: + /read-pkg-up@3.0.0: resolution: {integrity: sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw==} engines: {node: '>=4'} dependencies: @@ -40610,7 +41715,7 @@ packages: read-pkg: 3.0.0 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: @@ -40619,7 +41724,7 @@ packages: type-fest: 0.8.1 dev: true - /read-pkg-up/8.0.0: + /read-pkg-up@8.0.0: resolution: {integrity: sha512-snVCqPczksT0HS2EC+SxUndvSzn6LRCwpfSvLrIfR5BKDQQZMaI6jPRC9dYvYFDRAuFEAnkwww8kBBNE/3VvzQ==} engines: {node: '>=12'} dependencies: @@ -40628,7 +41733,7 @@ packages: type-fest: 1.4.0 dev: true - /read-pkg/3.0.0: + /read-pkg@3.0.0: resolution: {integrity: sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==} engines: {node: '>=4'} dependencies: @@ -40637,7 +41742,7 @@ packages: path-type: 3.0.0 dev: true - /read-pkg/4.0.1: + /read-pkg@4.0.1: resolution: {integrity: sha512-+UBirHHDm5J+3WDmLBZYSklRYg82nMlz+enn+GMZ22nSR2f4bzxmhso6rzQW/3mT2PVzpzDTiYIZahk8UmZ44w==} engines: {node: '>=6'} dependencies: @@ -40646,7 +41751,7 @@ packages: pify: 3.0.0 dev: true - /read-pkg/5.2.0: + /read-pkg@5.2.0: resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} engines: {node: '>=8'} dependencies: @@ -40656,7 +41761,7 @@ packages: type-fest: 0.6.0 dev: true - /read-pkg/6.0.0: + /read-pkg@6.0.0: resolution: {integrity: sha512-X1Fu3dPuk/8ZLsMhEj5f4wFAF0DWoK7qhGJvgaijocXxBmSToKfbFtqbxMO7bVjNA1dmE5huAzjXj/ey86iw9Q==} engines: {node: '>=12'} dependencies: @@ -40666,7 +41771,7 @@ packages: type-fest: 1.4.0 dev: true - /read-yaml-file/2.1.0: + /read-yaml-file@2.1.0: resolution: {integrity: sha512-UkRNRIwnhG+y7hpqnycCL/xbTk7+ia9VuVTC0S+zVbwd65DI9eUpRMfsWIGrCWxTU/mi+JW8cHQCrv+zfCbEPQ==} engines: {node: '>=10.13'} dependencies: @@ -40674,14 +41779,14 @@ packages: strip-bom: 4.0.0 dev: true - /read/1.0.7: + /read@1.0.7: resolution: {integrity: sha512-rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ==} engines: {node: '>=0.8'} dependencies: mute-stream: 0.0.8 dev: true - /readable-stream/2.3.8: + /readable-stream@2.3.8: resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} dependencies: core-util-is: 1.0.3 @@ -40692,7 +41797,7 @@ packages: string_decoder: 1.1.1 util-deprecate: 1.0.2 - /readable-stream/3.6.2: + /readable-stream@3.6.2: resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} engines: {node: '>= 6'} dependencies: @@ -40700,7 +41805,7 @@ packages: string_decoder: 1.3.0 util-deprecate: 1.0.2 - /readable-stream/4.3.0: + /readable-stream@4.3.0: resolution: {integrity: sha512-MuEnA0lbSi7JS8XM+WNJlWZkHAAdm7gETHdFK//Q/mChGyj2akEFtdLZh32jSdkWGbRwCW9pn6g3LWDdDeZnBQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: @@ -40710,17 +41815,17 @@ packages: process: 0.11.10 dev: false - /readable-web-to-node-stream/2.0.0: + /readable-web-to-node-stream@2.0.0: resolution: {integrity: sha512-+oZJurc4hXpaaqsN68GoZGQAQIA3qr09Or4fqEsargABnbe5Aau8hFn6ISVleT3cpY/0n/8drn7huyyEvTbghA==} dev: true - /readdir-glob/1.1.3: + /readdir-glob@1.1.3: resolution: {integrity: sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA==} dependencies: minimatch: 5.1.6 dev: false - /readdir-scoped-modules/1.1.0: + /readdir-scoped-modules@1.1.0: resolution: {integrity: sha512-asaikDeqAQg7JifRsZn1NJZXo9E+VwlyCfbkZhwyISinqk5zNS6266HS5kah6P0SaQKGF6SkNnZVHUzHFYxYDw==} deprecated: This functionality has been moved to @npmcli/fs dependencies: @@ -40730,7 +41835,7 @@ packages: once: 1.4.0 dev: true - /readdirp/2.2.1: + /readdirp@2.2.1: resolution: {integrity: sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==} engines: {node: '>=0.10'} dependencies: @@ -40741,30 +41846,30 @@ packages: - supports-color dev: true - /readdirp/3.5.0: + /readdirp@3.5.0: resolution: {integrity: sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==} engines: {node: '>=8.10.0'} dependencies: picomatch: 2.3.1 dev: true - /readdirp/3.6.0: + /readdirp@3.6.0: resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} engines: {node: '>=8.10.0'} dependencies: picomatch: 2.3.1 - /real-require/0.2.0: + /real-require@0.2.0: resolution: {integrity: sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==} engines: {node: '>= 12.13.0'} dev: false - /realpath-missing/1.1.0: + /realpath-missing@1.1.0: resolution: {integrity: sha512-wnWtnywepjg/eHIgWR97R7UuM5i+qHLA195qdN9UPKvcMqfn60+67S8sPPW3vDlSEfYHoFkKU8IvpCNty3zQvQ==} engines: {node: '>=10'} dev: true - /recast/0.21.5: + /recast@0.21.5: resolution: {integrity: sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg==} engines: {node: '>= 4'} dependencies: @@ -40774,7 +41879,7 @@ packages: tslib: 2.6.2 dev: true - /recast/0.23.4: + /recast@0.23.4: resolution: {integrity: sha512-qtEDqIZGVcSZCHniWwZWbRy79Dc6Wp3kT/UmDA2RJKBPg7+7k51aQBZirHmUGn5uvHf2rg8DkjizrN26k61ATw==} engines: {node: '>= 4'} dependencies: @@ -40784,30 +41889,29 @@ packages: source-map: 0.6.1 tslib: 2.6.2 - /rechoir/0.6.2: + /rechoir@0.6.2: resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==} engines: {node: '>= 0.10'} dependencies: resolve: 1.22.2 - /rechoir/0.8.0: + /rechoir@0.8.0: resolution: {integrity: sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==} engines: {node: '>= 10.13.0'} dependencies: resolve: 1.22.2 - dev: true - /recursive-diff/1.0.9: + /recursive-diff@1.0.9: resolution: {integrity: sha512-5mqpskzvXDo5Vy29Vj8tH30a0+XBmY11aqWGoN/uB94UHRwndX2EuPvH+WtbqOYkrwAF718/lDo6U4CB1qSSqQ==} dev: false - /recursive-readdir/2.2.3: + /recursive-readdir@2.2.3: resolution: {integrity: sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==} engines: {node: '>=6.0.0'} dependencies: minimatch: 3.1.2 - /redent/2.0.0: + /redent@2.0.0: resolution: {integrity: sha512-XNwrTx77JQCEMXTeb8movBKuK75MgH0RZkujNuDKCezemx/voapl9i2gCSi8WWm8+ox5ycJi1gxF22fR7c0Ciw==} engines: {node: '>=4'} dependencies: @@ -40815,7 +41919,7 @@ packages: strip-indent: 2.0.0 dev: true - /redent/3.0.0: + /redent@3.0.0: resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} engines: {node: '>=8'} dependencies: @@ -40823,7 +41927,7 @@ packages: strip-indent: 3.0.0 dev: true - /redent/4.0.0: + /redent@4.0.0: resolution: {integrity: sha512-tYkDkVVtYkSVhuQ4zBgfvciymHaeuel+zFKXShfDnFP5SyVEP7qo70Rf1jTOTCx3vGNAbnEi/xFkcfQVMIBWag==} engines: {node: '>=12'} dependencies: @@ -40831,38 +41935,38 @@ packages: strip-indent: 4.0.0 dev: true - /redeyed/2.1.1: + /redeyed@2.1.1: resolution: {integrity: sha512-FNpGGo1DycYAdnrKFxCMmKYgo/mILAqtRYbkdQD8Ep/Hk2PQ5+aEAEx+IU713RTDmuBaH0c8P5ZozurNu5ObRQ==} dependencies: esprima: 4.0.1 dev: true - /redis-errors/1.2.0: + /redis-errors@1.2.0: resolution: {integrity: sha512-1qny3OExCf0UvUV/5wpYKf2YwPcOqXzkwKKSmKHiE6ZMQs5heeE/c8eXK+PNllPvmjgAbfnsbpkGZWy8cBpn9w==} engines: {node: '>=4'} - /redis-parser/3.0.0: + /redis-parser@3.0.0: resolution: {integrity: sha512-DJnGAeenTdpMEH6uAJRK/uiyEIH9WVsUmoLwzudwGJUwZPp80PDBWPHXSAGNPwNvIXAbe7MSUB1zQFugFml66A==} engines: {node: '>=4'} dependencies: redis-errors: 1.2.0 - /redlock/4.2.0: + /redlock@4.2.0: resolution: {integrity: sha512-j+oQlG+dOwcetUt2WJWttu4CZVeRzUrcVcISFmEmfyuwCVSJ93rDT7YSgg7H7rnxwoRyk/jU46kycVka5tW7jA==} engines: {node: '>=8.0.0'} dependencies: bluebird: 3.7.2 dev: false - /reduce-flatten/2.0.0: + /reduce-flatten@2.0.0: resolution: {integrity: sha512-EJ4UNY/U1t2P/2k6oqotuX2Cc3T6nxJwsM0N0asT7dhrtH1ltUxDn4NalSYmPE2rCkVpcf/X6R0wDwcFpzhd4w==} engines: {node: '>=6'} dev: true - /reflect-metadata/0.1.13: + /reflect-metadata@0.1.13: resolution: {integrity: sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==} - /refractor/3.6.0: + /refractor@3.6.0: resolution: {integrity: sha512-MY9W41IOWxxk31o+YvFCNyNzdkc9M20NoZK5vq6jkv4I/uh2zkWcfudj0Q1fovjUQJrNewS9NMzeTtqPf+n5EA==} dependencies: hastscript: 6.0.0 @@ -40870,41 +41974,41 @@ packages: prismjs: 1.27.0 dev: false - /regenerate-unicode-properties/10.1.0: + /regenerate-unicode-properties@10.1.0: resolution: {integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==} engines: {node: '>=4'} dependencies: regenerate: 1.4.2 - /regenerate/1.4.2: + /regenerate@1.4.2: resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} - /regenerator-runtime/0.11.1: + /regenerator-runtime@0.11.1: resolution: {integrity: sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==} dev: true - /regenerator-runtime/0.13.11: + /regenerator-runtime@0.13.11: resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} - /regenerator-transform/0.15.1: + /regenerator-transform@0.15.1: resolution: {integrity: sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==} dependencies: '@babel/runtime': 7.21.0 dev: true - /regenerator-transform/0.15.2: + /regenerator-transform@0.15.2: resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==} dependencies: '@babel/runtime': 7.21.0 - /regex-cache/0.4.4: + /regex-cache@0.4.4: resolution: {integrity: sha512-nVIZwtCjkC9YgvWkpM55B5rBhBYRZhAaJbgcFYXXsHnbZ9UZI9nnVWYZpBlCqv9ho2eZryPnWrZGsOdPwVWXWQ==} engines: {node: '>=0.10.0'} dependencies: is-equal-shallow: 0.1.3 dev: true - /regex-not/1.0.2: + /regex-not@1.0.2: resolution: {integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==} engines: {node: '>=0.10.0'} dependencies: @@ -40912,10 +42016,10 @@ packages: safe-regex: 1.1.0 dev: true - /regex-parser/2.2.11: + /regex-parser@2.2.11: resolution: {integrity: sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==} - /regexp.prototype.flags/1.5.0: + /regexp.prototype.flags@1.5.0: resolution: {integrity: sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==} engines: {node: '>= 0.4'} dependencies: @@ -40923,12 +42027,12 @@ packages: define-properties: 1.2.0 functions-have-names: 1.2.3 - /regexpp/3.2.0: + /regexpp@3.2.0: resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} engines: {node: '>=8'} dev: true - /regexpu-core/5.3.2: + /regexpu-core@5.3.2: resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==} engines: {node: '>=4'} dependencies: @@ -40939,38 +42043,38 @@ packages: unicode-match-property-ecmascript: 2.0.0 unicode-match-property-value-ecmascript: 2.1.0 - /registry-auth-token/5.0.2: + /registry-auth-token@5.0.2: resolution: {integrity: sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ==} engines: {node: '>=14'} dependencies: '@pnpm/npm-conf': 2.1.1 dev: true - /registry-url/5.1.0: + /registry-url@5.1.0: resolution: {integrity: sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==} engines: {node: '>=8'} dependencies: rc: 1.2.8 dev: true - /regjsparser/0.9.1: + /regjsparser@0.9.1: resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==} hasBin: true dependencies: jsesc: 0.5.0 - /relateurl/0.2.7: + /relateurl@0.2.7: resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==} engines: {node: '>= 0.10'} - /release-zalgo/1.0.0: + /release-zalgo@1.0.0: resolution: {integrity: sha512-gUAyHVHPPC5wdqX/LG4LWtRYtgjxyX78oanFNTMMyFEfOqdC54s3eE82imuWKbOeqYht2CrNf64Qb8vgmmtZGA==} engines: {node: '>=4'} dependencies: es6-error: 4.1.1 dev: true - /remark-external-links/8.0.0: + /remark-external-links@8.0.0: resolution: {integrity: sha512-5vPSX0kHoSsqtdftSHhIYofVINC8qmp0nctkeU9YoJwV3YfiBRiI6cbFRJ0oI/1F9xS+bopXG0m2KS8VFscuKA==} dependencies: extend: 3.0.2 @@ -40979,7 +42083,7 @@ packages: space-separated-tokens: 1.1.5 unist-util-visit: 2.0.3 - /remark-gfm/3.0.1: + /remark-gfm@3.0.1: resolution: {integrity: sha512-lEFDoi2PICJyNrACFOfDD3JlLkuSbOa5Wd8EPt06HUdptv8Gn0bxYTdbU/XXQ3swAPkEaGxxPN9cbnMHvVu1Ig==} dependencies: '@types/mdast': 3.0.11 @@ -40990,40 +42094,40 @@ packages: - supports-color dev: true - /remark-slug/6.1.0: + /remark-slug@6.1.0: resolution: {integrity: sha512-oGCxDF9deA8phWvxFuyr3oSJsdyUAxMFbA0mZ7Y1Sas+emILtO+e5WutF9564gDsEN4IXaQXm5pFo6MLH+YmwQ==} dependencies: github-slugger: 1.5.0 mdast-util-to-string: 1.1.0 unist-util-visit: 2.0.3 - /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-accents/0.4.2: + /remove-accents@0.4.2: resolution: {integrity: sha512-7pXIJqJOq5tFgG1A2Zxti3Ht8jJF337m4sowbuHsW30ZnkQFnDzy9qBNhgzX8ZLW4+UBcXiiR7SwR6pokHsxiA==} dev: false - /remove-markdown/0.3.0: + /remove-markdown@0.3.0: resolution: {integrity: sha512-5392eIuy1mhjM74739VunOlsOYKjsH82rQcTBlJ1bkICVC3dQ3ksQzTHh4jGHQFnM+1xzLzcFOMH+BofqXhroQ==} dev: true - /remove-trailing-separator/1.1.0: + /remove-trailing-separator@1.1.0: resolution: {integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==} dev: true - /remove-trailing-slash/0.1.1: + /remove-trailing-slash@0.1.1: resolution: {integrity: sha512-o4S4Qh6L2jpnCy83ysZDau+VORNvnFw07CKSAymkd6ICNVEPisMyzlc00KlvvicsxKck94SEwhDnMNdICzO+tA==} dev: false - /renderkid/2.0.7: + /renderkid@2.0.7: resolution: {integrity: sha512-oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ==} dependencies: css-select: 4.3.0 @@ -41033,7 +42137,7 @@ packages: strip-ansi: 3.0.1 dev: false - /renderkid/3.0.0: + /renderkid@3.0.0: resolution: {integrity: sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==} dependencies: css-select: 4.3.0 @@ -41042,17 +42146,17 @@ packages: lodash: 4.17.21 strip-ansi: 6.0.1 - /repeat-element/1.1.4: + /repeat-element@1.1.4: resolution: {integrity: sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==} engines: {node: '>=0.10.0'} dev: true - /repeat-string/1.6.1: + /repeat-string@1.6.1: resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==} engines: {node: '>=0.10'} dev: true - /replace-in-file/3.4.4: + /replace-in-file@3.4.4: resolution: {integrity: sha512-ehq0dFsxSpfPiPLBU5kli38Ud8bZL0CQKG8WQVbvhmyilXaMJ8y4LtDZs/K3MD8C0+rHbsfW8c9r2bUEy0B/6Q==} hasBin: true dependencies: @@ -41061,12 +42165,12 @@ packages: yargs: 13.3.2 dev: true - /request-progress/3.0.0: + /request-progress@3.0.0: resolution: {integrity: sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==} dependencies: throttleit: 1.0.0 - /request-promise-core/1.1.4_request@2.88.2: + /request-promise-core@1.1.4(request@2.88.2): resolution: {integrity: sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==} engines: {node: '>=0.10.0'} peerDependencies: @@ -41076,7 +42180,7 @@ packages: request: 2.88.2 dev: false - /request-promise/4.2.6_request@2.88.2: + /request-promise@4.2.6(request@2.88.2): resolution: {integrity: sha512-HCHI3DJJUakkOr8fNoCc73E5nU5bqITjOYFMDrKHYOXWXrgD/SBaC7LjwuPymUprRyuF06UK7hd/lMHkmUXglQ==} engines: {node: '>=0.10.0'} deprecated: request-promise has been deprecated because it extends the now deprecated request package, see https://github.com/request/request/issues/3142 @@ -41085,12 +42189,12 @@ packages: dependencies: bluebird: 3.7.2 request: 2.88.2 - request-promise-core: 1.1.4_request@2.88.2 + request-promise-core: 1.1.4(request@2.88.2) stealthy-require: 1.1.1 tough-cookie: 2.5.0 dev: false - /request/2.88.2: + /request@2.88.2: resolution: {integrity: sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==} engines: {node: '>= 6'} deprecated: request has been deprecated, see https://github.com/request/request/issues/3142 @@ -41116,19 +42220,19 @@ packages: tunnel-agent: 0.6.0 uuid: 3.4.0 - /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 - /requireg/0.2.2: + /requireg@0.2.2: resolution: {integrity: sha512-nYzyjnFcPNGR3lx9lwPPPnuQxv6JWEZd2Ci0u9opN7N5zUEPIhY/GbL3vMGOr2UXwEg9WwSyV9X9Y/kLFgPsOg==} engines: {node: '>= 4.0.0'} dependencies: @@ -41137,22 +42241,23 @@ packages: resolve: 1.7.1 dev: true - /requireindex/1.2.0: + /requireindex@1.2.0: resolution: {integrity: sha512-L9jEkOi3ASd9PYit2cwRfyppc9NoABujTP8/5gFcbERmo5jUoAKovIC3fsF17pkTnGsrByysqX+Kxd2OTNI1ww==} engines: {node: '>=0.10.5'} dev: true - /requires-port/1.0.0: + /requires-port@1.0.0: resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} - /requizzle/0.2.4: + /requizzle@0.2.4: resolution: {integrity: sha512-JRrFk1D4OQ4SqovXOgdav+K8EAhSB/LJZqCz8tbX0KObcdeM15Ss59ozWMBWmmINMagCwmqn4ZNryUGpBsl6Jw==} + requiresBuild: true dependencies: lodash: 4.17.21 dev: false optional: true - /resend/0.11.1: + /resend@0.11.1: resolution: {integrity: sha512-HntGZRVZ6dW5ngAC/fv+StNhMHuJjBT7ZBsmw0iZWN4t4cN5JS8w2Nrt7NtgnDbOfWSdxFm+maCS+f4OGLQyZA==} dependencies: '@react-email/render': 0.0.5 @@ -41161,17 +42266,17 @@ packages: - debug dev: false - /resize-observer-polyfill/1.5.1: + /resize-observer-polyfill@1.5.1: resolution: {integrity: sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==} dev: false - /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 - /resolve-dir/1.0.1: + /resolve-dir@1.0.1: resolution: {integrity: sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==} engines: {node: '>=0.10.0'} dependencies: @@ -41179,27 +42284,27 @@ packages: global-modules: 1.0.0 dev: true - /resolve-from/3.0.0: + /resolve-from@3.0.0: resolution: {integrity: sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==} engines: {node: '>=4'} dev: true - /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-url-loader/4.0.0: + /resolve-url-loader@4.0.0: resolution: {integrity: sha512-05VEMczVREcbtT7Bz+C+96eUO5HDNvdthIiMB34t7FcF8ehcu4wC0sSgPUubs3XW2Q3CNLJk/BJrCU9wVRymiA==} engines: {node: '>=8.9'} peerDependencies: @@ -41217,7 +42322,7 @@ packages: postcss: 7.0.39 source-map: 0.6.1 - /resolve-url-loader/5.0.0: + /resolve-url-loader@5.0.0: resolution: {integrity: sha512-uZtduh8/8srhBoMx//5bwqjQ+rfYOUq8zC9NrMUGtjBiGTtFJM42s58/36+hTqeqINcnYe08Nj3LkK9lW4N8Xg==} engines: {node: '>=12'} dependencies: @@ -41228,26 +42333,26 @@ packages: source-map: 0.6.1 dev: true - /resolve-url/0.2.1: + /resolve-url@0.2.1: resolution: {integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==} deprecated: https://github.com/lydell/resolve-url#deprecated 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/1.1.1: + /resolve.exports@1.1.1: resolution: {integrity: sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ==} engines: {node: '>=10'} - /resolve.exports/2.0.2: + /resolve.exports@2.0.2: resolution: {integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==} engines: {node: '>=10'} dev: true - /resolve/1.22.1: + /resolve@1.22.1: resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==} hasBin: true dependencies: @@ -41256,7 +42361,7 @@ packages: supports-preserve-symlinks-flag: 1.0.0 dev: true - /resolve/1.22.2: + /resolve@1.22.2: resolution: {integrity: sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==} hasBin: true dependencies: @@ -41264,13 +42369,13 @@ packages: path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 - /resolve/1.7.1: + /resolve@1.7.1: resolution: {integrity: sha512-c7rwLofp8g1U+h1KNyHL/jicrKg1Ek4q+Lr33AL65uZTinUZHe30D5HlyN5V9NW0JX1D5dXQ4jqW5l7Sy/kGfw==} dependencies: path-parse: 1.0.7 dev: true - /resolve/2.0.0-next.4: + /resolve@2.0.0-next.4: resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==} hasBin: true dependencies: @@ -41278,7 +42383,7 @@ packages: path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 - /restore-cursor/2.0.0: + /restore-cursor@2.0.0: resolution: {integrity: sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==} engines: {node: '>=4'} dependencies: @@ -41286,74 +42391,74 @@ packages: signal-exit: 3.0.7 dev: true - /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 - /ret/0.1.15: + /ret@0.1.15: resolution: {integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==} engines: {node: '>=0.12'} dev: true - /retry-request/5.0.2: + /retry-request@5.0.2: resolution: {integrity: sha512-wfI3pk7EE80lCIXprqh7ym48IHYdwmAAzESdbU8Q9l7pnRCk9LEhpbOTNKjz6FARLm/Bl5m+4F0ABxOkYUujSQ==} engines: {node: '>=12'} dependencies: - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) extend: 3.0.2 transitivePeerDependencies: - supports-color dev: false - /retry/0.12.0: + /retry@0.12.0: resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==} engines: {node: '>= 4'} - /retry/0.13.1: + /retry@0.13.1: resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==} engines: {node: '>= 4'} - /reusify/1.0.4: + /reusify@1.0.4: resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} engines: {iojs: '>=1.0.0', node: '>=0.10.0'} - /revalidator/0.1.8: + /revalidator@0.1.8: resolution: {integrity: sha512-xcBILK2pA9oh4SiinPEZfhP8HfrB/ha+a2fTMyl7Om2WjlDVrOQy99N2MXXlUHqGJz4qEu2duXxHJjDWuK/0xg==} engines: {node: '>= 0.4.0'} dev: true - /rfdc/1.3.0: + /rfdc@1.3.0: resolution: {integrity: sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==} - /right-pad/1.0.1: + /right-pad@1.0.1: resolution: {integrity: sha512-bYBjgxmkvTAfgIYy328fmkwhp39v8lwVgWhhrzxPV3yHtcSqyYKe9/XOhvW48UFjATg3VuJbpsp5822ACNvkmw==} engines: {node: '>= 0.10'} dev: true - /rimraf/2.6.3: + /rimraf@2.6.3: resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==} hasBin: true dependencies: glob: 7.2.3 dev: true - /rimraf/2.7.1: + /rimraf@2.7.1: resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} hasBin: true dependencies: glob: 7.2.3 dev: true - /rimraf/3.0.2: + /rimraf@3.0.2: resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} hasBin: true dependencies: glob: 7.2.3 - /rimraf/4.4.1: + /rimraf@4.4.1: resolution: {integrity: sha512-Gk8NlF062+T9CqNGn6h4tls3k6T1+/nXdOcSZVikNVtlRdYpA7wRJJMoXmuvOnLW844rPjdQ7JgXCYM6PPC/og==} engines: {node: '>=14'} hasBin: true @@ -41361,7 +42466,7 @@ packages: glob: 9.3.5 dev: true - /rollup-plugin-commonjs/10.1.0_rollup@3.20.2: + /rollup-plugin-commonjs@10.1.0(rollup@3.20.2): resolution: {integrity: sha512-jlXbjZSQg8EIeAAvepNwhJj++qJWNJw1Cl0YnOqKtP5Djx+fFGkp3WRh+W0ASCaFG5w1jhmzDxgu3SJuVxPF4Q==} deprecated: This package has been deprecated and is no longer maintained. Please use @rollup/plugin-commonjs. peerDependencies: @@ -41375,14 +42480,14 @@ packages: rollup-pluginutils: 2.8.2 dev: true - /rollup-plugin-json/4.0.0: + /rollup-plugin-json@4.0.0: resolution: {integrity: sha512-hgb8N7Cgfw5SZAkb3jf0QXii6QX/FOkiIq2M7BAQIEydjHvTyxXHQiIzZaTFgx1GK0cRCHOCBHIyEkkLdWKxow==} deprecated: This module has been deprecated and is no longer maintained. Please use @rollup/plugin-json. dependencies: rollup-pluginutils: 2.8.2 dev: true - /rollup-plugin-sourcemaps/0.6.3_zqbtwiefoqdn56wtfj6ofq72gq: + /rollup-plugin-sourcemaps@0.6.3(@types/node@14.18.42)(rollup@3.20.2): resolution: {integrity: sha512-paFu+nT1xvuO1tPFYXGe+XnQvg4Hjqv/eIhG8i5EspfYYPBKL57X7iVbfv55aNVASg3dzWvES9dmWsL2KhfByw==} engines: {node: '>=10.0.0'} peerDependencies: @@ -41392,13 +42497,13 @@ packages: '@types/node': optional: true dependencies: - '@rollup/pluginutils': 3.1.0_rollup@3.20.2 + '@rollup/pluginutils': 3.1.0(rollup@3.20.2) '@types/node': 14.18.42 rollup: 3.20.2 source-map-resolve: 0.6.0 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: @@ -41410,7 +42515,7 @@ packages: serialize-javascript: 4.0.0 terser: 5.16.9 - /rollup-plugin-terser/7.0.2_rollup@3.20.2: + /rollup-plugin-terser@7.0.2(rollup@3.20.2): resolution: {integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==} deprecated: This package has been deprecated and is no longer maintained. Please use @rollup/plugin-terser peerDependencies: @@ -41423,7 +42528,7 @@ packages: terser: 5.16.9 dev: true - /rollup-plugin-typescript2/0.34.1_e7tciabaay7z2i5ycjdzz3zl6i: + /rollup-plugin-typescript2@0.34.1(rollup@3.20.2)(typescript@4.9.5): resolution: {integrity: sha512-P4cHLtGikESmqi1CA+tdMDUv8WbQV48mzPYt77TSTOPJpERyZ9TXdDgjSDix8Fkqce6soYz3+fa4lrC93IEkcw==} peerDependencies: rollup: '>=1.26.3' @@ -41438,20 +42543,20 @@ packages: typescript: 4.9.5 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.79.1: + /rollup@2.79.1: resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==} engines: {node: '>=10.0.0'} hasBin: true optionalDependencies: fsevents: 2.3.3 - /rollup/3.20.2: + /rollup@3.20.2: resolution: {integrity: sha512-3zwkBQl7Ai7MFYQE0y1MeQ15+9jsi7XxfrqwTb/9EK8D9C9+//EBR4M+CuA1KODRaNbFez/lWxA5vhEGZp4MUg==} engines: {node: '>=14.18.0', npm: '>=8.0.0'} hasBin: true @@ -41459,7 +42564,7 @@ packages: fsevents: 2.3.3 dev: true - /rollup/3.28.1: + /rollup@3.28.1: resolution: {integrity: sha512-R9OMQmIHJm9znrU3m3cpE8uhN0fGdXiawME7aZIpQqvpS/85+Vt1Hq1/yVIcYfOmaQiHjvXkQAoJukvLpau6Yw==} engines: {node: '>=14.18.0', npm: '>=8.0.0'} hasBin: true @@ -41467,17 +42572,17 @@ packages: fsevents: 2.3.3 dev: true - /rrule/2.7.2: + /rrule@2.7.2: resolution: {integrity: sha512-NkBsEEB6FIZOZ3T8frvEBOB243dm46SPufpDckY/Ap/YH24V1zLeMmDY8OA10lk452NdrF621+ynDThE7FQU2A==} dependencies: tslib: 2.6.2 dev: false - /run-async/2.4.1: + /run-async@2.4.1: resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} engines: {node: '>=0.12.0'} - /run-con/1.2.11: + /run-con@1.2.11: resolution: {integrity: sha512-NEMGsUT+cglWkzEr4IFK21P4Jca45HqiAbIIZIBdX5+UZTB24Mb/21iNGgz9xZa8tL6vbW7CXmq7MFN42+VjNQ==} hasBin: true dependencies: @@ -41487,22 +42592,22 @@ packages: strip-json-comments: 3.1.1 dev: true - /run-node/1.0.0: + /run-node@1.0.0: resolution: {integrity: sha512-kc120TBlQ3mih1LSzdAJXo4xn/GWS2ec0l3S+syHDXP9uRr0JAT8Qd3mdMuyjqCzeZktgP3try92cEgf9Nks8A==} engines: {node: '>=4'} hasBin: true dev: true - /run-p/0.0.0: + /run-p@0.0.0: resolution: {integrity: sha512-ZLiUUVOXJcM/S1hMnm6Ooc1zAgAx98Mmn1qyA+y3WNeK7hOTGAusVR5r3uOQJ0NuUxZt7J9vNusYNNVgKPSbww==} 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-for-await/0.0.2_rxjs@6.6.7: + /rxjs-for-await@0.0.2(rxjs@6.6.7): resolution: {integrity: sha512-IJ8R/ZCFMHOcDIqoABs82jal00VrZx8Xkgfe7TOKoaRPAW5nH/VFlG23bXpeGdrmtqI9UobFPgUKgCuFc7Lncw==} peerDependencies: rxjs: ^6.0.0 @@ -41510,25 +42615,25 @@ packages: rxjs: 6.6.7 dev: true - /rxjs/6.6.7: + /rxjs@6.6.7: resolution: {integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==} engines: {npm: '>=2.0.0'} dependencies: tslib: 1.14.1 - /rxjs/7.8.1: + /rxjs@7.8.1: resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} dependencies: tslib: 2.6.2 - /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-array-concat/1.0.0: + /safe-array-concat@1.0.0: resolution: {integrity: sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ==} engines: {node: '>=0.4'} dependencies: @@ -41537,17 +42642,17 @@ packages: has-symbols: 1.0.3 isarray: 2.0.5 - /safe-buffer/5.1.1: + /safe-buffer@5.1.1: resolution: {integrity: sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==} 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==} - /safe-execa/0.1.2: + /safe-execa@0.1.2: resolution: {integrity: sha512-vdTshSQ2JsRCgT8eKZWNJIL26C6bVqy1SOmuCMlKHegVeo8KYRobRrefOdUq9OozSPUUiSxrylteeRmLOMFfWg==} engines: {node: '>=12'} dependencies: @@ -41556,28 +42661,28 @@ packages: path-name: 1.0.0 dev: true - /safe-regex-test/1.0.0: + /safe-regex-test@1.0.0: resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==} dependencies: call-bind: 1.0.2 get-intrinsic: 1.2.1 is-regex: 1.1.4 - /safe-regex/1.1.0: + /safe-regex@1.1.0: resolution: {integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==} dependencies: ret: 0.1.15 dev: true - /safe-stable-stringify/2.4.3: + /safe-stable-stringify@2.4.3: resolution: {integrity: sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==} engines: {node: '>=10'} dev: false - /safer-buffer/2.1.2: + /safer-buffer@2.1.2: resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} - /sanitize-html/2.10.0: + /sanitize-html@2.10.0: resolution: {integrity: sha512-JqdovUd81dG4k87vZt6uA6YhDfWkUGruUu/aPmXLxXi45gZExnt9Bnw/qeQU8oGf82vPyaE0vO4aH0PbobB9JQ==} dependencies: deepmerge: 4.3.1 @@ -41588,10 +42693,10 @@ packages: postcss: 8.4.21 dev: false - /sanitize.css/13.0.0: + /sanitize.css@13.0.0: resolution: {integrity: sha512-ZRwKbh/eQ6w9vmTjkuG0Ioi3HBwPFce0O+v//ve+aOq1oeCy7jMV2qzzAlpsNuqpqCBjjriM1lbtZbF/Q8jVyA==} - /sass-loader/12.6.0_webpack@5.78.0: + /sass-loader@12.6.0(webpack@5.78.0): resolution: {integrity: sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==} engines: {node: '>= 12.13.0'} peerDependencies: @@ -41612,9 +42717,9 @@ packages: dependencies: klona: 2.0.6 neo-async: 2.6.2 - webpack: 5.78.0_u5c4qderjagc6tepfyiby6xhau + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) - /sass-loader/13.2.0_sass@1.58.1+webpack@5.76.1: + /sass-loader@13.2.0(sass@1.58.1)(webpack@5.76.1): resolution: {integrity: sha512-JWEp48djQA4nbZxmgC02/Wh0eroSUutulROUusYJO9P9zltRbNN80JCBHqRGzjd4cmZCa/r88xgfkjGD0TXsHg==} engines: {node: '>= 14.15.0'} peerDependencies: @@ -41636,10 +42741,10 @@ packages: klona: 2.0.6 neo-async: 2.6.2 sass: 1.58.1 - webpack: 5.76.1 + webpack: 5.76.1(@swc/core@1.3.49)(esbuild@0.17.8) dev: true - /sass/1.58.1: + /sass@1.58.1: resolution: {integrity: sha512-bnINi6nPXbP1XNRaranMFEBZWUfdW/AF16Ql5+ypRxfTvCRTTKrLsMIakyDcayUt2t/RZotmL4kgJwNH5xO+bg==} engines: {node: '>=12.0.0'} hasBin: true @@ -41649,7 +42754,7 @@ packages: source-map-js: 1.0.2 dev: true - /sass/1.61.0: + /sass@1.61.0: resolution: {integrity: sha512-PDsN7BrVkNZK2+dj/dpKQAWZavbAQ87IXqVvw2+oEYI+GwlTWkvbQtL7F2cCNbMqJEYKPh1EcjSxsnqIb/kyaQ==} engines: {node: '>=14.0.0'} hasBin: true @@ -41659,140 +42764,139 @@ packages: source-map-js: 1.0.2 dev: true - /sax/1.2.1: + /sax@1.2.1: resolution: {integrity: sha512-8I2a3LovHTOpm7NV5yOyO8IHqgVsfK4+UuySrXU8YXkSRX7k6hCV9b3HrkKCr3nMpgj+0bmocaJJWpvp1oc7ZA==} dev: false - /sax/1.2.4: + /sax@1.2.4: resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==} - /saxes/5.0.1: + /saxes@5.0.1: resolution: {integrity: sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==} engines: {node: '>=10'} dependencies: xmlchars: 2.2.0 - /saxes/6.0.0: + /saxes@6.0.0: resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} engines: {node: '>=v12.22.7'} dependencies: xmlchars: 2.2.0 dev: true - /scheduler/0.20.2: + /scheduler@0.20.2: resolution: {integrity: sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==} dependencies: loose-envify: 1.4.0 object-assign: 4.1.1 - /scheduler/0.23.0: + /scheduler@0.23.0: resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==} dependencies: loose-envify: 1.4.0 dev: false - /schema-utils/2.7.0: + /schema-utils@2.7.0: resolution: {integrity: sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==} engines: {node: '>= 8.9.0'} dependencies: '@types/json-schema': 7.0.12 ajv: 6.12.6 - ajv-keywords: 3.5.2_ajv@6.12.6 + ajv-keywords: 3.5.2(ajv@6.12.6) - /schema-utils/2.7.1: + /schema-utils@2.7.1: resolution: {integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==} engines: {node: '>= 8.9.0'} dependencies: '@types/json-schema': 7.0.12 ajv: 6.12.6 - ajv-keywords: 3.5.2_ajv@6.12.6 + ajv-keywords: 3.5.2(ajv@6.12.6) - /schema-utils/3.1.2: + /schema-utils@3.1.2: resolution: {integrity: sha512-pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg==} engines: {node: '>= 10.13.0'} dependencies: '@types/json-schema': 7.0.12 ajv: 6.12.6 - ajv-keywords: 3.5.2_ajv@6.12.6 - dev: true + ajv-keywords: 3.5.2(ajv@6.12.6) - /schema-utils/3.3.0: + /schema-utils@3.3.0: resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==} engines: {node: '>= 10.13.0'} dependencies: '@types/json-schema': 7.0.12 ajv: 6.12.6 - ajv-keywords: 3.5.2_ajv@6.12.6 + ajv-keywords: 3.5.2(ajv@6.12.6) - /schema-utils/4.0.0: + /schema-utils@4.0.0: resolution: {integrity: sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==} engines: {node: '>= 12.13.0'} dependencies: '@types/json-schema': 7.0.12 ajv: 8.12.0 - ajv-formats: 2.1.1_ajv@8.12.0 - ajv-keywords: 5.1.0_ajv@8.12.0 + ajv-formats: 2.1.1(ajv@8.12.0) + ajv-keywords: 5.1.0(ajv@8.12.0) - /scmp/2.1.0: + /scmp@2.1.0: resolution: {integrity: sha512-o/mRQGk9Rcer/jEEw/yw4mwo3EU/NvYvp577/Btqrym9Qy5/MdWGBqipbALgd2lrdWTJ5/gqDusxfnQBxOxT2Q==} dev: false - /scroll-into-view-if-needed/2.2.31: + /scroll-into-view-if-needed@2.2.31: resolution: {integrity: sha512-dGCXy99wZQivjmjIqihaBQNjryrz5rueJY7eHfTdyWEiR4ttYpsajb14rn9s5d4DY4EcY6+4+U/maARBXJedkA==} dependencies: compute-scroll-into-view: 1.0.20 dev: false - /scroll/3.0.1: + /scroll@3.0.1: resolution: {integrity: sha512-pz7y517OVls1maEzlirKO5nPYle9AXsFzTMNJrRGmT951mzpIBy7sNHOg5o/0MQd/NqliCiWnAi0kZneMPFLcg==} dev: true - /scrollparent/2.0.1: + /scrollparent@2.0.1: resolution: {integrity: sha512-HSdN78VMvFCSGCkh0oYX/tY4R3P1DW61f8+TeZZ4j2VLgfwvw0bpRSOv4PCVKisktIwbzHCfZsx+rLbbDBqIBA==} dev: true - /secure-compare/3.0.1: + /secure-compare@3.0.1: resolution: {integrity: sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==} dev: true - /secure-json-parse/2.7.0: + /secure-json-parse@2.7.0: resolution: {integrity: sha512-6aU+Rwsezw7VR8/nyvKTx8QpWH9FrcYiXXlqC4z5d5XQBDRqtbfsRjnwGyqbi3gddNtWHuEk9OANUotL26qKUw==} dev: false - /selderee/0.10.0: + /selderee@0.10.0: resolution: {integrity: sha512-DEL/RW/f4qLw/NrVg97xKaEBC8IpzIG2fvxnzCp3Z4yk4jQ3MXom+Imav9wApjxX2dfS3eW7x0DXafJr85i39A==} dependencies: parseley: 0.11.0 dev: false - /selderee/0.11.0: + /selderee@0.11.0: resolution: {integrity: sha512-5TF+l7p4+OsnP8BCCvSyZiSPc4x4//p5uPwK8TCnVPJYRmU2aYKMpOXvw8zM5a5JvuuCGN1jmsMwuU2W02ukfA==} dependencies: parseley: 0.12.1 dev: false - /select-hose/2.0.0: + /select-hose@2.0.0: resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==} - /selfsigned/2.1.1: + /selfsigned@2.1.1: resolution: {integrity: sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==} engines: {node: '>=10'} dependencies: node-forge: 1.3.1 - /semantic-release/19.0.5: + /semantic-release@19.0.5: resolution: {integrity: sha512-NMPKdfpXTnPn49FDogMBi36SiBfXkSOJqCkk0E4iWOY1tusvvgBwqUmxTX1kmlT6kIYed9YwNKD1sfPpqa5yaA==} engines: {node: '>=16 || ^14.17'} hasBin: true dependencies: - '@semantic-release/commit-analyzer': 9.0.2_semantic-release@19.0.5 + '@semantic-release/commit-analyzer': 9.0.2(semantic-release@19.0.5) '@semantic-release/error': 3.0.0 - '@semantic-release/github': 8.0.7_semantic-release@19.0.5 - '@semantic-release/npm': 9.0.2_semantic-release@19.0.5 - '@semantic-release/release-notes-generator': 10.0.3_semantic-release@19.0.5 + '@semantic-release/github': 8.0.7(semantic-release@19.0.5) + '@semantic-release/npm': 9.0.2(semantic-release@19.0.5) + '@semantic-release/release-notes-generator': 10.0.3(semantic-release@19.0.5) aggregate-error: 3.1.0 cosmiconfig: 7.1.0 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) env-ci: 5.5.0 execa: 5.1.1 figures: 3.2.0 @@ -41803,7 +42907,7 @@ packages: hosted-git-info: 4.1.0 lodash: 4.17.21 marked: 4.3.0 - marked-terminal: 5.1.1_marked@4.3.0 + marked-terminal: 5.1.1(marked@4.3.0) micromatch: 4.0.5 p-each-series: 2.2.0 p-reduce: 2.1.0 @@ -41818,43 +42922,43 @@ packages: - supports-color dev: true - /semver-compare/1.0.0: + /semver-compare@1.0.0: resolution: {integrity: sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==} dev: true - /semver-diff/3.1.1: + /semver-diff@3.1.1: resolution: {integrity: sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==} engines: {node: '>=8'} dependencies: semver: 6.3.1 dev: true - /semver-regex/3.1.4: + /semver-regex@3.1.4: resolution: {integrity: sha512-6IiqeZNgq01qGf0TId0t3NvKzSvUsjcpdEO3AQNeIjR6A2+ckTnQlDpl4qu1bjRv0RzN3FP9hzFmws3lKqRWkA==} engines: {node: '>=8'} dev: true - /semver/5.7.1: + /semver@5.7.1: resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==} hasBin: true dev: true - /semver/5.7.2: + /semver@5.7.2: resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} hasBin: true - /semver/6.3.1: + /semver@6.3.1: resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} hasBin: true - /semver/7.3.4: + /semver@7.3.4: resolution: {integrity: sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==} 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 @@ -41862,21 +42966,21 @@ packages: lru-cache: 6.0.0 dev: true - /semver/7.4.0: + /semver@7.4.0: resolution: {integrity: sha512-RgOxM8Mw+7Zus0+zcLEUn8+JfoLpj/huFTItQy2hsM4khuC1HYRDp0cU482Ewn/Fcy6bCjufD8vAj7voC66KQw==} engines: {node: '>=10'} hasBin: true dependencies: lru-cache: 6.0.0 - /semver/7.5.0: + /semver@7.5.0: resolution: {integrity: sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==} engines: {node: '>=10'} hasBin: true dependencies: lru-cache: 6.0.0 - /semver/7.5.2: + /semver@7.5.2: resolution: {integrity: sha512-SoftuTROv/cRjCze/scjGyiDtcUyxw1rgYQSZY7XTmtR5hX+dm76iDbTH8TkLPHCQmlbQVSSbNZCPM2hb0knnQ==} engines: {node: '>=10'} hasBin: true @@ -41884,14 +42988,14 @@ packages: lru-cache: 6.0.0 dev: true - /semver/7.5.4: + /semver@7.5.4: resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} 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: @@ -41911,36 +43015,36 @@ packages: transitivePeerDependencies: - supports-color - /sentence-case/2.1.1: + /sentence-case@2.1.1: resolution: {integrity: sha512-ENl7cYHaK/Ktwk5OTD+aDbQ3uC8IByu/6Bkg+HDv8Mm+XnBnppVNalcfJTNsp1ibstKh030/JKQQWglDvtKwEQ==} dependencies: no-case: 2.3.2 upper-case-first: 1.1.2 dev: true - /serialize-javascript/4.0.0: + /serialize-javascript@4.0.0: resolution: {integrity: sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==} dependencies: randombytes: 2.1.0 - /serialize-javascript/5.0.1: + /serialize-javascript@5.0.1: resolution: {integrity: sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==} 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 - /serialize-javascript/6.0.1: + /serialize-javascript@6.0.1: resolution: {integrity: sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==} dependencies: randombytes: 2.1.0 - /serve-favicon/2.5.0: + /serve-favicon@2.5.0: resolution: {integrity: sha512-FMW2RvqNr03x+C0WxTyu6sOv21oOjkq5j8tjquWccwa6ScNyGFOGJVpuS1NmTVGBAHS07xnSKotgf2ehQmf9iA==} engines: {node: '>= 0.8.0'} dependencies: @@ -41951,7 +43055,7 @@ packages: safe-buffer: 5.1.1 dev: true - /serve-index/1.9.1: + /serve-index@1.9.1: resolution: {integrity: sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==} engines: {node: '>= 0.8.0'} dependencies: @@ -41965,7 +43069,7 @@ packages: transitivePeerDependencies: - supports-color - /serve-static/1.15.0: + /serve-static@1.15.0: resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==} engines: {node: '>= 0.8.0'} dependencies: @@ -41976,10 +43080,10 @@ packages: transitivePeerDependencies: - supports-color - /set-blocking/2.0.0: + /set-blocking@2.0.0: resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} - /set-value/2.0.1: + /set-value@2.0.1: resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==} engines: {node: '>=0.10.0'} dependencies: @@ -41989,48 +43093,48 @@ packages: split-string: 3.1.0 dev: true - /setprototypeof/1.1.0: + /setprototypeof@1.1.0: resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==} - /setprototypeof/1.2.0: + /setprototypeof@1.2.0: resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} - /shallow-clone/3.0.1: + /shallow-clone@3.0.1: resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==} engines: {node: '>=8'} dependencies: kind-of: 6.0.3 - /shallowequal/1.1.0: + /shallowequal@1.1.0: resolution: {integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==} 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.8.1: + /shell-quote@1.8.1: resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==} - /shelljs/0.8.5: + /shelljs@0.8.5: resolution: {integrity: sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==} engines: {node: '>=4'} hasBin: true @@ -42039,7 +43143,7 @@ packages: interpret: 1.4.0 rechoir: 0.6.2 - /shiki/0.14.1: + /shiki@0.14.1: resolution: {integrity: sha512-+Jz4nBkCBe0mEDqo1eKRcCdjRtrCjozmcbTUjbPTX7OOJfEbTZzlUWlZtGe3Gb5oV1/jnojhG//YZc3rs9zSEw==} dependencies: ansi-sequence-parser: 1.1.0 @@ -42048,35 +43152,35 @@ packages: vscode-textmate: 8.0.0 dev: true - /shortid/2.2.16: + /shortid@2.2.16: resolution: {integrity: sha512-Ugt+GIZqvGXCIItnsL+lvFJOiN7RYqlGy7QE41O3YC1xbNSeDGIRO7xg2JJXIAj1cAGnOeC1r7/T9pgrtQbv4g==} dependencies: nanoid: 2.1.11 dev: false - /side-channel/1.0.4: + /side-channel@1.0.4: resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} dependencies: call-bind: 1.0.2 get-intrinsic: 1.2.1 object-inspect: 1.12.3 - /sift/16.0.1: + /sift@16.0.1: resolution: {integrity: sha512-Wv6BjQ5zbhW7VFefWusVP33T/EM0vYikCaQ2qR8yULbsilAT8/wQaXvuQ3ptGLpoKx+lihJE3y2UTgKDyyNHZQ==} dev: false - /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==} - /signal-exit/4.0.2: + /signal-exit@4.0.2: resolution: {integrity: sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q==} engines: {node: '>=14'} - /signale/1.4.0: + /signale@1.4.0: resolution: {integrity: sha512-iuh+gPf28RkltuJC7W5MRi6XAjTDCAPC/prJUpQoG4vIP3MJZ+GTydVnodXA7pwvTKb2cA0m9OFZW/cdWy/I/w==} engines: {node: '>=6'} dependencies: @@ -42085,7 +43189,7 @@ packages: pkg-conf: 2.1.0 dev: true - /sigstore/1.2.0: + /sigstore@1.2.0: resolution: {integrity: sha512-Fr9+W1nkBSIZCkJQR7jDn/zI0UXNsVpp+7mDQkCnZOIxG9p6yNXBx9xntHsfUyYHE55XDkkVV3+rYbrkzAeesA==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} hasBin: true @@ -42098,24 +43202,24 @@ packages: - supports-color dev: true - /simple-statistics/7.8.3: + /simple-statistics@7.8.3: resolution: {integrity: sha512-JFvMY00t6SBGtwMuJ+nqgsx9ylkMiJ5JlK9bkj8AdvniIe5615wWQYkKHXe84XtSuc40G/tlrPu0A5/NlJvv8A==} dev: false - /simple-swizzle/0.2.2: + /simple-swizzle@0.2.2: resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==} dependencies: is-arrayish: 0.3.2 dev: false - /simple-update-notifier/2.0.0: + /simple-update-notifier@2.0.0: resolution: {integrity: sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==} engines: {node: '>=10'} dependencies: semver: 7.5.4 dev: true - /sinon/9.2.4: + /sinon@9.2.4: resolution: {integrity: sha512-zljcULZQsJxVra28qIAL6ow1Z9tpattkCTEJR4RBP3TGc00FcttsP5pK284Nas5WjMZU5Yzy3kAIp3B3KRf5Yg==} dependencies: '@sinonjs/commons': 1.8.6 @@ -42125,42 +43229,41 @@ packages: nise: 4.1.0 supports-color: 7.2.0 - /sirv/1.0.19: + /sirv@1.0.19: resolution: {integrity: sha512-JuLThK3TnZG1TAKDwNIqNq6QA2afLOCcm+iE8D1Kj3GA40pSPsxQjjJl0J8X3tsR7T+CP1GavpzLwYkgVLWrZQ==} engines: {node: '>= 10'} dependencies: '@polka/url': 1.0.0-next.21 mrmime: 1.0.1 totalist: 1.1.0 - dev: true - /sisteransi/1.0.5: + /sisteransi@1.0.5: resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} - /slash/1.0.0: + /slash@1.0.0: resolution: {integrity: sha512-3TYDR7xWt4dIqV2JauJr+EJeW356RXijHeUlO+8djJ+uBXPn8/2dpzBc8yQhh583sVvc9CvFAeQVgijsH+PNNg==} engines: {node: '>=0.10.0'} dev: true - /slash/2.0.0: + /slash@2.0.0: resolution: {integrity: sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==} engines: {node: '>=6'} 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'} - /slice-ansi/0.0.4: + /slice-ansi@0.0.4: resolution: {integrity: sha512-up04hB2hR92PgjpyU3y/eg91yIBILyjVY26NvvciY3EVVPjybkMszMpXQ9QAkcS3I5rtJBDLoTxxg+qvW8c7rw==} engines: {node: '>=0.10.0'} dev: true - /slice-ansi/3.0.0: + /slice-ansi@3.0.0: resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==} engines: {node: '>=8'} dependencies: @@ -42168,7 +43271,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: @@ -42176,20 +43279,20 @@ packages: astral-regex: 2.0.0 is-fullwidth-code-point: 3.0.0 - /slick/1.12.2: + /slick@1.12.2: resolution: {integrity: sha512-4qdtOGcBjral6YIBCWJ0ljFSKNLz9KkhbWtuGvUyRowl1kxfuE1x/Z/aJcaiilpb3do9bl5K7/1h9XC5wWpY/A==} dev: false - /slugify/1.6.6: + /slugify@1.6.6: resolution: {integrity: sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==} engines: {node: '>=8.0.0'} 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'} - /sms77-client/2.25.0_node-fetch@2.6.9: + /sms77-client@2.25.0(node-fetch@2.6.9): resolution: {integrity: sha512-0O2UPEwmArjLt+0wkJAMuCLq4VgYYP+t5/Ng3lGwCBp+3RRf6bAssYY6GclEAOAU3aAg4lrrbxv2pRHJpXQ7rg==} peerDependencies: node-fetch: ^2.6.7 @@ -42201,7 +43304,7 @@ packages: node-fetch: 2.6.9 dev: false - /smtp-server/1.17.0: + /smtp-server@1.17.0: resolution: {integrity: sha512-9e3mzPDreNKxQ2LwupXCZ0PVkml3DQglqiztN3KEg6EsmjoIK6kzUBR9ePugIkIzaz08hH1ZZxIi+MCeCAZ9bA==} engines: {node: '>=0.12'} dependencies: @@ -42209,13 +43312,13 @@ packages: nodemailer-shared: 1.1.0 dev: false - /snake-case/2.1.0: + /snake-case@2.1.0: resolution: {integrity: sha512-FMR5YoPFwOLuh4rRz92dywJjyKYZNLpMn1R5ujVpIYkbA9p01fq8RMg0FkO4M+Yobt4MjHeLTJVm5xFFBHSV2Q==} dependencies: no-case: 2.3.2 dev: true - /snapdragon-node/2.1.1: + /snapdragon-node@2.1.1: resolution: {integrity: sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==} engines: {node: '>=0.10.0'} dependencies: @@ -42224,14 +43327,14 @@ packages: snapdragon-util: 3.0.1 dev: true - /snapdragon-util/3.0.1: + /snapdragon-util@3.0.1: resolution: {integrity: sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==} engines: {node: '>=0.10.0'} dependencies: kind-of: 3.2.2 dev: true - /snapdragon/0.8.2: + /snapdragon@0.8.2: resolution: {integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==} engines: {node: '>=0.10.0'} dependencies: @@ -42247,7 +43350,7 @@ packages: - supports-color dev: true - /socket.io-adapter/2.5.2: + /socket.io-adapter@2.5.2: resolution: {integrity: sha512-87C3LO/NOMc+eMcpcxUBebGjkpMDkNBS9tf7KJqcDsmL936EChtVva71Dw2q4tQcuVC+hAUy4an2NO/sYXmwRA==} dependencies: ws: 8.11.0 @@ -42255,12 +43358,12 @@ packages: - bufferutil - utf-8-validate - /socket.io-client/4.7.2: + /socket.io-client@4.7.2: resolution: {integrity: sha512-vtA0uD4ibrYD793SOIAwlo8cj6haOeMHrGvwPxJsxH7CeIksqJ+3Zc06RvWTIFgiSqx4A3sOnTXpfAEE2Zyz6w==} engines: {node: '>=10.0.0'} dependencies: '@socket.io/component-emitter': 3.1.0 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) engine.io-client: 6.5.2 socket.io-parser: 4.2.4 transitivePeerDependencies: @@ -42269,23 +43372,23 @@ packages: - utf-8-validate dev: false - /socket.io-parser/4.2.4: + /socket.io-parser@4.2.4: resolution: {integrity: sha512-/GbIKmo8ioc+NIWIhwdecY0ge+qVBSMdgxGygevmdHj24bsfgtCmcUUcQ5ZzcylGFHsN3k4HB4Cgkl96KVnuew==} engines: {node: '>=10.0.0'} dependencies: '@socket.io/component-emitter': 3.1.0 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) transitivePeerDependencies: - supports-color - /socket.io/4.7.2: + /socket.io@4.7.2: resolution: {integrity: sha512-bvKVS29/I5fl2FGLNHuXlQaUH/BlzX1IN6S+NKLNZpBsPZIDH+90eQmCs2Railn4YUiww4SzUedJ6+uzwFnKLw==} engines: {node: '>=10.2.0'} dependencies: accepts: 1.3.8 base64id: 2.0.0 cors: 2.8.5 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) engine.io: 6.5.2 socket.io-adapter: 2.5.2 socket.io-parser: 4.2.4 @@ -42294,70 +43397,70 @@ packages: - supports-color - utf-8-validate - /sockjs/0.3.24: + /sockjs@0.3.24: resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==} dependencies: faye-websocket: 0.11.4 uuid: 8.3.2 websocket-driver: 0.7.4 - /socks-proxy-agent/7.0.0: + /socks-proxy-agent@7.0.0: resolution: {integrity: sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==} engines: {node: '>= 10'} dependencies: agent-base: 6.0.2 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) socks: 2.7.1 transitivePeerDependencies: - supports-color dev: true - /socks-proxy-agent/8.0.1: + /socks-proxy-agent@8.0.1: resolution: {integrity: sha512-59EjPbbgg8U3x62hhKOFVAmySQUcfRQ4C7Q/D5sEHnZTQRrQlNKINks44DMR1gwXp0p4LaVIeccX2KHTTcHVqQ==} engines: {node: '>= 14'} dependencies: agent-base: 7.1.0 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) 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: ip: 2.0.0 smart-buffer: 4.2.0 - /sonic-boom/3.3.0: + /sonic-boom@3.3.0: resolution: {integrity: sha512-LYxp34KlZ1a2Jb8ZQgFCK3niIHzibdwtwNUWKg0qQRzsDoJ3Gfgkf8KdBTFU3SkejDEIlWwnSnpVdOZIhFMl/g==} dependencies: atomic-sleep: 1.0.0 dev: false - /sort-keys/2.0.0: + /sort-keys@2.0.0: resolution: {integrity: sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==} engines: {node: '>=4'} dependencies: is-plain-obj: 1.1.0 dev: true - /sort-keys/4.2.0: + /sort-keys@4.2.0: resolution: {integrity: sha512-aUYIEU/UviqPgc8mHR6IW1EGxkAXpeRETYcrzg8cLAvUPZcpAlleSXHV2mY7G12GphSH6Gzv+4MMVSSkbdteHg==} engines: {node: '>=8'} dependencies: is-plain-obj: 2.1.0 dev: true - /source-list-map/2.0.1: + /source-list-map@2.0.1: resolution: {integrity: sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==} - /source-map-js/1.0.2: + /source-map-js@1.0.2: resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} engines: {node: '>=0.10.0'} - /source-map-loader/3.0.2_webpack@5.78.0: + /source-map-loader@3.0.2(webpack@5.78.0): resolution: {integrity: sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==} engines: {node: '>= 12.13.0'} peerDependencies: @@ -42366,9 +43469,9 @@ packages: abab: 2.0.6 iconv-lite: 0.6.3 source-map-js: 1.0.2 - webpack: 5.78.0_u5c4qderjagc6tepfyiby6xhau + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) - /source-map-loader/4.0.1_webpack@5.76.1: + /source-map-loader@4.0.1(webpack@5.76.1): resolution: {integrity: sha512-oqXpzDIByKONVY8g1NUPOTQhe0UTU5bWUl32GSkqK2LjJj0HmwTMVKxcUip0RgAYhY1mqgOxjbQM48a0mmeNfA==} engines: {node: '>= 14.15.0'} peerDependencies: @@ -42377,10 +43480,10 @@ packages: abab: 2.0.6 iconv-lite: 0.6.3 source-map-js: 1.0.2 - webpack: 5.76.1 + webpack: 5.76.1(@swc/core@1.3.49)(esbuild@0.17.8) dev: true - /source-map-resolve/0.5.3: + /source-map-resolve@0.5.3: resolution: {integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==} deprecated: See https://github.com/lydell/source-map-resolve#deprecated dependencies: @@ -42391,7 +43494,7 @@ packages: urix: 0.1.0 dev: true - /source-map-resolve/0.6.0: + /source-map-resolve@0.6.0: resolution: {integrity: sha512-KXBr9d/fO/bWo97NXsPIAW1bFSBOuCnjbNTBMO7N59hsv5i9yzRDfcYwwt0l04+VqnKC+EwzvJZIP/qkuMgR/w==} deprecated: See https://github.com/lydell/source-map-resolve#deprecated dependencies: @@ -42399,65 +43502,65 @@ packages: decode-uri-component: 0.2.2 dev: true - /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.19: + /source-map-support@0.5.19: resolution: {integrity: sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==} 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-url/0.4.1: + /source-map-url@0.4.1: resolution: {integrity: sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==} deprecated: See https://github.com/lydell/source-map-url#deprecated dev: true - /source-map/0.5.7: + /source-map@0.5.7: resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==} engines: {node: '>=0.10.0'} - /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'} - /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 - /space-separated-tokens/1.1.5: + /space-separated-tokens@1.1.5: resolution: {integrity: sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==} - /spamc/0.0.5: + /spamc@0.0.5: resolution: {integrity: sha512-jYXItuZuiWZyG9fIdvgTUbp2MNRuyhuSwvvhhpPJd4JK/9oSZxkD7zAj53GJtowSlXwCJzLg6sCKAoE9wXsKgg==} dev: false - /spark-md5/3.0.2: + /spark-md5@3.0.2: resolution: {integrity: sha512-wcFzz9cDfbuqe0FZzfi2or1sgyIrsDwmPwfZC4hiNidPdPINjeUwNfv5kldczoEAcjl9Y1L3SM7Uz2PUEQzxQw==} dev: false - /sparkpost/2.1.4: + /sparkpost@2.1.4: resolution: {integrity: sha512-7yvpfLVCnCVaE1yexemHNDX2bLkG3Lel14aCwj1ZCAX8Aa4OjYCP7uWPOkSwwXLYfQZRUgdwxgzXwaIDiYVx7A==} engines: {node: '>=4'} dependencies: @@ -42465,22 +43568,23 @@ packages: request: 2.88.2 dev: false - /sparse-bitfield/3.0.3: + /sparse-bitfield@3.0.3: resolution: {integrity: sha512-kvzhi7vqKTfkh0PZU+2D2PIllw2ymqJKujUcyPMd9Y75Nv4nPbGJZXNhxsgdQab2BmlDct1YnfQCguEvHr7VsQ==} + requiresBuild: true dependencies: memory-pager: 1.5.0 dev: false optional: true - /spawn-command/0.0.2-1: + /spawn-command@0.0.2-1: resolution: {integrity: sha512-n98l9E2RMSJ9ON1AKisHzz7V42VDiBQGY6PB1BwRglz99wpVsSuGzQ+jOi6lFXBGVTCrRpltvjm+/XA+tpeJrg==} dev: true - /spawn-error-forwarder/1.0.0: + /spawn-error-forwarder@1.0.0: resolution: {integrity: sha512-gRjMgK5uFjbCvdibeGJuy3I5OYz6VLoVdsOJdA6wV0WlfQVLFueoqMxwwYD9RODdgb6oUIvlRlsyFSiQkMKu0g==} dev: true - /spawn-wrap/2.0.0: + /spawn-wrap@2.0.0: resolution: {integrity: sha512-EeajNjfN9zMnULLwhZZQU3GWBoFNkbngTUPfaawT4RkMiviTxcX0qfhVbGey39mfctfDHkWtuecgQ8NJcyQWHg==} engines: {node: '>=8'} dependencies: @@ -42492,32 +43596,32 @@ packages: which: 2.0.2 dev: true - /spdx-correct/3.2.0: + /spdx-correct@3.2.0: resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} dependencies: spdx-expression-parse: 3.0.1 spdx-license-ids: 3.0.13 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.13 dev: true - /spdx-license-ids/3.0.13: + /spdx-license-ids@3.0.13: resolution: {integrity: sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==} dev: true - /spdy-transport/3.0.0: + /spdy-transport@3.0.0: resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==} dependencies: - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) detect-node: 2.1.0 hpack.js: 2.1.6 obuf: 1.1.2 @@ -42526,11 +43630,11 @@ packages: transitivePeerDependencies: - supports-color - /spdy/4.0.2: + /spdy@4.0.2: resolution: {integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==} engines: {node: '>=6.0.0'} dependencies: - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) handle-thing: 2.0.1 http-deceiver: 1.2.7 select-hose: 2.0.0 @@ -42538,59 +43642,59 @@ packages: transitivePeerDependencies: - supports-color - /specificity/0.4.1: + /specificity@0.4.1: resolution: {integrity: sha512-1klA3Gi5PD1Wv9Q0wUoOQN1IWAuPu0D1U03ThXTr0cJ20+/iq2tHSDnK7Kk/0LXJ1ztUB2/1Os0wKmfyNgUQfg==} hasBin: true dev: false - /speed-measure-webpack-plugin/1.4.2_webpack@5.78.0: + /speed-measure-webpack-plugin@1.4.2(webpack@5.78.0): resolution: {integrity: sha512-AtVzD0bnIy2/B0fWqJpJgmhcrfWFhBlduzSo0uwplr/QvB33ZNZj2NEth3NONgdnZJqicK0W0mSxnLSbsVCDbw==} engines: {node: '>=6.0.0'} peerDependencies: webpack: ^1 || ^2 || ^3 || ^4 || ^5 dependencies: chalk: 4.1.2 - webpack: 5.78.0_u5c4qderjagc6tepfyiby6xhau + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) dev: false - /split-on-first/1.1.0: + /split-on-first@1.1.0: resolution: {integrity: sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==} engines: {node: '>=6'} dev: false - /split-string/3.1.0: + /split-string@3.1.0: resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==} engines: {node: '>=0.10.0'} dependencies: extend-shallow: 3.0.2 dev: true - /split/1.0.1: - resolution: {integrity: sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==} - dependencies: - through: 2.3.8 - - /split2/1.0.0: + /split2@1.0.0: resolution: {integrity: sha512-NKywug4u4pX/AZBB1FCPzZ6/7O+Xhz1qMVbzTvvKvikjO99oPN87SkK08mEY9P63/5lWjK+wgOOgApnTg5r6qg==} dependencies: through2: 2.0.5 dev: true - /split2/3.2.2: + /split2@3.2.2: resolution: {integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==} dependencies: readable-stream: 3.6.2 dev: true - /split2/4.2.0: + /split2@4.2.0: resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==} engines: {node: '>= 10.x'} dev: false - /sprintf-js/1.0.3: + /split@1.0.1: + resolution: {integrity: sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==} + dependencies: + through: 2.3.8 + + /sprintf-js@1.0.3: resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} - /sshpk/1.17.0: + /sshpk@1.17.0: resolution: {integrity: sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==} engines: {node: '>=0.10.0'} hasBin: true @@ -42605,47 +43709,47 @@ packages: safer-buffer: 2.1.2 tweetnacl: 0.14.5 - /ssri/10.0.2: + /ssri@10.0.2: resolution: {integrity: sha512-LWMXUSh7fEfCXNBq4UnRzC4Qc5Y1PPg5ogmb+6HX837i2cKzjB133aYmQ4lgO0shVTcTQHquKp3v5bn898q3Sw==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: minipass: 4.2.7 dev: true - /ssri/9.0.1: + /ssri@9.0.1: resolution: {integrity: sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: minipass: 3.3.6 dev: true - /stable/0.1.8: + /stable@0.1.8: resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==} deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility' - /stack-trace/0.0.10: + /stack-trace@0.0.10: resolution: {integrity: sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==} - /stack-utils/2.0.6: + /stack-utils@2.0.6: resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} engines: {node: '>=10'} dependencies: escape-string-regexp: 2.0.0 - /stackframe/1.3.4: + /stackframe@1.3.4: resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==} - /stacktracey/2.1.8: + /stacktracey@2.1.8: resolution: {integrity: sha512-Kpij9riA+UNg7TnphqjH7/CzctQ/owJGNbFkfEeve4Z4uxT5+JapVLFXcsurIfN34gnTWZNJ/f7NMG0E8JDzTw==} dependencies: as-table: 1.0.55 get-source: 2.0.12 dev: true - /standard-as-callback/2.1.0: + /standard-as-callback@2.1.0: resolution: {integrity: sha512-qoRRSyROncaz1z0mvYqIE4lCd9p2R90i6GxW3uZv5ucSu8tU7B5HXUP1gG8pVZsYNVaXjk8ClXHPttLyxAL48A==} - /static-extend/0.1.2: + /static-extend@0.1.2: resolution: {integrity: sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==} engines: {node: '>=0.10.0'} dependencies: @@ -42653,46 +43757,46 @@ packages: object-copy: 0.1.0 dev: true - /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'} - /stealthy-require/1.1.1: + /stealthy-require@1.1.1: resolution: {integrity: sha512-ZnWpYnYugiOVEY5GkcuJK1io5V8QmNYChG62gSit9pQVGErXtrKuPC55ITaVSukmMta5qpMU7vqLt2Lnni4f/g==} engines: {node: '>=0.10.0'} dev: false - /stop-iteration-iterator/1.0.0: + /stop-iteration-iterator@1.0.0: resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==} engines: {node: '>= 0.4'} dependencies: internal-slot: 1.0.5 - /stop-only/3.3.1: + /stop-only@3.3.1: resolution: {integrity: sha512-G8x+lRj6RU9pAm+gxaK7wIHmQ2ws6YlXwC2e/WgIwDdrMkr5iPWakLxD5BVOTVyw/mA578N8EBxSXjL4tDQu0A==} engines: {node: '>=6'} hasBin: true dependencies: - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) execa: 0.11.0 minimist: 1.2.8 transitivePeerDependencies: - supports-color dev: true - /stoppable/1.1.0: + /stoppable@1.1.0: resolution: {integrity: sha512-KXDYZ9dszj6bzvnEMRYvxgeTHU74QBFL54XKtP3nyMuJ81CFYtABZ3bAzL2EdFUaEwJOBOgENyFj3R7oTzDyyw==} engines: {node: '>=4', npm: '>=6'} dev: false - /store2/2.14.2: + /store2@2.14.2: resolution: {integrity: sha512-siT1RiqlfQnGqgT/YzXVUNsom9S0H1OX+dpdGN1xkyYATo4I6sep5NmsRD/40s3IIOvlCq6akxkqG82urIZW1w==} - /storybook-dark-mode/3.0.1_ktlmga7inmpnhh4xu7kimj7cou: + /storybook-dark-mode@3.0.1(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-3V6XBhkUq63BF6KzyDBbfV5/8sYtF4UtVccH1tK+Lrd4p0tF8k7yHOvVDhFL9hexnKXcLEnbC+42YDTPvjpK+A==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -42703,22 +43807,22 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 7.4.2_sfoxds7t5ydpegc3knd667wn6m - '@storybook/api': 7.4.2_sfoxds7t5ydpegc3knd667wn6m - '@storybook/components': 7.4.2_ktlmga7inmpnhh4xu7kimj7cou + '@storybook/addons': 7.4.2(react-dom@17.0.2)(react@17.0.2) + '@storybook/api': 7.4.2(react-dom@17.0.2)(react@17.0.2) + '@storybook/components': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) '@storybook/core-events': 7.4.2 '@storybook/global': 5.0.0 - '@storybook/theming': 7.4.2_sfoxds7t5ydpegc3knd667wn6m + '@storybook/theming': 7.4.2(react-dom@17.0.2)(react@17.0.2) fast-deep-equal: 3.1.3 memoizerific: 1.11.3 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) transitivePeerDependencies: - '@types/react' - '@types/react-dom' dev: false - /storybook/7.4.2: + /storybook@7.4.2: resolution: {integrity: sha512-UuYmdxEWEQAepfjgQFbbHTq47Xxpw16naAvJ9n/nsjMnOhYupm1ZIdWYaeNjz4LOfz+1WzgU7us0IvaBrxzl4g==} hasBin: true dependencies: @@ -42730,82 +43834,82 @@ packages: - utf-8-validate dev: true - /stream-combiner/0.2.2: - resolution: {integrity: sha512-6yHMqgLYDzQDcAkL+tjJDC5nSNuNIx0vZtRZeiPh7Saef7VHX9H5Ijn9l2VIol2zaNYlYEX6KyuT/237A58qEQ==} - dependencies: - duplexer: 0.1.2 - through: 2.3.8 - dev: false - - /stream-combiner2/1.1.1: + /stream-combiner2@1.1.1: resolution: {integrity: sha512-3PnJbYgS56AeWgtKF5jtJRT6uFJe56Z0Hc5Ngg/6sI6rIt8iiMBTa9cvdyFfpMQjaVHr8dusbNeFGIIonxOvKw==} dependencies: duplexer2: 0.1.4 readable-stream: 2.3.8 dev: true - /stream-each/1.2.3: + /stream-combiner@0.2.2: + resolution: {integrity: sha512-6yHMqgLYDzQDcAkL+tjJDC5nSNuNIx0vZtRZeiPh7Saef7VHX9H5Ijn9l2VIol2zaNYlYEX6KyuT/237A58qEQ==} + dependencies: + duplexer: 0.1.2 + through: 2.3.8 + dev: false + + /stream-each@1.2.3: resolution: {integrity: sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==} dependencies: end-of-stream: 1.4.4 stream-shift: 1.0.1 dev: true - /stream-events/1.0.5: + /stream-events@1.0.5: resolution: {integrity: sha512-E1GUzBSgvct8Jsb3v2X15pjzN1tYebtbLaMg+eBOUOAxgbLoSbT2NS91ckc5lJD1KfLjId+jXJRgo0qnV5Nerg==} dependencies: stubs: 3.0.0 - /stream-shift/1.0.1: + /stream-shift@1.0.1: resolution: {integrity: sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==} - /streamroller/3.1.5: + /streamroller@3.1.5: resolution: {integrity: sha512-KFxaM7XT+irxvdqSP1LGLgNWbYN7ay5owZ3r/8t77p+EtSUAfUgtl7be3xtqtOmGUl9K9YPO2ca8133RlTjvKw==} engines: {node: '>=8.0'} dependencies: date-format: 4.0.14 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) fs-extra: 8.1.0 transitivePeerDependencies: - supports-color dev: true - /streamsearch/1.1.0: + /streamsearch@1.1.0: resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} engines: {node: '>=10.0.0'} - /strict-uri-encode/2.0.0: + /strict-uri-encode@2.0.0: resolution: {integrity: sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==} engines: {node: '>=4'} dev: false - /string-argv/0.3.1: + /string-argv@0.3.1: resolution: {integrity: sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==} engines: {node: '>=0.6.19'} dev: true - /string-convert/0.2.1: + /string-convert@0.2.1: resolution: {integrity: sha512-u/1tdPl4yQnPBjnVrmdLo9gtuLvELKsAoRapekWggdiQNvvvum+jYF329d84NAa660KQw7pB2n36KrIKVoXa3A==} dev: false - /string-length/4.0.2: + /string-length@4.0.2: resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==} engines: {node: '>=10'} dependencies: char-regex: 1.0.2 strip-ansi: 6.0.1 - /string-length/5.0.1: + /string-length@5.0.1: resolution: {integrity: sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow==} engines: {node: '>=12.20'} dependencies: char-regex: 2.0.1 strip-ansi: 7.0.1 - /string-natural-compare/3.0.1: + /string-natural-compare@3.0.1: resolution: {integrity: sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==} - /string-width/1.0.2: + /string-width@1.0.2: resolution: {integrity: sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==} engines: {node: '>=0.10.0'} dependencies: @@ -42814,7 +43918,7 @@ packages: strip-ansi: 3.0.1 dev: true - /string-width/2.1.1: + /string-width@2.1.1: resolution: {integrity: sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==} engines: {node: '>=4'} dependencies: @@ -42822,7 +43926,7 @@ packages: strip-ansi: 4.0.0 dev: true - /string-width/3.1.0: + /string-width@3.1.0: resolution: {integrity: sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==} engines: {node: '>=6'} dependencies: @@ -42831,7 +43935,7 @@ packages: strip-ansi: 5.2.0 dev: true - /string-width/4.2.3: + /string-width@4.2.3: resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} engines: {node: '>=8'} dependencies: @@ -42839,7 +43943,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: @@ -42847,7 +43951,7 @@ packages: emoji-regex: 9.2.2 strip-ansi: 7.0.1 - /string.prototype.matchall/4.0.8: + /string.prototype.matchall@4.0.8: resolution: {integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==} dependencies: call-bind: 1.0.2 @@ -42859,7 +43963,7 @@ packages: regexp.prototype.flags: 1.5.0 side-channel: 1.0.4 - /string.prototype.padend/3.1.4: + /string.prototype.padend@3.1.4: resolution: {integrity: sha512-67otBXoksdjsnXXRUq+KMVTdlVRZ2af422Y0aTyTjVaoQkGr3mxl2Bc5emi7dOQ3OGVVQQskmLEWwFXwommpNw==} engines: {node: '>= 0.4'} dependencies: @@ -42868,7 +43972,7 @@ packages: es-abstract: 1.22.1 dev: true - /string.prototype.trim/1.2.7: + /string.prototype.trim@1.2.7: resolution: {integrity: sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==} engines: {node: '>= 0.4'} dependencies: @@ -42876,31 +43980,31 @@ packages: define-properties: 1.2.0 es-abstract: 1.22.1 - /string.prototype.trimend/1.0.6: + /string.prototype.trimend@1.0.6: resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==} dependencies: call-bind: 1.0.2 define-properties: 1.2.0 es-abstract: 1.22.1 - /string.prototype.trimstart/1.0.6: + /string.prototype.trimstart@1.0.6: resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==} dependencies: call-bind: 1.0.2 define-properties: 1.2.0 es-abstract: 1.22.1 - /string_decoder/1.1.1: + /string_decoder@1.1.1: resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} dependencies: safe-buffer: 5.1.2 - /string_decoder/1.3.0: + /string_decoder@1.3.0: resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} dependencies: safe-buffer: 5.2.1 - /stringify-object/3.3.0: + /stringify-object@3.3.0: resolution: {integrity: sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==} engines: {node: '>=4'} dependencies: @@ -42908,108 +44012,108 @@ 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 - /strip-ansi/4.0.0: + /strip-ansi@4.0.0: resolution: {integrity: sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==} engines: {node: '>=4'} dependencies: ansi-regex: 3.0.1 dev: true - /strip-ansi/5.2.0: + /strip-ansi@5.2.0: resolution: {integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==} engines: {node: '>=6'} dependencies: ansi-regex: 4.1.1 dev: true - /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/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'} - /strip-comments-strings/1.2.0: + /strip-comments-strings@1.2.0: resolution: {integrity: sha512-zwF4bmnyEjZwRhaak9jUWNxc0DoeKBJ7lwSN/LEc8dQXZcUFG6auaaTQJokQWXopLdM3iTx01nQT8E4aL29DAQ==} dev: true - /strip-comments/2.0.1: + /strip-comments@2.0.1: resolution: {integrity: sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw==} engines: {node: '>=10'} - /strip-eof/1.0.0: + /strip-eof@1.0.0: resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==} engines: {node: '>=0.10.0'} dev: true - /strip-final-newline/2.0.0: + /strip-final-newline@2.0.0: resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} engines: {node: '>=6'} - /strip-final-newline/3.0.0: + /strip-final-newline@3.0.0: resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} engines: {node: '>=12'} dev: true - /strip-indent/2.0.0: + /strip-indent@2.0.0: resolution: {integrity: sha512-RsSNPLpq6YUL7QYy44RnPVTn/lcVZtb48Uof3X5JLbF4zD/Gs7ZFDv2HWol+leoQN2mT86LAzSshGfkTlSOpsA==} engines: {node: '>=4'} dev: true - /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-indent/4.0.0: + /strip-indent@4.0.0: resolution: {integrity: sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==} engines: {node: '>=12'} 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: true - /strip-json-comments/3.1.1: + /strip-json-comments@3.1.1: resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} engines: {node: '>=8'} - /strip-outer/1.0.1: + /strip-outer@1.0.1: resolution: {integrity: sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==} engines: {node: '>=0.10.0'} dependencies: escape-string-regexp: 1.0.5 dev: true - /strnum/1.0.5: + /strnum@1.0.5: resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==} dev: false - /strong-log-transformer/2.1.0: + /strong-log-transformer@2.1.0: resolution: {integrity: sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==} engines: {node: '>=4'} hasBin: true @@ -43018,7 +44122,7 @@ packages: minimist: 1.2.8 through: 2.3.8 - /strtok3/6.3.0: + /strtok3@6.3.0: resolution: {integrity: sha512-fZtbhtvI9I48xDSywd/somNqgUHl2L2cstmXCCif0itOf96jeW18MBSyrLuNicYQVkvpOxkZtkzujiTJ9LW5Jw==} engines: {node: '>=10'} dependencies: @@ -43026,10 +44130,10 @@ packages: peek-readable: 4.1.0 dev: true - /stubs/3.0.0: + /stubs@3.0.0: resolution: {integrity: sha512-PdHt7hHUJKxvTCgbKX9C1V/ftOcjJQgz8BZwNfV5c4B6dcGqlpelTbJ999jBGZ2jYiPAwcX5dP6oBwVlBlUbxw==} - /style-data/2.0.1: + /style-data@2.0.1: resolution: {integrity: sha512-frUbteLGDoNEJhbMIWtyNE1VRduZXmZozhct4F+qN++OzIQZNZJ8KToZlDEl3eaedRYlDfKvUoMFMyrZj4x/sg==} dependencies: cheerio: 1.0.0-rc.12 @@ -43037,15 +44141,15 @@ packages: pick-util: 1.1.5 dev: false - /style-loader/3.3.2_webpack@5.78.0: + /style-loader@3.3.2(webpack@5.78.0): resolution: {integrity: sha512-RHs/vcrKdQK8wZliteNK4NKzxvLBzpuHMqYmUVWeKa6MkaIQ97ZTOS0b+zapZhy6GcrgWnvWYCMHRirC3FsUmw==} engines: {node: '>= 12.13.0'} peerDependencies: webpack: ^5.0.0 dependencies: - webpack: 5.78.0_u5c4qderjagc6tepfyiby6xhau + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) - /stylehacks/5.1.1_postcss@8.4.29: + /stylehacks@5.1.1(postcss@8.4.29): resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -43055,22 +44159,23 @@ packages: postcss: 8.4.29 postcss-selector-parser: 6.0.13 - /stylis/4.0.13: + /stylis@4.0.13: resolution: {integrity: sha512-xGPXiFVl4YED9Jh7Euv2V220mriG9u4B2TA6Ybjc1catrstKD2PpIdU3U0RKpkVBC2EhmL/F0sPCr9vrFTNRag==} dev: false - /stylis/4.1.3: + /stylis@4.1.3: resolution: {integrity: sha512-GP6WDNWf+o403jrEp9c5jibKavrtLW+/qYGhFxFrG8maXhwTBI7gLLhiBb0o7uFccWN+EOS9aMO6cGHWAO07OA==} - /subarg/1.0.0: + /subarg@1.0.0: resolution: {integrity: sha512-RIrIdRY0X1xojthNcVtgT9sjpOGagEUKpZdgBUi054OEPFo282yg+zE+t1Rj3+RqKq2xStL7uUHhY+AjbC4BXg==} dependencies: minimist: 1.2.8 dev: true - /subscriptions-transport-ws/0.11.0_graphql@16.8.0: + /subscriptions-transport-ws@0.11.0(graphql@16.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 + requiresBuild: true peerDependencies: graphql: ^15.7.2 || ^16.0.0 dependencies: @@ -43086,7 +44191,7 @@ packages: dev: false optional: true - /sucrase/3.32.0: + /sucrase@3.32.0: resolution: {integrity: sha512-ydQOU34rpSyj2TGyz4D2p8rbktIOZ8QY9s+DGLvFU1i5pWJE8vkpruCjGCMHsdXwnD7JDcS+noSwM/a7zyNFDQ==} engines: {node: '>=8'} hasBin: true @@ -43099,7 +44204,7 @@ packages: pirates: 4.0.5 ts-interface-checker: 0.1.13 - /superagent-defaults/0.1.14_superagent@8.0.9: + /superagent-defaults@0.1.14(superagent@8.0.9): resolution: {integrity: sha512-tC+QBaOj2YgmngNBHozy0KiceMWNldsNkc7UZC9xDLO2GLS0kgnj47mH9JCuG6e9uVGl/UQ0Chdc9I4D+QRiJw==} peerDependencies: superagent: '>=0.10.0' @@ -43107,27 +44212,27 @@ packages: emitter-component: 1.0.1 superagent: 8.0.9 - /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@8.1.1) proxy-agent: 6.3.0 superagent: 8.0.9 transitivePeerDependencies: - supports-color dev: false - /superagent/6.1.0: + /superagent@6.1.0: resolution: {integrity: sha512-OUDHEssirmplo3F+1HWKUrUjvnQuA+nZI6i/JJBdXb5eq9IyEQwPyPpqND+SSsxf6TygpBEkUjISVRN4/VOpeg==} engines: {node: '>= 7.0.0'} deprecated: Please upgrade to v7.0.2+ of superagent. We have fixed numerous issues with streams, form-data, attach(), filesystem errors not bubbling up (ENOENT on attach()), and all tests are now passing. See the releases tab for more information at . dependencies: component-emitter: 1.3.0 cookiejar: 2.1.4 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) fast-safe-stringify: 2.1.1 form-data: 3.0.1 formidable: 1.2.6 @@ -43139,13 +44244,13 @@ packages: transitivePeerDependencies: - supports-color - /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@8.1.1) fast-safe-stringify: 2.1.1 form-data: 4.0.0 formidable: 2.1.2 @@ -43156,14 +44261,14 @@ packages: transitivePeerDependencies: - supports-color - /superjson/1.12.2: + /superjson@1.12.2: resolution: {integrity: sha512-ugvUo9/WmvWOjstornQhsN/sR9mnGtWGYeTxFuqLb4AiT4QdUavjGFRALCPKWWnAiUJ4HTpytj5e0t5HoMRkXg==} engines: {node: '>=10'} dependencies: copy-anything: 3.0.3 dev: false - /supertest/5.0.0: + /supertest@5.0.0: resolution: {integrity: sha512-2JAWpPrUOZF4hHH5ZTCN2xjKXvJS3AEwPNXl0HUseHsfcXFvMy9kcsufIHCNAmQ5hlGCvgeAqaR5PBEouN3hlQ==} engines: {node: '>=6.0.0'} dependencies: @@ -43172,7 +44277,7 @@ packages: transitivePeerDependencies: - supports-color - /supertest/6.3.3: + /supertest@6.3.3: resolution: {integrity: sha512-EMCG6G8gDu5qEqRQ3JjjPs6+FYT1a7Hv5ApHvtSghmOFJYtsU5S+pSb6Y2EUeCEY3CmEL3mmQ8YWlPOzQomabA==} engines: {node: '>=6.4.0'} dependencies: @@ -43182,55 +44287,55 @@ 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: true - /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/6.1.0: + /supports-color@6.1.0: resolution: {integrity: sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==} engines: {node: '>=6'} dependencies: has-flag: 3.0.0 dev: true - /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 - /supports-hyperlinks/2.3.0: + /supports-hyperlinks@2.3.0: resolution: {integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==} engines: {node: '>=8'} dependencies: has-flag: 4.0.0 supports-color: 7.2.0 - /supports-preserve-symlinks-flag/1.0.0: + /supports-preserve-symlinks-flag@1.0.0: resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} engines: {node: '>= 0.4'} - /svg-parser/2.0.4: + /svg-parser@2.0.4: resolution: {integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==} - /svg-tags/1.0.0: + /svg-tags@1.0.0: resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==} dev: true - /svgo/1.3.2: + /svgo@1.3.2: resolution: {integrity: sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==} engines: {node: '>=4.0.0'} deprecated: This SVGO version is no longer supported. Upgrade to v2.x.x. @@ -43250,7 +44355,7 @@ packages: unquote: 1.1.1 util.promisify: 1.0.1 - /svgo/2.8.0: + /svgo@2.8.0: resolution: {integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==} engines: {node: '>=10.13.0'} hasBin: true @@ -43263,15 +44368,15 @@ packages: picocolors: 1.0.0 stable: 0.1.8 - /swagger-ui-dist/4.18.2: + /swagger-ui-dist@4.18.2: resolution: {integrity: sha512-oVBoBl9Dg+VJw8uRWDxlyUyHoNEDC0c1ysT6+Boy6CTgr2rUcLcfPon4RvxgS2/taNW6O0+US+Z/dlAsWFjOAQ==} dev: false - /swagger-ui-dist/5.4.2: + /swagger-ui-dist@5.4.2: resolution: {integrity: sha512-vT5QxP/NOr9m4gLZl+SpavWI3M9Fdh30+Sdw9rEtZbkqNmNNEPhjXas2xTD9rsJYYdLzAiMfwXvtooWH3xbLJA==} dev: false - /swagger-ui-express/4.6.2_express@4.18.2: + /swagger-ui-express@4.6.2(express@4.18.2): resolution: {integrity: sha512-MHIOaq9JrTTB3ygUJD+08PbjM5Tt/q7x80yz9VTFIatw8j5uIWKcr90S0h5NLMzFEDC6+eVprtoeA5MDZXCUKQ==} engines: {node: '>= v0.10.32'} peerDependencies: @@ -43281,39 +44386,39 @@ packages: swagger-ui-dist: 4.18.2 dev: false - /swap-case/1.1.2: + /swap-case@1.1.2: resolution: {integrity: sha512-BAmWG6/bx8syfc6qXPprof3Mn5vQgf5dwdUNJhsNqU9WdPt5P+ES/wQ5bxfijy8zwZgZZHslC3iAsxsuQMCzJQ==} dependencies: lower-case: 1.1.4 upper-case: 1.1.3 dev: true - /swc-loader/0.2.3_wvz5dn57l37py5yhasbcqqk6hi: + /swc-loader@0.2.3(@swc/core@1.3.49)(webpack@5.78.0): resolution: {integrity: sha512-D1p6XXURfSPleZZA/Lipb3A8pZ17fP4NObZvFCDjK/OKljroqDpPmsBdTraWhVBqUNpcWBQY1imWdoPScRlQ7A==} peerDependencies: '@swc/core': ^1.2.147 webpack: '>=2' dependencies: '@swc/core': 1.3.49 - webpack: 5.78.0_u5c4qderjagc6tepfyiby6xhau + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) dev: true - /symbol-observable/1.2.0: + /symbol-observable@1.2.0: resolution: {integrity: sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==} engines: {node: '>=0.10.0'} - /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==} - /synchronous-promise/2.0.17: + /synchronous-promise@2.0.17: resolution: {integrity: sha512-AsS729u2RHUfEra9xJrE39peJcc2stq2+poBXX8bcM08Y6g9j/i/PUzwNQqkaJde7Ntg1TO7bSREbR5sdosQ+g==} - /synckit/0.8.5: + /synckit@0.8.5: resolution: {integrity: sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==} engines: {node: ^14.18.0 || >=16.0.0} dependencies: @@ -43321,11 +44426,11 @@ packages: tslib: 2.6.2 dev: true - /tabbable/6.1.1: + /tabbable@6.1.1: resolution: {integrity: sha512-4kl5w+nCB44EVRdO0g/UGoOp3vlwgycUVtkk/7DPyeLZUCuNFFKCFG6/t/DgHLrUPHjrZg6s5tNm+56Q2B0xyg==} dev: false - /table-layout/1.0.2: + /table-layout@1.0.2: resolution: {integrity: sha512-qd/R7n5rQTRFi+Zf2sk5XVVd9UQl6ZkduPFC3S7WEGJAmetDTjY3qPN50eSKzwuzEyQKy5TN2TiZdkIjos2L6A==} engines: {node: '>=8.0.0'} dependencies: @@ -43335,7 +44440,7 @@ packages: wordwrapjs: 4.0.1 dev: true - /table/6.8.1: + /table@6.8.1: resolution: {integrity: sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==} engines: {node: '>=10.0.0'} dependencies: @@ -43346,7 +44451,7 @@ packages: strip-ansi: 6.0.1 dev: true - /tailwindcss/3.3.1_postcss@8.4.21: + /tailwindcss@3.3.1(postcss@8.4.21)(ts-node@10.9.1): resolution: {integrity: sha512-Vkiouc41d4CEq0ujXl6oiGFQ7bA3WEhUZdTgXAhtKxSy49OmKs8rEfQmupsfF0IGW8fv2iQkp1EVUuapCFrZ9g==} engines: {node: '>=12.13.0'} hasBin: true @@ -43368,10 +44473,10 @@ packages: object-hash: 3.0.0 picocolors: 1.0.0 postcss: 8.4.21 - postcss-import: 14.1.0_postcss@8.4.21 - postcss-js: 4.0.1_postcss@8.4.21 - postcss-load-config: 3.1.4_postcss@8.4.21 - postcss-nested: 6.0.0_postcss@8.4.21 + postcss-import: 14.1.0(postcss@8.4.21) + postcss-js: 4.0.1(postcss@8.4.21) + postcss-load-config: 3.1.4(postcss@8.4.21)(ts-node@10.9.1) + postcss-nested: 6.0.0(postcss@8.4.21) postcss-selector-parser: 6.0.13 postcss-value-parser: 4.2.0 quick-lru: 5.1.1 @@ -43380,20 +44485,19 @@ packages: transitivePeerDependencies: - ts-node - /tapable/0.1.10: + /tapable@0.1.10: resolution: {integrity: sha512-jX8Et4hHg57mug1/079yitEKWGB3LCwoxByLsNim89LABq8NqgiX+6iYVOsq0vX8uJHkU+DZ5fnq95f800bEsQ==} engines: {node: '>=0.6'} - dev: true - /tapable/1.1.3: + /tapable@1.1.3: resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==} engines: {node: '>=6'} - /tapable/2.2.1: + /tapable@2.2.1: resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} engines: {node: '>=6'} - /tar-fs/2.1.1: + /tar-fs@2.1.1: resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==} dependencies: chownr: 1.1.4 @@ -43402,7 +44506,7 @@ packages: tar-stream: 2.2.0 dev: true - /tar-stream/2.2.0: + /tar-stream@2.2.0: resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} engines: {node: '>=6'} dependencies: @@ -43412,7 +44516,7 @@ packages: inherits: 2.0.4 readable-stream: 3.6.2 - /tar/6.1.11: + /tar@6.1.11: resolution: {integrity: sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==} engines: {node: '>= 10'} dependencies: @@ -43424,7 +44528,7 @@ packages: yallist: 4.0.0 dev: true - /tar/6.1.13: + /tar@6.1.13: resolution: {integrity: sha512-jdIBIN6LTIe2jqzay/2vtYLlBHa3JF42ot3h1dW8Q0PaAG4v8rm0cvpVePtau5C6OKXGGcgO9q2AMNSWxiLqKw==} engines: {node: '>=10'} dependencies: @@ -43435,7 +44539,7 @@ packages: mkdirp: 1.0.4 yallist: 4.0.0 - /teeny-request/7.1.1: + /teeny-request@7.1.1: resolution: {integrity: sha512-iwY6rkW5DDGq8hE2YgNQlKbptYpY5Nn2xecjQiNjOXWbKzPGUfmeUBCSQbbr306d7Z7U2N0TPl+/SwYRfua1Dg==} engines: {node: '>=10'} dependencies: @@ -43449,7 +44553,7 @@ packages: - supports-color dev: true - /teeny-request/8.0.3: + /teeny-request@8.0.3: resolution: {integrity: sha512-jJZpA5He2y52yUhA7pyAGZlgQpcB+xLjcN0eUFxr9c8hP/H7uOXbBNVo/O0C/xVfJLJs680jvkFgVJEEvk9+ww==} engines: {node: '>=12'} dependencies: @@ -43463,12 +44567,12 @@ packages: - supports-color dev: false - /telejson/7.2.0: + /telejson@7.2.0: resolution: {integrity: sha512-1QTEcJkJEhc8OnStBx/ILRu5J2p0GjvWsBx56bmZRqnrkdBMUe+nX92jxV+p3dB4CP6PZCdJMQJwCggkNBMzkQ==} dependencies: memoizerific: 1.11.3 - /telnyx/1.23.0: + /telnyx@1.23.0: resolution: {integrity: sha512-hmXxXVyj+Fi+ips7KwmgUYQrzHCIyGo8bjm/B8tsCAJ7PZ0V3LO330CVOk0gPdlcZxIkITaXWB51swrbK09Wew==} engines: {node: ^6 || >=8} dependencies: @@ -43479,16 +44583,16 @@ packages: uuid: 3.4.0 dev: false - /temp-dir/1.0.0: + /temp-dir@1.0.0: resolution: {integrity: sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==} engines: {node: '>=4'} dev: true - /temp-dir/2.0.0: + /temp-dir@2.0.0: resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==} engines: {node: '>=8'} - /temp-write/4.0.0: + /temp-write@4.0.0: resolution: {integrity: sha512-HIeWmj77uOOHb0QX7siN3OtwV3CTntquin6TNVg6SHOqCP3hYKmox90eeFOGaY1MqJ9WYDDjkyZrW6qS5AWpbw==} engines: {node: '>=8'} dependencies: @@ -43499,14 +44603,14 @@ packages: uuid: 3.4.0 dev: true - /temp/0.8.4: + /temp@0.8.4: resolution: {integrity: sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==} engines: {node: '>=6.0.0'} dependencies: rimraf: 2.6.3 dev: true - /tempy/0.6.0: + /tempy@0.6.0: resolution: {integrity: sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw==} engines: {node: '>=10'} dependencies: @@ -43515,7 +44619,7 @@ packages: type-fest: 0.16.0 unique-string: 2.0.0 - /tempy/1.0.1: + /tempy@1.0.1: resolution: {integrity: sha512-biM9brNqxSc04Ee71hzFbryD11nX7VPhQQY32AdDmjFvodsRFz/3ufeoTZ6uYkRFfGo188tENcASNs3vTdsM0w==} engines: {node: '>=10'} dependencies: @@ -43526,14 +44630,14 @@ 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: ansi-escapes: 4.3.2 supports-hyperlinks: 2.3.0 - /terser-webpack-plugin/5.3.7_dnqqsr3phzjhopay4d6e5ziqz4: + /terser-webpack-plugin@5.3.7(@swc/core@1.3.49)(esbuild@0.18.20)(webpack@5.78.0): resolution: {integrity: sha512-AfKwIktyP7Cu50xNjXF/6Qb5lBNzYaWpU6YfoX3uZicTx0zTy0stDDCsvjDapKsSDvOeWo5MEq4TmdBy2cNoHw==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -43556,9 +44660,9 @@ packages: schema-utils: 3.3.0 serialize-javascript: 6.0.1 terser: 5.19.3 - webpack: 5.78.0_u5c4qderjagc6tepfyiby6xhau + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) - /terser-webpack-plugin/5.3.7_webpack@5.78.0: + /terser-webpack-plugin@5.3.7(@swc/core@1.3.49)(webpack@5.78.0): resolution: {integrity: sha512-AfKwIktyP7Cu50xNjXF/6Qb5lBNzYaWpU6YfoX3uZicTx0zTy0stDDCsvjDapKsSDvOeWo5MEq4TmdBy2cNoHw==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -43575,14 +44679,15 @@ packages: optional: true dependencies: '@jridgewell/trace-mapping': 0.3.19 + '@swc/core': 1.3.49 jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.1 terser: 5.19.3 - webpack: 5.78.0 + webpack: 5.78.0(@swc/core@1.3.49) dev: false - /terser-webpack-plugin/5.3.9_aka7ue4sjkoeo6uo4dlqntmpgy: + /terser-webpack-plugin@5.3.9(@swc/core@1.3.49)(esbuild@0.17.8)(webpack@5.76.1): resolution: {integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -43600,15 +44705,15 @@ packages: dependencies: '@jridgewell/trace-mapping': 0.3.18 '@swc/core': 1.3.49 - esbuild: 0.18.20 + esbuild: 0.17.8 jest-worker: 27.5.1 - schema-utils: 3.1.2 + schema-utils: 3.3.0 serialize-javascript: 6.0.1 - terser: 5.16.9 - webpack: 5.82.1_w67ycjwq2niq3jlxgktvf5aow4 + terser: 5.19.3 + webpack: 5.76.1(@swc/core@1.3.49)(esbuild@0.17.8) dev: true - /terser-webpack-plugin/5.3.9_dnqqsr3phzjhopay4d6e5ziqz4: + /terser-webpack-plugin@5.3.9(@swc/core@1.3.49)(esbuild@0.18.20)(webpack@5.78.0): resolution: {integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -43631,33 +44736,9 @@ packages: schema-utils: 3.3.0 serialize-javascript: 6.0.1 terser: 5.19.3 - webpack: 5.78.0_u5c4qderjagc6tepfyiby6xhau + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) - /terser-webpack-plugin/5.3.9_webpack@5.76.1: - resolution: {integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==} - engines: {node: '>= 10.13.0'} - peerDependencies: - '@swc/core': '*' - esbuild: '*' - uglify-js: '*' - webpack: ^5.1.0 - peerDependenciesMeta: - '@swc/core': - optional: true - esbuild: - optional: true - uglify-js: - optional: true - dependencies: - '@jridgewell/trace-mapping': 0.3.18 - jest-worker: 27.5.1 - schema-utils: 3.3.0 - serialize-javascript: 6.0.1 - terser: 5.19.3 - webpack: 5.76.1 - dev: true - - /terser-webpack-plugin/5.3.9_webpack@5.78.0: + /terser-webpack-plugin@5.3.9(@swc/core@1.3.49)(esbuild@0.18.20)(webpack@5.82.1): resolution: {integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -43674,13 +44755,15 @@ packages: optional: true dependencies: '@jridgewell/trace-mapping': 0.3.18 + '@swc/core': 1.3.49 + esbuild: 0.18.20 jest-worker: 27.5.1 - schema-utils: 3.3.0 + schema-utils: 3.1.2 serialize-javascript: 6.0.1 - terser: 5.19.3 - webpack: 5.78.0 + terser: 5.16.9 + webpack: 5.82.1(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) - /terser-webpack-plugin/5.3.9_webpack@5.88.2: + /terser-webpack-plugin@5.3.9(@swc/core@1.3.49)(webpack@5.78.0): resolution: {integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -43697,14 +44780,14 @@ packages: optional: true dependencies: '@jridgewell/trace-mapping': 0.3.18 + '@swc/core': 1.3.49 jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.1 terser: 5.19.3 - webpack: 5.88.2 - dev: true + webpack: 5.78.0(@swc/core@1.3.49) - /terser-webpack-plugin/5.3.9_wvz5dn57l37py5yhasbcqqk6hi: + /terser-webpack-plugin@5.3.9(@swc/core@1.3.49)(webpack@5.88.2): resolution: {integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -43726,10 +44809,10 @@ packages: schema-utils: 3.3.0 serialize-javascript: 6.0.1 terser: 5.19.3 - webpack: 5.78.0_@swc+core@1.3.49 + webpack: 5.88.2(@swc/core@1.3.49) dev: true - /terser/4.8.1: + /terser@4.8.1: resolution: {integrity: sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==} engines: {node: '>=6.0.0'} hasBin: true @@ -43740,7 +44823,7 @@ packages: source-map-support: 0.5.21 dev: false - /terser/5.16.3: + /terser@5.16.3: resolution: {integrity: sha512-v8wWLaS/xt3nE9dgKEWhNUFP6q4kngO5B8eYFUuebsu7Dw/UNAnpUod6UHo04jSSkv8TzKHjZDSd7EXdDQAl8Q==} engines: {node: '>=10'} hasBin: true @@ -43751,7 +44834,7 @@ packages: source-map-support: 0.5.21 dev: true - /terser/5.16.9: + /terser@5.16.9: resolution: {integrity: sha512-HPa/FdTB9XGI2H1/keLFZHxl6WNvAI4YalHGtDQTlMnJcoqSab1UwL4l1hGEhs6/GmLHBZIg/YgB++jcbzoOEg==} engines: {node: '>=10'} hasBin: true @@ -43761,7 +44844,7 @@ packages: commander: 2.20.3 source-map-support: 0.5.21 - /terser/5.19.3: + /terser@5.19.3: resolution: {integrity: sha512-pQzJ9UJzM0IgmT4FAtYI6+VqFf0lj/to58AV0Xfgg0Up37RyPG7Al+1cepC6/BVuAxR9oNb41/DL4DEoHJvTdg==} engines: {node: '>=10'} hasBin: true @@ -43771,7 +44854,7 @@ packages: commander: 2.20.3 source-map-support: 0.5.21 - /test-exclude/6.0.0: + /test-exclude@6.0.0: resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} engines: {node: '>=8'} dependencies: @@ -43779,150 +44862,150 @@ packages: glob: 7.2.3 minimatch: 3.1.2 - /text-decoding/1.0.0: + /text-decoding@1.0.0: resolution: {integrity: sha512-/0TJD42KDnVwKmDK6jj3xP7E2MG7SHAOG4tyTgyUCRPdHwvkquYNLEQltmdMa3owq3TkddCVcTsoctJI8VQNKA==} dev: false - /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-hex/1.0.0: + /text-hex@1.0.0: resolution: {integrity: sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==} dev: false - /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 - /thread-stream/2.3.0: + /thread-stream@2.3.0: resolution: {integrity: sha512-kaDqm1DET9pp3NXwR8382WHbnpXnRkN9xGN9dQt3B2+dmXiW8X1SOwmFOxAErEQ47ObhZ96J6yhZNXuyCOL7KA==} dependencies: real-require: 0.2.0 dev: false - /throat/6.0.2: + /throat@6.0.2: resolution: {integrity: sha512-WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ==} - /throttle-debounce/2.3.0: + /throttle-debounce@2.3.0: resolution: {integrity: sha512-H7oLPV0P7+jgvrk+6mwwwBDmxTaxnu9HMXmloNLXwnNO0ZxZ31Orah2n8lU1eMPvsaowP2CX+USCgyovXfdOFQ==} engines: {node: '>=8'} dev: false - /throttleit/1.0.0: + /throttleit@1.0.0: resolution: {integrity: sha512-rkTVqu6IjfQ/6+uNuuc3sZek4CEYxTJom3IktzgdSxcZqdARuebbA/f4QmAxMQIxqq9ZLEUkSYqvuk1I6VKq4g==} - /through/2.3.8: - resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} - - /through2/2.0.5: + /through2@2.0.5: resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==} dependencies: readable-stream: 2.3.8 xtend: 4.0.2 dev: true - /through2/3.0.2: + /through2@3.0.2: resolution: {integrity: sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==} dependencies: inherits: 2.0.4 readable-stream: 3.6.2 dev: true - /through2/4.0.2: + /through2@4.0.2: resolution: {integrity: sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==} dependencies: readable-stream: 3.6.2 dev: true - /thunky/1.1.0: + /through@2.3.8: + resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} + + /thunky@1.1.0: resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==} - /tiny-glob/0.2.9: + /tiny-glob@0.2.9: resolution: {integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==} dependencies: globalyzer: 0.1.0 globrex: 0.1.2 dev: true - /tiny-hashes/1.0.1: + /tiny-hashes@1.0.1: resolution: {integrity: sha512-knIN5zj4fl7kW4EBU5sLP20DWUvi/rVouvJezV0UAym2DkQaqm365Nyc8F3QEiOvunNDMxR8UhcXd1d5g+Wg1g==} dev: false - /tiny-invariant/1.3.1: + /tiny-invariant@1.3.1: resolution: {integrity: sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==} - /tinycolor2/1.6.0: + /tinycolor2@1.6.0: resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==} - /tinygradient/0.4.3: + /tinygradient@0.4.3: resolution: {integrity: sha512-tBPYQSs6eWukzzAITBSmqcOwZCKACvRa/XjPPh1mj4mnx4G3Drm51HxyCTU/TKnY8kG4hmTe5QlOh9O82aNtJQ==} dependencies: '@types/tinycolor2': 1.4.3 tinycolor2: 1.6.0 dev: true - /tinygradient/1.1.5: + /tinygradient@1.1.5: resolution: {integrity: sha512-8nIfc2vgQ4TeLnk2lFj4tRLvvJwEfQuabdsmvDdQPT0xlk9TaNtpGd6nNRxXoK6vQhN6RSzj+Cnp5tTQmpxmbw==} dependencies: '@types/tinycolor2': 1.4.3 tinycolor2: 1.6.0 - /title-case/2.1.1: + /title-case@2.1.1: resolution: {integrity: sha512-EkJoZ2O3zdCz3zJsYCsxyq2OC5hrxR9mfdd5I+w8h/tmFfeOxJ+vvkxsKxdmN0WtS9zLdHEgfgVOiMVgv+Po4Q==} dependencies: no-case: 2.3.2 upper-case: 1.1.3 dev: true - /tmp/0.0.33: + /tmp@0.0.33: resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} engines: {node: '>=0.6.0'} dependencies: os-tmpdir: 1.0.2 - /tmp/0.2.1: + /tmp@0.2.1: resolution: {integrity: sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==} engines: {node: '>=8.17.0'} dependencies: rimraf: 3.0.2 - /tmpl/1.0.5: + /tmpl@1.0.5: resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==} - /to-camel-case/1.0.0: + /to-camel-case@1.0.0: resolution: {integrity: sha512-nD8pQi5H34kyu1QDMFjzEIYqk0xa9Alt6ZfrdEMuHCFOfTLhDG5pgTu/aAM9Wt9lXILwlXmWP43b8sav0GNE8Q==} dependencies: to-space-case: 1.0.0 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-no-case/1.0.2: + /to-no-case@1.0.2: resolution: {integrity: sha512-Z3g735FxuZY8rodxV4gH7LxClE4H0hTIyHNIHdk+vpQxjLm0cwnKXq/OFVZ76SOQmto7txVcwSCwkU5kqp+FKg==} dev: false - /to-object-path/0.3.0: + /to-object-path@0.3.0: resolution: {integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==} engines: {node: '>=0.10.0'} dependencies: kind-of: 3.2.2 dev: true - /to-regex-range/2.1.1: + /to-regex-range@2.1.1: resolution: {integrity: sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==} engines: {node: '>=0.10.0'} dependencies: @@ -43930,13 +45013,13 @@ packages: repeat-string: 1.6.1 dev: true - /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 - /to-regex/3.0.2: + /to-regex@3.0.2: resolution: {integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==} engines: {node: '>=0.10.0'} dependencies: @@ -43946,24 +45029,24 @@ packages: safe-regex: 1.1.0 dev: true - /to-space-case/1.0.0: + /to-space-case@1.0.0: resolution: {integrity: sha512-rLdvwXZ39VOn1IxGL3V6ZstoTbwLRckQmn/U8ZDLuWwIXNpuZDhQ3AiRUlhTbOXFVE9C+dR51wM0CBDhk31VcA==} dependencies: to-no-case: 1.0.2 dev: false - /tocbot/4.21.1: + /tocbot@4.21.1: resolution: {integrity: sha512-IfajhBTeg0HlMXu1f+VMbPef05QpDTsZ9X2Yn1+8npdaXsXg/+wrm9Ze1WG5OS1UDC3qJ5EQN/XOZ3gfXjPFCw==} - /toggle-selection/1.0.6: + /toggle-selection@1.0.6: resolution: {integrity: sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ==} dev: false - /toidentifier/1.0.1: + /toidentifier@1.0.1: resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} engines: {node: '>=0.6'} - /token-types/2.1.1: + /token-types@2.1.1: resolution: {integrity: sha512-wnQcqlreS6VjthyHO3Y/kpK/emflxDBNhlNUPfh7wE39KnuDdOituXomIbyI79vBtF0Ninpkh72mcuRHo+RG3Q==} engines: {node: '>=0.1.98'} dependencies: @@ -43971,26 +45054,25 @@ packages: ieee754: 1.2.1 dev: true - /totalist/1.1.0: + /totalist@1.1.0: resolution: {integrity: sha512-gduQwd1rOdDMGxFG1gEvhV88Oirdo2p+KjoYFU7k2g+i7n6AFFbDQ5kMPUsW0pNbfQsB/cwXvT1i4Bue0s9g5g==} engines: {node: '>=6'} - dev: true - /touch/3.1.0: + /touch@3.1.0: resolution: {integrity: sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==} hasBin: true dependencies: nopt: 1.0.10 dev: true - /tough-cookie/2.5.0: + /tough-cookie@2.5.0: resolution: {integrity: sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==} engines: {node: '>=0.8'} dependencies: psl: 1.9.0 punycode: 2.3.0 - /tough-cookie/4.1.2: + /tough-cookie@4.1.2: resolution: {integrity: sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ==} engines: {node: '>=6'} dependencies: @@ -43999,7 +45081,7 @@ packages: universalify: 0.2.0 url-parse: 1.5.10 - /tough-cookie/4.1.3: + /tough-cookie@4.1.3: resolution: {integrity: sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==} engines: {node: '>=6'} dependencies: @@ -44008,94 +45090,94 @@ packages: universalify: 0.2.0 url-parse: 1.5.10 - /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.3.0 - /tr46/2.1.0: + /tr46@2.1.0: resolution: {integrity: sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==} engines: {node: '>=8'} dependencies: punycode: 2.3.0 - /tr46/3.0.0: + /tr46@3.0.0: resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==} engines: {node: '>=12'} dependencies: punycode: 2.3.0 - /traverse/0.6.7: + /traverse@0.6.7: resolution: {integrity: sha512-/y956gpUo9ZNCb99YjxG7OaslxZWHfCHAUUfshwqOXmxUIvqLjVO581BT+gM59+QV9tFe6/CGG53tsA1Y7RSdg==} dev: true - /tree-changes/0.9.3: + /tree-changes@0.9.3: resolution: {integrity: sha512-vvvS+O6kEeGRzMglTKbc19ltLWNtmNt1cpBoSYLj/iEcPVvpJasemKOlxBrmZaCtDJoF+4bwv3m01UKYi8mukQ==} dependencies: '@gilbarbara/deep-equal': 0.1.2 is-lite: 0.8.2 dev: true - /tree-kill/1.2.2: + /tree-kill@1.2.2: resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==} hasBin: true dev: true - /treeverse/2.0.0: + /treeverse@2.0.0: resolution: {integrity: sha512-N5gJCkLu1aXccpOTtqV6ddSEi6ZmGkh3hjmbu1IjcavJK4qyOVQmi0myQKM7z5jVGmD68SJoliaVrMmVObhj6A==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dev: true - /trim-newlines/2.0.0: + /trim-newlines@2.0.0: resolution: {integrity: sha512-MTBWv3jhVjTU7XR3IQHllbiJs8sc75a80OEhB6or/q7pLTWgQ0bMGQXXYQSrSuXe6WiKWDZ5txXY5P59a/coVA==} engines: {node: '>=4'} dev: true - /trim-newlines/3.0.1: + /trim-newlines@3.0.1: resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} engines: {node: '>=8'} dev: true - /trim-newlines/4.1.1: + /trim-newlines@4.1.1: resolution: {integrity: sha512-jRKj0n0jXWo6kh62nA5TEh3+4igKDXLvzBJcPpiizP7oOolUrYIxmVBG9TOtHYFHoddUk6YvAkGeGoSVTXfQXQ==} engines: {node: '>=12'} dev: true - /trim-repeated/1.0.0: + /trim-repeated@1.0.0: resolution: {integrity: sha512-pkonvlKk8/ZuR0D5tLW8ljt5I8kmxp2XKymhepUeOdCEfKpZaktSArkLHZt76OB1ZvO9bssUsDty4SWhLvZpLg==} engines: {node: '>=0.10.0'} dependencies: escape-string-regexp: 1.0.5 dev: true - /triple-beam/1.3.0: + /triple-beam@1.3.0: resolution: {integrity: sha512-XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw==} dev: false - /trough/2.1.0: + /trough@2.1.0: resolution: {integrity: sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==} dev: true - /tryer/1.0.1: + /tryer@1.0.1: resolution: {integrity: sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==} - /ts-dedent/2.2.0: + /ts-dedent@2.2.0: resolution: {integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==} engines: {node: '>=6.10'} - /ts-interface-checker/0.1.13: + /ts-interface-checker@0.1.13: resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} - /ts-invariant/0.4.4: + /ts-invariant@0.4.4: resolution: {integrity: sha512-uEtWkFM/sdZvRNNDL3Ehu4WVpwaulhwQszV8mrtcdeE8nN00BV9mAmQ88RkrBhFgl9gMgvjJLAQcZbnPXI9mlA==} dependencies: tslib: 1.14.1 dev: true - /ts-jest/27.1.5_46h2nya7z2u3ruciguirufjle4: + /ts-jest@27.1.5(@babel/core@7.22.11)(@types/jest@27.5.2)(jest@27.5.1)(typescript@4.9.5): resolution: {integrity: sha512-Xv6jBQPoBEvBq/5i2TeSG9tt/nqkbpcurrEG1b+2yfBrcJelOZF9Ml6dmyMh7bcW9JyFbRYpR5rxROSlBLTZHA==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} hasBin: true @@ -44117,43 +45199,10 @@ packages: optional: true dependencies: '@babel/core': 7.22.11 - '@types/jest': 29.5.1 - bs-logger: 0.2.6 - fast-json-stable-stringify: 2.1.0 - jest: 27.5.1_ts-node@10.9.1 - jest-util: 27.5.1 - json5: 2.2.3 - lodash.memoize: 4.1.2 - make-error: 1.3.6 - semver: 7.4.0 - typescript: 4.9.5 - yargs-parser: 20.2.9 - dev: true - - /ts-jest/27.1.5_cnngzrja2umb46xxazlucyx2qu: - resolution: {integrity: sha512-Xv6jBQPoBEvBq/5i2TeSG9tt/nqkbpcurrEG1b+2yfBrcJelOZF9Ml6dmyMh7bcW9JyFbRYpR5rxROSlBLTZHA==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - hasBin: true - peerDependencies: - '@babel/core': '>=7.0.0-beta.0 <8' - '@types/jest': ^27.0.0 - babel-jest: '>=27.0.0 <28' - esbuild: '*' - jest: ^27.0.0 - typescript: '>=3.8 <5.0' - peerDependenciesMeta: - '@babel/core': - optional: true - '@types/jest': - optional: true - babel-jest: - optional: true - esbuild: - optional: true - dependencies: + '@types/jest': 27.5.2 bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 27.5.1_ts-node@10.9.1 + jest: 27.5.1(ts-node@10.9.1) jest-util: 27.5.1 json5: 2.2.3 lodash.memoize: 4.1.2 @@ -44163,7 +45212,7 @@ packages: yargs-parser: 20.2.9 dev: true - /ts-jest/27.1.5_jt6hjr4g6reedzkbayzypxjbqa: + /ts-jest@27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5): resolution: {integrity: sha512-Xv6jBQPoBEvBq/5i2TeSG9tt/nqkbpcurrEG1b+2yfBrcJelOZF9Ml6dmyMh7bcW9JyFbRYpR5rxROSlBLTZHA==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} hasBin: true @@ -44185,10 +45234,10 @@ packages: optional: true dependencies: '@babel/core': 7.22.11 - '@types/jest': 29.5.2 + '@types/jest': 29.5.1 bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 27.5.1_ts-node@10.9.1 + jest: 27.5.1(ts-node@10.9.1) jest-util: 27.5.1 json5: 2.2.3 lodash.memoize: 4.1.2 @@ -44198,7 +45247,7 @@ packages: yargs-parser: 20.2.9 dev: true - /ts-jest/27.1.5_tdguimvmawsauzyxxfukpkg77i: + /ts-jest@27.1.5(@babel/core@7.22.11)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5): resolution: {integrity: sha512-Xv6jBQPoBEvBq/5i2TeSG9tt/nqkbpcurrEG1b+2yfBrcJelOZF9Ml6dmyMh7bcW9JyFbRYpR5rxROSlBLTZHA==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} hasBin: true @@ -44220,10 +45269,10 @@ packages: optional: true dependencies: '@babel/core': 7.22.11 - '@types/jest': 27.5.2 + '@types/jest': 29.5.2 bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 27.5.1_ts-node@10.9.1 + jest: 27.5.1(ts-node@10.9.1) jest-util: 27.5.1 json5: 2.2.3 lodash.memoize: 4.1.2 @@ -44233,7 +45282,7 @@ packages: yargs-parser: 20.2.9 dev: true - /ts-jest/29.1.0_25qyn5tohmpc7hklflfuuc5j3e: + /ts-jest@29.1.0(@babel/core@7.22.11)(esbuild@0.18.20)(jest@29.5.0)(typescript@4.9.5): resolution: {integrity: sha512-ZhNr7Z4PcYa+JjMl62ir+zPiNJfXJN6E8hSLnaUKhOgqcn8vb3e537cpkd0FuAfRK3sR1LSqM1MOhliXNgOFPA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true @@ -44258,7 +45307,7 @@ packages: bs-logger: 0.2.6 esbuild: 0.18.20 fast-json-stable-stringify: 2.1.0 - jest: 29.5.0_@types+node@18.15.11 + jest: 29.5.0(@types/node@18.15.11)(ts-node@10.9.1) jest-util: 29.5.0 json5: 2.2.3 lodash.memoize: 4.1.2 @@ -44268,7 +45317,7 @@ packages: yargs-parser: 21.1.1 dev: true - /ts-jest/29.1.0_warwjzk3ewnxrmv2f2elppn4ae: + /ts-jest@29.1.0(@babel/core@7.22.11)(jest@29.5.0)(typescript@4.9.5): resolution: {integrity: sha512-ZhNr7Z4PcYa+JjMl62ir+zPiNJfXJN6E8hSLnaUKhOgqcn8vb3e537cpkd0FuAfRK3sR1LSqM1MOhliXNgOFPA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true @@ -44292,7 +45341,7 @@ packages: '@babel/core': 7.22.11 bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 29.5.0_@types+node@14.18.42 + jest: 29.5.0(@types/node@14.18.42)(ts-node@10.9.1) jest-util: 29.5.0 json5: 2.2.3 lodash.memoize: 4.1.2 @@ -44302,7 +45351,7 @@ packages: yargs-parser: 21.1.1 dev: true - /ts-loader/9.4.2_fejcc7gjbwtmwzggoernzojija: + /ts-loader@9.4.2(typescript@4.9.5)(webpack@5.78.0): resolution: {integrity: sha512-OmlC4WVmFv5I0PpaxYb+qGeGOdm5giHU7HwDDUjw59emP2UYMHy9fFSDcYgSNoH8sXcj4hGCSEhlDZ9ULeDraA==} engines: {node: '>=12.0.0'} peerDependencies: @@ -44314,10 +45363,10 @@ packages: micromatch: 4.0.5 semver: 7.5.2 typescript: 4.9.5 - webpack: 5.78.0 + webpack: 5.78.0(@swc/core@1.3.49) dev: true - /ts-loader/9.4.2_hybrf64lftnf5l2xwgg7goi2iu: + /ts-loader@9.4.2(typescript@4.9.5)(webpack@5.82.1): resolution: {integrity: sha512-OmlC4WVmFv5I0PpaxYb+qGeGOdm5giHU7HwDDUjw59emP2UYMHy9fFSDcYgSNoH8sXcj4hGCSEhlDZ9ULeDraA==} engines: {node: '>=12.0.0'} peerDependencies: @@ -44329,10 +45378,10 @@ packages: micromatch: 4.0.5 semver: 7.5.2 typescript: 4.9.5 - webpack: 5.82.1_w67ycjwq2niq3jlxgktvf5aow4 + webpack: 5.82.1(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) dev: true - /ts-node/10.9.1_3oc4l4vkwjasz4xtxrjz3zw4u4: + /ts-node@10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5): resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} hasBin: true peerDependencies: @@ -44352,7 +45401,7 @@ packages: '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.3 - '@types/node': 20.4.7 + '@types/node': 14.18.42 acorn: 8.10.0 acorn-walk: 8.2.0 arg: 4.1.3 @@ -44362,10 +45411,8 @@ packages: typescript: 4.9.5 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 - dev: true - optional: true - /ts-node/10.9.1_j6r65ghnzvzk7vhdh4hyogrm4a: + /ts-node@10.9.1(@swc/core@1.3.49)(@types/node@16.11.7)(typescript@4.9.5): resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} hasBin: true peerDependencies: @@ -44395,9 +45442,8 @@ packages: typescript: 4.9.5 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 - dev: true - /ts-node/10.9.1_u2ngtadnsu6rqlw26gb7xq6vqq: + /ts-node@10.9.1(@swc/core@1.3.49)(@types/node@20.4.7)(typescript@4.9.5): resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} hasBin: true peerDependencies: @@ -44417,7 +45463,7 @@ packages: '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.3 - '@types/node': 14.18.42 + '@types/node': 20.4.7 acorn: 8.10.0 acorn-walk: 8.2.0 arg: 4.1.3 @@ -44428,38 +45474,9 @@ packages: v8-compile-cache-lib: 3.0.1 yn: 3.1.1 dev: true + optional: true - /ts-node/10.9.1_wh2cnrlliuuxb2etxm2m3ttgna: - 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 - '@types/node': 14.18.42 - acorn: 8.10.0 - 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.5 - v8-compile-cache-lib: 3.0.1 - yn: 3.1.1 - - /ts-node/9.1.1_typescript@4.9.5: + /ts-node@9.1.1(typescript@4.9.5): resolution: {integrity: sha512-hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg==} engines: {node: '>=10.0.0'} hasBin: true @@ -44475,7 +45492,7 @@ packages: yn: 3.1.1 dev: true - /ts-pnp/1.2.0_typescript@4.9.5: + /ts-pnp@1.2.0(typescript@4.9.5): resolution: {integrity: sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==} engines: {node: '>=6'} peerDependencies: @@ -44487,7 +45504,7 @@ packages: typescript: 4.9.5 dev: true - /tsconfig-paths-webpack-plugin/4.1.0: + /tsconfig-paths-webpack-plugin@4.1.0: resolution: {integrity: sha512-xWFISjviPydmtmgeUAuXp4N1fky+VCtfhOkDUFIv5ea7p4wuTomI4QTrXvFBX2S4jZsmyTSrStQl+E+4w+RzxA==} engines: {node: '>=10.13.0'} dependencies: @@ -44496,7 +45513,7 @@ packages: tsconfig-paths: 4.1.2 dev: true - /tsconfig-paths/3.14.2: + /tsconfig-paths@3.14.2: resolution: {integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==} dependencies: '@types/json5': 0.0.29 @@ -44504,7 +45521,7 @@ packages: minimist: 1.2.8 strip-bom: 3.0.0 - /tsconfig-paths/4.1.2: + /tsconfig-paths@4.1.2: resolution: {integrity: sha512-uhxiMgnXQp1IR622dUXI+9Ehnws7i/y6xvpZB9IbUVOPy0muvdvgXeZOn88UcGPiT98Vp3rJPTa8bFoalZ3Qhw==} engines: {node: '>=6'} dependencies: @@ -44512,7 +45529,7 @@ packages: minimist: 1.2.8 strip-bom: 3.0.0 - /tsconfig-paths/4.2.0: + /tsconfig-paths@4.2.0: resolution: {integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==} engines: {node: '>=6'} dependencies: @@ -44521,37 +45538,38 @@ packages: strip-bom: 3.0.0 dev: true - /tslib/1.10.0: + /tslib@1.10.0: resolution: {integrity: sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==} dev: true - /tslib/1.14.1: + /tslib@1.14.1: resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} - /tslib/2.1.0: + /tslib@2.1.0: resolution: {integrity: sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A==} dev: true - /tslib/2.3.1: + /tslib@2.3.1: resolution: {integrity: sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==} dev: false - /tslib/2.4.0: + /tslib@2.4.0: resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==} dev: false - /tslib/2.5.0: + /tslib@2.5.0: resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==} - /tslib/2.6.0: + /tslib@2.6.0: resolution: {integrity: sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA==} + requiresBuild: true dev: false optional: true - /tslib/2.6.2: + /tslib@2.6.2: resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} - /tsutils/3.21.0_typescript@4.9.5: + /tsutils@3.21.0(typescript@4.9.5): resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} engines: {node: '>= 6'} peerDependencies: @@ -44560,7 +45578,7 @@ packages: tslib: 1.14.1 typescript: 4.9.5 - /tuf-js/1.1.2: + /tuf-js@1.1.2: resolution: {integrity: sha512-gBfbnS6khluxjvoFCpRV0fhWT265xNfpiNXOcBX0Ze6HGbPhe93UG5V5DdKcgm/aXsMadnY76l/h6j63GmJS5g==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: @@ -44571,24 +45589,24 @@ packages: - supports-color dev: true - /tunnel-agent/0.6.0: + /tunnel-agent@0.6.0: resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} dependencies: safe-buffer: 5.2.1 - /tunnel/0.0.6: + /tunnel@0.0.6: resolution: {integrity: sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==} engines: {node: '>=0.6.11 <=0.7.0 || >=0.7.3'} dev: false - /tweetnacl/0.14.5: + /tweetnacl@0.14.5: resolution: {integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==} - /tweetnacl/1.0.3: + /tweetnacl@1.0.3: resolution: {integrity: sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw==} dev: false - /twilio/4.15.0: + /twilio@4.15.0: resolution: {integrity: sha512-wkHfIpAr2oOMfJ6A/Z6WD0jzLZZwMdbzys3XbslxNkmu4gGgRCre7o3IgaXRR5HIELEilbRhZjsmYHpG3fL8HA==} engines: {node: '>=14.0'} dependencies: @@ -44605,78 +45623,79 @@ packages: - supports-color dev: false - /type-check/0.3.2: + /type-check@0.3.2: resolution: {integrity: sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==} engines: {node: '>= 0.8.0'} + requiresBuild: true dependencies: prelude-ls: 1.1.2 dev: false optional: true - /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'} - /type-fest/0.13.1: + /type-fest@0.13.1: resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==} engines: {node: '>=10'} dev: true - /type-fest/0.16.0: + /type-fest@0.16.0: resolution: {integrity: sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==} engines: {node: '>=10'} - /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.4.1: + /type-fest@0.4.1: resolution: {integrity: sha512-IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw==} engines: {node: '>=6'} dev: true - /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-fest/1.4.0: + /type-fest@1.4.0: resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==} engines: {node: '>=10'} dev: true - /type-fest/2.19.0: + /type-fest@2.19.0: resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==} engines: {node: '>=12.20'} - /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 - /typed-array-buffer/1.0.0: + /typed-array-buffer@1.0.0: resolution: {integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==} engines: {node: '>= 0.4'} dependencies: @@ -44684,7 +45703,7 @@ packages: get-intrinsic: 1.2.1 is-typed-array: 1.1.12 - /typed-array-byte-length/1.0.0: + /typed-array-byte-length@1.0.0: resolution: {integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==} engines: {node: '>= 0.4'} dependencies: @@ -44693,7 +45712,7 @@ packages: has-proto: 1.0.1 is-typed-array: 1.1.12 - /typed-array-byte-offset/1.0.0: + /typed-array-byte-offset@1.0.0: resolution: {integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==} engines: {node: '>= 0.4'} dependencies: @@ -44703,26 +45722,26 @@ packages: has-proto: 1.0.1 is-typed-array: 1.1.12 - /typed-array-length/1.0.4: + /typed-array-length@1.0.4: resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==} dependencies: call-bind: 1.0.2 for-each: 0.3.3 is-typed-array: 1.1.12 - /typed-assert/1.0.9: + /typed-assert@1.0.9: resolution: {integrity: sha512-KNNZtayBCtmnNmbo5mG47p1XsCyrx6iVqomjcZnec/1Y5GGARaxPs6r49RnSPeUP3YjNYiU9sQHAtY4BBvnZwg==} dev: true - /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 - /typedarray/0.0.6: + /typedarray@0.0.6: resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} - /typedoc/0.24.6_typescript@4.9.5: + /typedoc@0.24.6(typescript@4.9.5): resolution: {integrity: sha512-c3y3h45xJv3qYwKDAwU6Cl+26CjT0ZvblHzfHJ+SjQDM4p1mZxtgHky4lhmG0+nNarRht8kADfZlbspJWdZarQ==} engines: {node: '>= 14.14'} hasBin: true @@ -44736,60 +45755,60 @@ packages: typescript: 4.9.5 dev: true - /typescript-memoize/1.1.1: + /typescript-memoize@1.1.1: resolution: {integrity: sha512-GQ90TcKpIH4XxYTI2F98yEQYZgjNMOGPpOgdjIBhaLaWji5HPWlRnZ4AeA1hfBxtY7bCGDJsqDDHk/KaHOl5bA==} dev: true - /typescript/4.9.5: + /typescript@4.9.5: resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==} engines: {node: '>=4.2.0'} hasBin: true - /typescript/5.1.6: + /typescript@5.1.6: resolution: {integrity: sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==} engines: {node: '>=14.17'} hasBin: true dev: true - /typical/4.0.0: + /typical@4.0.0: resolution: {integrity: sha512-VAH4IvQ7BDFYglMd7BPRDfLgxZZX4O4TFcRDA6EN5X7erNJJq+McIEp8np9aVtxrCJ6qx4GTYVfOWNjcqwZgRw==} engines: {node: '>=8'} dev: true - /typical/5.2.0: + /typical@5.2.0: resolution: {integrity: sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==} engines: {node: '>=8'} dev: true - /ua-parser-js/0.7.35: + /ua-parser-js@0.7.35: resolution: {integrity: sha512-veRf7dawaj9xaWEu9HoTVn5Pggtc/qj+kqTOFvNiN1l0YdxwC1kvel57UCjThjGa3BHBihE8/UJAHI+uQHmd/g==} dev: true - /uc.micro/1.0.6: + /uc.micro@1.0.6: resolution: {integrity: sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==} - /uglify-js/3.17.4: + /uglify-js@3.17.4: resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==} engines: {node: '>=0.8.0'} hasBin: true requiresBuild: true optional: true - /uid/2.0.2: - resolution: {integrity: sha512-u3xV3X7uzvi5b1MncmZo3i2Aw222Zk1keqLA1YkHldREkAhAqi65wuPfe7lHx8H/Wzy+8CE7S7uS3jekIM5s8g==} - engines: {node: '>=8'} - dependencies: - '@lukeed/csprng': 1.1.0 - - /uid2/0.0.3: + /uid2@0.0.3: resolution: {integrity: sha512-5gSP1liv10Gjp8cMEnFd6shzkL/D6W1uhXSFNCxDC+YI8+L8wkCYCbJ7n77Ezb4wE/xzMogecE+DtamEe9PZjg==} dev: false - /uid2/0.0.4: + /uid2@0.0.4: resolution: {integrity: sha512-IevTus0SbGwQzYh3+fRsAMTVVPOoIVufzacXcHPmdlle1jUpq7BRL+mw3dgeLanvGZdwwbWhRV6XrcFNdBmjWA==} dev: false - /unbox-primitive/1.0.2: + /uid@2.0.2: + resolution: {integrity: sha512-u3xV3X7uzvi5b1MncmZo3i2Aw222Zk1keqLA1YkHldREkAhAqi65wuPfe7lHx8H/Wzy+8CE7S7uS3jekIM5s8g==} + engines: {node: '>=8'} + dependencies: + '@lukeed/csprng': 1.1.0 + + /unbox-primitive@1.0.2: resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} dependencies: call-bind: 1.0.2 @@ -44797,50 +45816,51 @@ packages: has-symbols: 1.0.3 which-boxed-primitive: 1.0.2 - /undefsafe/2.0.5: + /undefsafe@2.0.5: resolution: {integrity: sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==} dev: true - /underscore/1.13.6: + /underscore@1.13.6: resolution: {integrity: sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A==} + requiresBuild: true dev: false optional: true - /undici/5.23.0: + /undici@5.23.0: resolution: {integrity: sha512-1D7w+fvRsqlQ9GscLBwcAJinqcZGHUKjbOmXdlE/v8BvEGXjeWAax+341q44EuTcHXXnfyKNbKRq4Lg7OzhMmg==} engines: {node: '>=14.0'} dependencies: busboy: 1.6.0 dev: false - /unfetch/3.1.2: + /unfetch@3.1.2: resolution: {integrity: sha512-L0qrK7ZeAudGiKYw6nzFjnJ2D5WHblUBwmHIqtPS6oKUd+Hcpk7/hKsSmcHsTlpd1TbTNsiRBUKRq3bHLNIqIw==} dev: false - /unfetch/4.2.0: + /unfetch@4.2.0: resolution: {integrity: sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==} dev: false - /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'} - /unicode-match-property-ecmascript/2.0.0: + /unicode-match-property-ecmascript@2.0.0: resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} engines: {node: '>=4'} dependencies: unicode-canonical-property-names-ecmascript: 2.0.0 unicode-property-aliases-ecmascript: 2.1.0 - /unicode-match-property-value-ecmascript/2.1.0: + /unicode-match-property-value-ecmascript@2.1.0: resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==} engines: {node: '>=4'} - /unicode-property-aliases-ecmascript/2.1.0: + /unicode-property-aliases-ecmascript@2.1.0: resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==} engines: {node: '>=4'} - /unified/10.1.2: + /unified@10.1.2: resolution: {integrity: sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==} dependencies: '@types/unist': 2.0.6 @@ -44852,7 +45872,7 @@ packages: vfile: 5.3.7 dev: true - /union-value/1.0.1: + /union-value@1.0.1: resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==} engines: {node: '>=0.10.0'} dependencies: @@ -44862,87 +45882,87 @@ packages: set-value: 2.0.1 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.1 dev: true - /uniqid/5.4.0: + /uniqid@5.4.0: resolution: {integrity: sha512-38JRbJ4Fj94VmnC7G/J/5n5SC7Ab46OM5iNtSstB/ko3l1b5g7ALt4qzHFgGciFkyiRNtDXtLNb+VsxtMSE77A==} dev: false - /unique-filename/2.0.1: + /unique-filename@2.0.1: resolution: {integrity: sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: unique-slug: 3.0.0 dev: true - /unique-filename/3.0.0: + /unique-filename@3.0.0: resolution: {integrity: sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: unique-slug: 4.0.0 dev: true - /unique-slug/3.0.0: + /unique-slug@3.0.0: resolution: {integrity: sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: imurmurhash: 0.1.4 dev: true - /unique-slug/4.0.0: + /unique-slug@4.0.0: resolution: {integrity: sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: imurmurhash: 0.1.4 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 - /unist-util-is/4.1.0: + /unist-util-is@4.1.0: resolution: {integrity: sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==} - /unist-util-is/5.2.1: + /unist-util-is@5.2.1: resolution: {integrity: sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==} dependencies: '@types/unist': 2.0.6 dev: true - /unist-util-stringify-position/3.0.3: + /unist-util-stringify-position@3.0.3: resolution: {integrity: sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==} dependencies: '@types/unist': 2.0.6 dev: true - /unist-util-visit-parents/3.1.1: + /unist-util-visit-parents@3.1.1: resolution: {integrity: sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==} dependencies: '@types/unist': 2.0.6 unist-util-is: 4.1.0 - /unist-util-visit-parents/5.1.3: + /unist-util-visit-parents@5.1.3: resolution: {integrity: sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==} dependencies: '@types/unist': 2.0.6 unist-util-is: 5.2.1 dev: true - /unist-util-visit/2.0.3: + /unist-util-visit@2.0.3: resolution: {integrity: sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==} dependencies: '@types/unist': 2.0.6 unist-util-is: 4.1.0 unist-util-visit-parents: 3.1.1 - /unist-util-visit/4.1.2: + /unist-util-visit@4.1.2: resolution: {integrity: sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==} dependencies: '@types/unist': 2.0.6 @@ -44950,27 +45970,27 @@ packages: unist-util-visit-parents: 5.1.3 dev: true - /universal-user-agent/6.0.0: + /universal-user-agent@6.0.0: resolution: {integrity: sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==} 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'} - /universalify/2.0.0: + /universalify@2.0.0: resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==} engines: {node: '>= 10.0.0'} - /unpipe/1.0.0: + /unpipe@1.0.0: resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} engines: {node: '>= 0.8'} - /unplugin/1.5.0: + /unplugin@1.5.0: resolution: {integrity: sha512-9ZdRwbh/4gcm1JTOkp9lAkIDrtOyOxgHmY7cjuwI8L/2RTikMcVG25GsZwNAgRuap3iDw2jeq7eoqtAsz5rW3A==} dependencies: acorn: 8.10.0 @@ -44978,10 +45998,10 @@ packages: webpack-sources: 3.2.3 webpack-virtual-modules: 0.5.0 - /unquote/1.1.1: + /unquote@1.1.1: resolution: {integrity: sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==} - /unset-value/1.0.0: + /unset-value@1.0.0: resolution: {integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==} engines: {node: '>=0.10.0'} dependencies: @@ -44989,20 +46009,20 @@ packages: isobject: 3.0.1 dev: true - /untildify/4.0.0: + /untildify@4.0.0: resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==} engines: {node: '>=8'} - /upath/1.2.0: + /upath@1.2.0: resolution: {integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==} engines: {node: '>=4'} - /upath/2.0.1: + /upath@2.0.1: resolution: {integrity: sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==} engines: {node: '>=4'} dev: true - /update-browserslist-db/1.0.11_browserslist@4.21.10: + /update-browserslist-db@1.0.11(browserslist@4.21.10): resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==} hasBin: true peerDependencies: @@ -45012,7 +46032,7 @@ packages: escalade: 3.1.1 picocolors: 1.0.0 - /update-browserslist-db/1.0.11_browserslist@4.21.5: + /update-browserslist-db@1.0.11(browserslist@4.21.5): resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==} hasBin: true peerDependencies: @@ -45022,38 +46042,38 @@ packages: escalade: 3.1.1 picocolors: 1.0.0 - /upper-case-first/1.1.2: + /upper-case-first@1.1.2: resolution: {integrity: sha512-wINKYvI3Db8dtjikdAqoBbZoP6Q+PZUyfMR7pmwHzjC2quzSkUq5DmPrTtPEqHaz8AGtmsB4TqwapMTM1QAQOQ==} dependencies: upper-case: 1.1.3 dev: true - /upper-case/1.1.3: + /upper-case@1.1.3: resolution: {integrity: sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA==} dev: true - /uri-js/4.4.1: + /uri-js@4.4.1: resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} dependencies: punycode: 2.3.0 - /uri-parser/1.0.1: + /uri-parser@1.0.1: resolution: {integrity: sha512-TRjjM2M83RD9jIIYttNj7ghUQTKSov+WXZbQIMM8DxY1R1QdJEGWNKKMYCxyeOw1p9re2nQ85usM6dPTVtox1g==} dev: false - /urix/0.1.0: + /urix@0.1.0: resolution: {integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==} deprecated: Please see https://github.com/lydell/urix#deprecated dev: true - /url-join/2.0.5: + /url-join@2.0.5: resolution: {integrity: sha512-c2H1fIgpUdwFRIru9HFno5DT73Ok8hg5oOb5AT3ayIgvCRfxgs2jyt5Slw8kEB7j3QUr6yJmMPDT/odjk7jXow==} dev: true - /url-join/4.0.1: + /url-join@4.0.1: resolution: {integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==} - /url-loader/4.1.1_webpack@5.82.1: + /url-loader@4.1.1(webpack@5.82.1): resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -45066,40 +46086,40 @@ packages: loader-utils: 2.0.4 mime-types: 2.1.35 schema-utils: 3.1.2 - webpack: 5.82.1_w67ycjwq2niq3jlxgktvf5aow4 + webpack: 5.82.1(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) 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 - /url-template/2.0.8: + /url-template@2.0.8: resolution: {integrity: sha512-XdVKMF4SJ0nP/O7XIPB0JwAEuT9lDIYnNsK8yGVe43y0AWoKeJNdv3ZNWh7ksJ6KqQFjOO6ox/VEitLnaVNufw==} dev: false - /url/0.10.3: + /url@0.10.3: resolution: {integrity: sha512-hzSUW2q06EqL1gKM/a+obYHLIO6ct2hwPuviqTTOcfFVc61UbfJ2Q32+uGL/HCPxKqrdGB5QUwIe7UqlDgwsOQ==} dependencies: punycode: 1.3.2 querystring: 0.2.0 dev: false - /url/0.11.0: + /url@0.11.0: resolution: {integrity: sha512-kbailJa29QrtXnxgq+DdCEGlbTeYM2eJUxsz6vjZavrCYPMIFHMKQmSKYAIuUK2i7hgPm28a8piX5NTUtM/LKQ==} dependencies: punycode: 1.3.2 querystring: 0.2.0 dev: true - /urlgrey/1.0.0: + /urlgrey@1.0.0: resolution: {integrity: sha512-hJfIzMPJmI9IlLkby8QrsCykQ+SXDeO2W5Q9QTW3QpqZVTx4a/K7p8/5q+/isD8vsbVaFgql/gvAoQCRQ2Cb5w==} dependencies: fast-url-parser: 1.1.3 dev: true - /use-callback-ref/1.3.0_h7fc2el62uaa77gho3xhys6ola: + /use-callback-ref@1.3.0(@types/react@17.0.53)(react@17.0.2): resolution: {integrity: sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w==} engines: {node: '>=10'} peerDependencies: @@ -45113,7 +46133,7 @@ packages: react: 17.0.2 tslib: 2.6.2 - /use-composed-ref/1.3.0_react@17.0.2: + /use-composed-ref@1.3.0(react@17.0.2): resolution: {integrity: sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -45121,7 +46141,7 @@ packages: react: 17.0.2 dev: false - /use-deep-compare-effect/1.8.1_react@17.0.2: + /use-deep-compare-effect@1.8.1(react@17.0.2): resolution: {integrity: sha512-kbeNVZ9Zkc0RFGpfMN3MNfaKNvcLNyxOAAd9O4CBZ+kCBXXscn9s/4I+8ytUER4RDpEYs5+O6Rs4PqiZ+rHr5Q==} engines: {node: '>=10', npm: '>=6'} peerDependencies: @@ -45132,7 +46152,7 @@ packages: react: 17.0.2 dev: false - /use-isomorphic-layout-effect/1.1.2_h7fc2el62uaa77gho3xhys6ola: + /use-isomorphic-layout-effect@1.1.2(@types/react@17.0.53)(react@17.0.2): resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==} peerDependencies: '@types/react': '*' @@ -45145,7 +46165,7 @@ packages: react: 17.0.2 dev: false - /use-isomorphic-layout-effect/1.1.2_s55kszw6pq5iqmorlydcdh42pa: + /use-isomorphic-layout-effect@1.1.2(@types/react@17.0.62)(react@17.0.2): resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==} peerDependencies: '@types/react': '*' @@ -45158,7 +46178,7 @@ packages: react: 17.0.2 dev: false - /use-latest/1.2.1_h7fc2el62uaa77gho3xhys6ola: + /use-latest@1.2.1(@types/react@17.0.53)(react@17.0.2): resolution: {integrity: sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==} peerDependencies: '@types/react': '*' @@ -45169,10 +46189,10 @@ packages: dependencies: '@types/react': 17.0.53 react: 17.0.2 - use-isomorphic-layout-effect: 1.1.2_h7fc2el62uaa77gho3xhys6ola + use-isomorphic-layout-effect: 1.1.2(@types/react@17.0.53)(react@17.0.2) dev: false - /use-latest/1.2.1_s55kszw6pq5iqmorlydcdh42pa: + /use-latest@1.2.1(@types/react@17.0.62)(react@17.0.2): resolution: {integrity: sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==} peerDependencies: '@types/react': '*' @@ -45183,10 +46203,10 @@ packages: dependencies: '@types/react': 17.0.62 react: 17.0.2 - use-isomorphic-layout-effect: 1.1.2_s55kszw6pq5iqmorlydcdh42pa + use-isomorphic-layout-effect: 1.1.2(@types/react@17.0.62)(react@17.0.2) dev: false - /use-resize-observer/9.1.0_sfoxds7t5ydpegc3knd667wn6m: + /use-resize-observer@9.1.0(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-R25VqO9Wb3asSD4eqtcxk8sJalvIOYBqS8MNZlpDSQ4l4xMQxC/J7Id9HoTqPq8FwULIn0PVW+OAqF2dyYbjow==} peerDependencies: react: 16.8.0 - 18 @@ -45194,9 +46214,9 @@ packages: dependencies: '@juggle/resize-observer': 3.4.0 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-dom: 17.0.2(react@17.0.2) - /use-sidecar/1.1.2_h7fc2el62uaa77gho3xhys6ola: + /use-sidecar@1.1.2(@types/react@17.0.53)(react@17.0.2): resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==} engines: {node: '>=10'} peerDependencies: @@ -45211,7 +46231,7 @@ packages: react: 17.0.2 tslib: 2.6.2 - /use-sync-external-store/1.2.0_react@17.0.2: + /use-sync-external-store@1.2.0(react@17.0.2): resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -45219,33 +46239,33 @@ packages: react: 17.0.2 dev: false - /use/3.1.1: + /use@3.1.1: resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==} engines: {node: '>=0.10.0'} dev: true - /user-home/2.0.0: + /user-home@2.0.0: resolution: {integrity: sha512-KMWqdlOcjCYdtIJpicDSFBQ8nFwS2i9sslAd6f4+CBGcU4gist2REnr2fxj2YocvJFxSF3ZOHLYLVZnUxv4BZQ==} engines: {node: '>=0.10.0'} dependencies: os-homedir: 1.0.2 dev: true - /utf8/2.1.2: + /utf8@2.1.2: resolution: {integrity: sha512-QXo+O/QkLP/x1nyi54uQiG0XrODxdysuQvE5dtVqv7F5K2Qb6FsN+qbr6KhF5wQ20tfcV3VQp0/2x1e1MRSPWg==} dev: false - /util-deprecate/1.0.2: + /util-deprecate@1.0.2: resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} - /util.promisify/1.0.0: + /util.promisify@1.0.0: resolution: {integrity: sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==} dependencies: define-properties: 1.2.0 object.getownpropertydescriptors: 2.1.6 dev: false - /util.promisify/1.0.1: + /util.promisify@1.0.1: resolution: {integrity: sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==} dependencies: define-properties: 1.2.0 @@ -45253,7 +46273,7 @@ packages: has-symbols: 1.0.3 object.getownpropertydescriptors: 2.1.6 - /util/0.12.5: + /util@0.12.5: resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==} dependencies: inherits: 2.0.4 @@ -45262,39 +46282,39 @@ packages: is-typed-array: 1.1.12 which-typed-array: 1.1.11 - /utila/0.4.0: + /utila@0.4.0: resolution: {integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==} - /utils-merge/1.0.1: + /utils-merge@1.0.1: resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} engines: {node: '>= 0.4.0'} - /uue/3.1.2: + /uue@3.1.2: resolution: {integrity: sha512-axKLXVqwtdI/czrjG0X8hyV1KLgeWx8F4KvSbvVCnS+RUvsQMGRjx0kfuZDXXqj0LYvVJmx3B9kWlKtEdRrJLg==} dependencies: escape-string-regexp: 1.0.5 extend: 3.0.2 dev: false - /uuid/3.4.0: + /uuid@3.4.0: resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==} deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. hasBin: true - /uuid/8.0.0: + /uuid@8.0.0: resolution: {integrity: sha512-jOXGuXZAWdsTH7eZLtyXMqUb9EcWMGZNbL9YcGBJl4MH4nrxHmZJhEHvyLFrkxo+28uLb/NYRcStH48fnD0Vzw==} hasBin: true dev: false - /uuid/8.3.2: + /uuid@8.3.2: resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} hasBin: true - /uuid/9.0.0: + /uuid@9.0.0: resolution: {integrity: sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==} hasBin: true - /uvu/0.5.6: + /uvu@0.5.6: resolution: {integrity: sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==} engines: {node: '>=8'} hasBin: true @@ -45305,13 +46325,13 @@ packages: sade: 1.8.1 dev: 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==} - /v8-to-istanbul/8.1.1: + /v8-to-istanbul@8.1.1: resolution: {integrity: sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==} engines: {node: '>=10.12.0'} dependencies: @@ -45319,7 +46339,7 @@ packages: convert-source-map: 1.9.0 source-map: 0.7.4 - /v8-to-istanbul/9.1.0: + /v8-to-istanbul@9.1.0: resolution: {integrity: sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==} engines: {node: '>=10.12.0'} dependencies: @@ -45328,52 +46348,53 @@ packages: convert-source-map: 1.9.0 dev: true - /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.2.0 spdx-expression-parse: 3.0.1 dev: true - /validate-npm-package-name/3.0.0: + /validate-npm-package-name@3.0.0: resolution: {integrity: sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==} dependencies: builtins: 1.0.3 dev: true - /validate-npm-package-name/4.0.0: + /validate-npm-package-name@4.0.0: resolution: {integrity: sha512-mzR0L8ZDktZjpX4OB46KT+56MAhl4EIazWP/+G/HPGuvfdaqg4YsCdtOm6U9+LOFyYDoh4dpnpxZRB9MQQns5Q==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: builtins: 5.0.1 dev: true - /validate-npm-package-name/5.0.0: + /validate-npm-package-name@5.0.0: resolution: {integrity: sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: builtins: 5.0.1 dev: true - /validate.js/0.13.1: + /validate.js@0.13.1: resolution: {integrity: sha512-PnFM3xiZ+kYmLyTiMgTYmU7ZHkjBZz2/+F0DaALc/uUtVzdCt1wAosvYJ5hFQi/hz8O4zb52FQhHZRC+uVkJ+g==} dev: false - /validator/13.9.0: + /validator@13.9.0: resolution: {integrity: sha512-B+dGG8U3fdtM0/aNK4/X8CXq/EcxU2WPrPEkJGslb47qyHsxmbggTWK0yEA4qnYVNF+nxNlN88o14hIcPmSIEA==} engines: {node: '>= 0.10'} - /value-or-promise/1.0.12: + /value-or-promise@1.0.12: resolution: {integrity: sha512-Z6Uz+TYwEqE7ZN50gwn+1LCVo9ZVrpxRPOhOLnncYkY1ZzOYtrX8Fwf/rFktZ8R5mJms6EZf5TqNOMeZmnPq9Q==} engines: {node: '>=12'} + requiresBuild: true dev: false optional: true - /vary/1.1.2: + /vary@1.1.2: resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} engines: {node: '>= 0.8'} - /verror/1.10.0: + /verror@1.10.0: resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==} engines: {'0': node >=0.6.0} dependencies: @@ -45381,7 +46402,7 @@ packages: core-util-is: 1.0.2 extsprintf: 1.4.1 - /verror/1.10.1: + /verror@1.10.1: resolution: {integrity: sha512-veufcmxri4e3XSrT0xwfUR7kguIkaxBeosDg00yDWhk49wdwkSUrvvsm7nc75e1PUyvIeZj6nS8VQRYz2/S4Xg==} engines: {node: '>=0.6.0'} dependencies: @@ -45390,14 +46411,14 @@ packages: extsprintf: 1.4.1 dev: false - /vfile-message/3.1.4: + /vfile-message@3.1.4: resolution: {integrity: sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==} dependencies: '@types/unist': 2.0.6 unist-util-stringify-position: 3.0.3 dev: true - /vfile/5.3.7: + /vfile@5.3.7: resolution: {integrity: sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==} dependencies: '@types/unist': 2.0.6 @@ -45406,7 +46427,7 @@ packages: vfile-message: 3.1.4 dev: true - /vite/4.4.9_@types+node@18.15.11: + /vite@4.4.9(@types/node@18.15.11): resolution: {integrity: sha512-2mbUn2LlUmNASWwSCNSJ/EG2HuSRTnVNaydp6vMCm5VIqJsjMfbIWtbH2kDuwUVW5mMUKKZvGPX/rqeqVvv1XA==} engines: {node: ^14.18.0 || >=16.0.0} hasBin: true @@ -45442,34 +46463,34 @@ packages: fsevents: 2.3.3 dev: true - /void-elements/2.0.1: + /void-elements@2.0.1: resolution: {integrity: sha512-qZKX4RnBzH2ugr8Lxa7x+0V6XD9Sb/ouARtiasEQCHB1EVU4NXtmHsDDrx1dO4ne5fc3J6EW05BP1Dl0z0iung==} engines: {node: '>=0.10.0'} dev: true - /vscode-languageserver-textdocument/1.0.8: + /vscode-languageserver-textdocument@1.0.8: resolution: {integrity: sha512-1bonkGqQs5/fxGT5UchTgjGVnfysL0O8v1AYMBjqTbWQTFn721zaPGDYFkOKtfDgFiSgXM3KwaG3FMGfW4Ed9Q==} dev: true - /vscode-oniguruma/1.7.0: + /vscode-oniguruma@1.7.0: resolution: {integrity: sha512-L9WMGRfrjOhgHSdOYgCt/yRMsXzLDJSL7BPrOZt73gU0iWO4mpqzqQzOz5srxqTvMBaR0XZTSrVWo4j55Rc6cA==} dev: true - /vscode-textmate/8.0.0: + /vscode-textmate@8.0.0: resolution: {integrity: sha512-AFbieoL7a5LMqcnOF04ji+rpXadgOXnZsxQr//r83kLPr7biP7am3g9zbaZIaBGwBRWeSvoMD4mgPdX3e4NWBg==} dev: true - /vscode-uri/3.0.7: + /vscode-uri@3.0.7: resolution: {integrity: sha512-eOpPHogvorZRobNqJGhapa0JdwaxpjVvyBp0QIUMRMSf8ZAlqOdEquKuRmw9Qwu0qXtJIWqFtMkmvJjUZmMjVA==} dev: true - /vue-eslint-parser/9.1.1_eslint@8.38.0: + /vue-eslint-parser@9.1.1(eslint@8.38.0): resolution: {integrity: sha512-C2aI/r85Q6tYcz4dpgvrs4wH/MqVrRAVIdpYedrxnATDHHkb+TroeRcDpKWGZCx/OcECMWfz7tVwQ8e+Opy6rA==} engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: eslint: '>=6.0.0' dependencies: - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) eslint: 8.38.0 eslint-scope: 7.2.2 eslint-visitor-keys: 3.4.0 @@ -45481,7 +46502,7 @@ packages: - supports-color dev: true - /vue-resize/2.0.0-alpha.1_vue@3.2.47: + /vue-resize@2.0.0-alpha.1(vue@3.2.47): resolution: {integrity: sha512-7+iqOueLU7uc9NrMfrzbG8hwMqchfVfSzpVlCMeJQe4pyibqyoifDNbKTZvwxZKDvGkB+PdFeKvnGZMoEb8esg==} peerDependencies: vue: ^3.0.0 @@ -45489,14 +46510,14 @@ packages: vue: 3.2.47 dev: false - /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-tsc/1.2.0_typescript@4.9.5: + /vue-tsc@1.2.0(typescript@4.9.5): resolution: {integrity: sha512-rIlzqdrhyPYyLG9zxsVRa+JEseeS9s8F2BbVVVWRRsTZvJO2BbhLEb2HW3MY+DFma0378tnIqs+vfTzbcQtRFw==} hasBin: true peerDependencies: @@ -45507,113 +46528,113 @@ packages: typescript: 4.9.5 dev: true - /vue/3.2.47: + /vue@3.2.47: resolution: {integrity: sha512-60188y/9Dc9WVrAZeUVSDxRQOZ+z+y5nO2ts9jWXSTkMvayiWxCWOWtBQoYjLeccfXkiiPZWAHcV+WTPhkqJHQ==} dependencies: '@vue/compiler-dom': 3.2.47 '@vue/compiler-sfc': 3.2.47 '@vue/runtime-dom': 3.2.47 - '@vue/server-renderer': 3.2.47_vue@3.2.47 + '@vue/server-renderer': 3.2.47(vue@3.2.47) '@vue/shared': 3.2.47 - /w3c-hr-time/1.0.2: + /w3c-hr-time@1.0.2: resolution: {integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==} deprecated: Use your platform's native performance.now() and performance.timeOrigin. dependencies: browser-process-hrtime: 1.0.0 - /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 - /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 - /wait-port/0.3.1: + /wait-port@0.3.1: resolution: {integrity: sha512-o8kW8xjslQDrbazXgXeDFt53l128J9xBAiG4aBmr9DcQA05jt0VBf2TE2vc9rxctgZjIuWpiXuO0gIYFo3pZSA==} engines: {node: '>=10'} hasBin: true dependencies: chalk: 4.1.2 commander: 9.5.0 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) transitivePeerDependencies: - supports-color dev: true - /walk-up-path/1.0.0: + /walk-up-path@1.0.0: resolution: {integrity: sha512-hwj/qMDUEjCU5h0xr90KGCf0tg0/LgJbmOWgrWKYlcJZM7XvquvUJZ0G/HMGr7F7OQMOUuPHWP9JpriinkAlkg==} dev: true - /walker/1.0.8: + /walker@1.0.8: resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} dependencies: makeerror: 1.0.12 - /warning/4.0.3: + /warning@4.0.3: resolution: {integrity: sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==} dependencies: loose-envify: 1.4.0 dev: false - /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.11 - /wbuf/1.7.3: + /wbuf@1.7.3: resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==} dependencies: minimalistic-assert: 1.0.1 - /wcwidth/1.0.1: + /wcwidth@1.0.1: resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} dependencies: defaults: 1.0.4 - /web-streams-polyfill/3.2.1: + /web-streams-polyfill@3.2.1: resolution: {integrity: sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==} engines: {node: '>= 8'} - /web-vitals/0.2.4: + /web-vitals@0.2.4: resolution: {integrity: sha512-6BjspCO9VriYy12z356nL6JBS0GYeEcA457YyRzD+dD6XYCQ75NKhcOHUMHentOE7OcVCIXXDvOm0jKFfQG2Gg==} dev: false - /web-vitals/1.1.2: + /web-vitals@1.1.2: resolution: {integrity: sha512-PFMKIY+bRSXlMxVAQ+m2aw9c/ioUYfDgrYot0YUa+/xa0sakubWhSDyxAKwzymvXVdF4CZI71g06W+mqhzu6ig==} dev: false - /webfontloader/1.6.28: + /webfontloader@1.6.28: resolution: {integrity: sha512-Egb0oFEga6f+nSgasH3E0M405Pzn6y3/9tOVanv/DLfa1YBIgcv90L18YyWnvXkRbIM17v5Kv6IT2N6g1x5tvQ==} dev: false - /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'} - /webidl-conversions/6.1.0: + /webidl-conversions@6.1.0: resolution: {integrity: sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==} engines: {node: '>=10.4'} - /webidl-conversions/7.0.0: + /webidl-conversions@7.0.0: resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} engines: {node: '>=12'} - /webpack-bundle-analyzer/4.9.0: + /webpack-bundle-analyzer@4.9.0: resolution: {integrity: sha512-+bXGmO1LyiNx0i9enBu3H8mv42sj/BJWhZNFwjz92tVnBa9J3JMGo2an2IXlEleoDOPn/Hofl5hr/xCpObUDtw==} engines: {node: '>= 10.13.0'} hasBin: true @@ -45631,9 +46652,8 @@ packages: transitivePeerDependencies: - bufferutil - utf-8-validate - dev: true - /webpack-cli/5.1.4_jwpra7xq62zw3tehur2jwszlsq: + /webpack-cli@5.1.4(webpack-bundle-analyzer@4.9.0)(webpack@5.82.1): resolution: {integrity: sha512-pIDJHIEI9LR0yxHXQ+Qh95k2EvXpWzZ5l+d+jIo+RdSm9MiHfzazIxwwni/p7+x4eJZuvG1AJwgC4TNQ7NRgsg==} engines: {node: '>=14.15.0'} hasBin: true @@ -45651,9 +46671,9 @@ packages: optional: true dependencies: '@discoveryjs/json-ext': 0.5.7 - '@webpack-cli/configtest': 2.1.1_g5qtztmog4wkrsqodniltwrmwa - '@webpack-cli/info': 2.0.2_g5qtztmog4wkrsqodniltwrmwa - '@webpack-cli/serve': 2.0.5_g5qtztmog4wkrsqodniltwrmwa + '@webpack-cli/configtest': 2.1.1(webpack-cli@5.1.4)(webpack@5.82.1) + '@webpack-cli/info': 2.0.2(webpack-cli@5.1.4)(webpack@5.82.1) + '@webpack-cli/serve': 2.0.5(webpack-cli@5.1.4)(webpack@5.82.1) colorette: 2.0.19 commander: 10.0.1 cross-spawn: 7.0.3 @@ -45662,12 +46682,11 @@ packages: import-local: 3.1.0 interpret: 3.1.1 rechoir: 0.8.0 - webpack: 5.82.1_w67ycjwq2niq3jlxgktvf5aow4 + webpack: 5.82.1(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) webpack-bundle-analyzer: 4.9.0 webpack-merge: 5.8.0 - dev: true - /webpack-dev-middleware/5.3.3_webpack@5.76.1: + /webpack-dev-middleware@5.3.3(webpack@5.76.1): resolution: {integrity: sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==} engines: {node: '>= 12.13.0'} peerDependencies: @@ -45678,10 +46697,10 @@ packages: mime-types: 2.1.35 range-parser: 1.2.1 schema-utils: 4.0.0 - webpack: 5.76.1 + webpack: 5.76.1(@swc/core@1.3.49)(esbuild@0.17.8) dev: true - /webpack-dev-middleware/5.3.3_webpack@5.78.0: + /webpack-dev-middleware@5.3.3(webpack@5.78.0): resolution: {integrity: sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==} engines: {node: '>= 12.13.0'} peerDependencies: @@ -45692,9 +46711,9 @@ packages: mime-types: 2.1.35 range-parser: 1.2.1 schema-utils: 4.0.0 - webpack: 5.78.0_u5c4qderjagc6tepfyiby6xhau + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) - /webpack-dev-middleware/6.0.1_webpack@5.76.1: + /webpack-dev-middleware@6.0.1(webpack@5.76.1): resolution: {integrity: sha512-PZPZ6jFinmqVPJZbisfggDiC+2EeGZ1ZByyMP5sOFJcPPWSexalISz+cvm+j+oYPT7FIJyxT76esjnw9DhE5sw==} engines: {node: '>= 14.15.0'} peerDependencies: @@ -45705,10 +46724,10 @@ packages: mime-types: 2.1.35 range-parser: 1.2.1 schema-utils: 4.0.0 - webpack: 5.76.1 + webpack: 5.76.1(@swc/core@1.3.49)(esbuild@0.17.8) dev: true - /webpack-dev-middleware/6.1.1_webpack@5.78.0: + /webpack-dev-middleware@6.1.1(webpack@5.78.0): resolution: {integrity: sha512-y51HrHaFeeWir0YO4f0g+9GwZawuigzcAdRNon6jErXy/SqV/+O6eaVAzDqE6t3e3NpGeR5CS+cCDaTC+V3yEQ==} engines: {node: '>= 14.15.0'} peerDependencies: @@ -45722,10 +46741,10 @@ packages: mime-types: 2.1.35 range-parser: 1.2.1 schema-utils: 4.0.0 - webpack: 5.78.0_u5c4qderjagc6tepfyiby6xhau + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) dev: true - /webpack-dev-server/4.11.1_webpack@5.76.1: + /webpack-dev-server@4.11.1(webpack@5.76.1): resolution: {integrity: sha512-lILVz9tAUy1zGFwieuaQtYiadImb5M3d+H+L1zDYalYoDl0cksAB1UNyuE5MMWJrG6zR1tXkCP2fitl7yoUJiw==} engines: {node: '>= 12.13.0'} hasBin: true @@ -45753,7 +46772,7 @@ packages: express: 4.18.2 graceful-fs: 4.2.11 html-entities: 2.3.3 - http-proxy-middleware: 2.0.6_@types+express@4.17.17 + http-proxy-middleware: 2.0.6(@types/express@4.17.17) ipaddr.js: 2.0.1 open: 8.4.2 p-retry: 4.6.2 @@ -45763,8 +46782,8 @@ packages: serve-index: 1.9.1 sockjs: 0.3.24 spdy: 4.0.2 - webpack: 5.76.1 - webpack-dev-middleware: 5.3.3_webpack@5.76.1 + webpack: 5.76.1(@swc/core@1.3.49)(esbuild@0.17.8) + webpack-dev-middleware: 5.3.3(webpack@5.76.1) ws: 8.13.0 transitivePeerDependencies: - bufferutil @@ -45773,7 +46792,7 @@ packages: - utf-8-validate dev: true - /webpack-dev-server/4.11.1_webpack@5.78.0: + /webpack-dev-server@4.11.1(webpack@5.78.0): resolution: {integrity: sha512-lILVz9tAUy1zGFwieuaQtYiadImb5M3d+H+L1zDYalYoDl0cksAB1UNyuE5MMWJrG6zR1tXkCP2fitl7yoUJiw==} engines: {node: '>= 12.13.0'} hasBin: true @@ -45801,7 +46820,7 @@ packages: express: 4.18.2 graceful-fs: 4.2.11 html-entities: 2.3.3 - http-proxy-middleware: 2.0.6_@types+express@4.17.17 + http-proxy-middleware: 2.0.6(@types/express@4.17.17) ipaddr.js: 2.0.1 open: 8.4.2 p-retry: 4.6.2 @@ -45811,8 +46830,8 @@ packages: serve-index: 1.9.1 sockjs: 0.3.24 spdy: 4.0.2 - webpack: 5.78.0_u5c4qderjagc6tepfyiby6xhau - webpack-dev-middleware: 5.3.3_webpack@5.78.0 + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) + webpack-dev-middleware: 5.3.3(webpack@5.78.0) ws: 8.13.0 transitivePeerDependencies: - bufferutil @@ -45820,7 +46839,7 @@ packages: - supports-color - utf-8-validate - /webpack-hot-middleware/2.25.3: + /webpack-hot-middleware@2.25.3: resolution: {integrity: sha512-IK/0WAHs7MTu1tzLTjio73LjS3Ov+VvBKQmE8WPlJutgG5zT6Urgq/BbAdRrHTRpyzK0dvAvFh1Qg98akxgZpA==} dependencies: ansi-html-community: 0.0.8 @@ -45828,46 +46847,46 @@ packages: strip-ansi: 6.0.1 dev: true - /webpack-manifest-plugin/4.1.1_webpack@5.78.0: + /webpack-manifest-plugin@4.1.1(webpack@5.78.0): resolution: {integrity: sha512-YXUAwxtfKIJIKkhg03MKuiFAD72PlrqCiwdwO4VEXdRO5V0ORCNwaOwAZawPZalCbmH9kBDmXnNeQOw+BIEiow==} engines: {node: '>=12.22.0'} peerDependencies: webpack: ^4.44.2 || ^5.47.0 dependencies: tapable: 2.2.1 - webpack: 5.78.0_u5c4qderjagc6tepfyiby6xhau + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) webpack-sources: 2.3.1 - /webpack-merge/5.8.0: + /webpack-merge@5.8.0: resolution: {integrity: sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==} engines: {node: '>=10.0.0'} dependencies: clone-deep: 4.0.1 wildcard: 2.0.0 - /webpack-node-externals/3.0.0: + /webpack-node-externals@3.0.0: resolution: {integrity: sha512-LnL6Z3GGDPht/AigwRh2dvL9PQPFQ8skEpVrWZXLWBYmqcaojHNN0onvHzie6rq7EWKrrBfPYqNEzTJgiwEQDQ==} engines: {node: '>=6'} dev: true - /webpack-sources/1.4.3: + /webpack-sources@1.4.3: resolution: {integrity: sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==} dependencies: source-list-map: 2.0.1 source-map: 0.6.1 - /webpack-sources/2.3.1: + /webpack-sources@2.3.1: resolution: {integrity: sha512-y9EI9AO42JjEcrTJFOYmVywVZdKVUfOvDUPsJea5GIr1JOEGFVqwlY2K098fFoIjOkDzHn2AjRvM8dsBZu+gCA==} engines: {node: '>=10.13.0'} dependencies: source-list-map: 2.0.1 source-map: 0.6.1 - /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-subresource-integrity/5.1.0_webpack@5.76.1: + /webpack-subresource-integrity@5.1.0(webpack@5.76.1): resolution: {integrity: sha512-sacXoX+xd8r4WKsy9MvH/q/vBtEHr86cpImXwyg74pFIpERKt6FmB8cXpeuh0ZLgclOlHI4Wcll7+R5L02xk9Q==} engines: {node: '>= 12'} peerDependencies: @@ -45878,13 +46897,13 @@ packages: optional: true dependencies: typed-assert: 1.0.9 - webpack: 5.76.1 + webpack: 5.76.1(@swc/core@1.3.49)(esbuild@0.17.8) dev: true - /webpack-virtual-modules/0.5.0: + /webpack-virtual-modules@0.5.0: resolution: {integrity: sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==} - /webpack/5.76.1: + /webpack@5.76.1(@swc/core@1.3.49)(esbuild@0.17.8): resolution: {integrity: sha512-4+YIK4Abzv8172/SGqObnUjaIHjLEuUasz9EwQj/9xmPPkYJy2Mh03Q/lJfSD3YLzbxy5FeTq5Uw0323Oh6SJQ==} engines: {node: '>=10.13.0'} hasBin: true @@ -45900,7 +46919,7 @@ packages: '@webassemblyjs/wasm-edit': 1.11.1 '@webassemblyjs/wasm-parser': 1.11.1 acorn: 8.10.0 - acorn-import-assertions: 1.9.0_acorn@8.10.0 + acorn-import-assertions: 1.9.0(acorn@8.10.0) browserslist: 4.21.10 chrome-trace-event: 1.0.3 enhanced-resolve: 5.15.0 @@ -45915,7 +46934,7 @@ packages: neo-async: 2.6.2 schema-utils: 3.3.0 tapable: 2.2.1 - terser-webpack-plugin: 5.3.9_webpack@5.76.1 + terser-webpack-plugin: 5.3.9(@swc/core@1.3.49)(esbuild@0.17.8)(webpack@5.76.1) watchpack: 2.4.0 webpack-sources: 3.2.3 transitivePeerDependencies: @@ -45924,7 +46943,7 @@ packages: - uglify-js dev: true - /webpack/5.78.0: + /webpack@5.78.0(@swc/core@1.3.49): resolution: {integrity: sha512-gT5DP72KInmE/3azEaQrISjTvLYlSM0j1Ezhht/KLVkrqtv10JoP/RXhwmX/frrutOPuSq3o5Vq0ehR/4Vmd1g==} engines: {node: '>=10.13.0'} hasBin: true @@ -45940,7 +46959,7 @@ packages: '@webassemblyjs/wasm-edit': 1.11.1 '@webassemblyjs/wasm-parser': 1.11.1 acorn: 8.10.0 - acorn-import-assertions: 1.9.0_acorn@8.10.0 + acorn-import-assertions: 1.9.0(acorn@8.10.0) browserslist: 4.21.10 chrome-trace-event: 1.0.3 enhanced-resolve: 5.15.0 @@ -45955,7 +46974,7 @@ packages: neo-async: 2.6.2 schema-utils: 3.3.0 tapable: 2.2.1 - terser-webpack-plugin: 5.3.9_webpack@5.78.0 + terser-webpack-plugin: 5.3.9(@swc/core@1.3.49)(webpack@5.78.0) watchpack: 2.4.0 webpack-sources: 3.2.3 transitivePeerDependencies: @@ -45963,7 +46982,7 @@ packages: - esbuild - uglify-js - /webpack/5.78.0_@swc+core@1.3.49: + /webpack@5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4): resolution: {integrity: sha512-gT5DP72KInmE/3azEaQrISjTvLYlSM0j1Ezhht/KLVkrqtv10JoP/RXhwmX/frrutOPuSq3o5Vq0ehR/4Vmd1g==} engines: {node: '>=10.13.0'} hasBin: true @@ -45979,7 +46998,7 @@ packages: '@webassemblyjs/wasm-edit': 1.11.1 '@webassemblyjs/wasm-parser': 1.11.1 acorn: 8.10.0 - acorn-import-assertions: 1.9.0_acorn@8.10.0 + acorn-import-assertions: 1.9.0(acorn@8.10.0) browserslist: 4.21.10 chrome-trace-event: 1.0.3 enhanced-resolve: 5.15.0 @@ -45994,96 +47013,16 @@ packages: neo-async: 2.6.2 schema-utils: 3.3.0 tapable: 2.2.1 - terser-webpack-plugin: 5.3.9_wvz5dn57l37py5yhasbcqqk6hi + terser-webpack-plugin: 5.3.9(@swc/core@1.3.49)(esbuild@0.18.20)(webpack@5.78.0) watchpack: 2.4.0 + webpack-cli: 5.1.4(webpack-bundle-analyzer@4.9.0)(webpack@5.82.1) webpack-sources: 3.2.3 transitivePeerDependencies: - '@swc/core' - esbuild - uglify-js - dev: true - /webpack/5.78.0_u5c4qderjagc6tepfyiby6xhau: - resolution: {integrity: sha512-gT5DP72KInmE/3azEaQrISjTvLYlSM0j1Ezhht/KLVkrqtv10JoP/RXhwmX/frrutOPuSq3o5Vq0ehR/4Vmd1g==} - engines: {node: '>=10.13.0'} - hasBin: true - peerDependencies: - webpack-cli: '*' - peerDependenciesMeta: - webpack-cli: - optional: true - dependencies: - '@types/eslint-scope': 3.7.4 - '@types/estree': 0.0.51 - '@webassemblyjs/ast': 1.11.1 - '@webassemblyjs/wasm-edit': 1.11.1 - '@webassemblyjs/wasm-parser': 1.11.1 - acorn: 8.10.0 - acorn-import-assertions: 1.9.0_acorn@8.10.0 - browserslist: 4.21.10 - chrome-trace-event: 1.0.3 - enhanced-resolve: 5.15.0 - es-module-lexer: 0.9.3 - eslint-scope: 5.1.1 - events: 3.3.0 - glob-to-regexp: 0.4.1 - graceful-fs: 4.2.11 - json-parse-even-better-errors: 2.3.1 - loader-runner: 4.3.0 - mime-types: 2.1.35 - neo-async: 2.6.2 - schema-utils: 3.3.0 - tapable: 2.2.1 - terser-webpack-plugin: 5.3.9_dnqqsr3phzjhopay4d6e5ziqz4 - watchpack: 2.4.0 - webpack-sources: 3.2.3 - transitivePeerDependencies: - - '@swc/core' - - esbuild - - uglify-js - - /webpack/5.78.0_w67ycjwq2niq3jlxgktvf5aow4: - resolution: {integrity: sha512-gT5DP72KInmE/3azEaQrISjTvLYlSM0j1Ezhht/KLVkrqtv10JoP/RXhwmX/frrutOPuSq3o5Vq0ehR/4Vmd1g==} - engines: {node: '>=10.13.0'} - hasBin: true - peerDependencies: - webpack-cli: '*' - peerDependenciesMeta: - webpack-cli: - optional: true - dependencies: - '@types/eslint-scope': 3.7.4 - '@types/estree': 0.0.51 - '@webassemblyjs/ast': 1.11.1 - '@webassemblyjs/wasm-edit': 1.11.1 - '@webassemblyjs/wasm-parser': 1.11.1 - acorn: 8.10.0 - acorn-import-assertions: 1.9.0_acorn@8.10.0 - browserslist: 4.21.10 - chrome-trace-event: 1.0.3 - enhanced-resolve: 5.15.0 - es-module-lexer: 0.9.3 - eslint-scope: 5.1.1 - events: 3.3.0 - glob-to-regexp: 0.4.1 - graceful-fs: 4.2.11 - json-parse-even-better-errors: 2.3.1 - loader-runner: 4.3.0 - mime-types: 2.1.35 - neo-async: 2.6.2 - schema-utils: 3.3.0 - tapable: 2.2.1 - terser-webpack-plugin: 5.3.9_dnqqsr3phzjhopay4d6e5ziqz4 - watchpack: 2.4.0 - webpack-cli: 5.1.4_jwpra7xq62zw3tehur2jwszlsq - webpack-sources: 3.2.3 - transitivePeerDependencies: - - '@swc/core' - - esbuild - - uglify-js - dev: true - - /webpack/5.82.1_w67ycjwq2niq3jlxgktvf5aow4: + /webpack@5.82.1(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4): resolution: {integrity: sha512-C6uiGQJ+Gt4RyHXXYt+v9f+SN1v83x68URwgxNQ98cvH8kxiuywWGP4XeNZ1paOzZ63aY3cTciCEQJNFUljlLw==} engines: {node: '>=10.13.0'} hasBin: true @@ -46099,7 +47038,7 @@ packages: '@webassemblyjs/wasm-edit': 1.11.5 '@webassemblyjs/wasm-parser': 1.11.5 acorn: 8.8.2 - acorn-import-assertions: 1.8.0_acorn@8.8.2 + acorn-import-assertions: 1.8.0(acorn@8.8.2) browserslist: 4.21.5 chrome-trace-event: 1.0.3 enhanced-resolve: 5.15.0 @@ -46114,17 +47053,16 @@ packages: neo-async: 2.6.2 schema-utils: 3.1.2 tapable: 2.2.1 - terser-webpack-plugin: 5.3.9_aka7ue4sjkoeo6uo4dlqntmpgy + terser-webpack-plugin: 5.3.9(@swc/core@1.3.49)(esbuild@0.18.20)(webpack@5.82.1) watchpack: 2.4.0 - webpack-cli: 5.1.4_jwpra7xq62zw3tehur2jwszlsq + webpack-cli: 5.1.4(webpack-bundle-analyzer@4.9.0)(webpack@5.82.1) webpack-sources: 3.2.3 transitivePeerDependencies: - '@swc/core' - esbuild - uglify-js - dev: true - /webpack/5.88.2: + /webpack@5.88.2(@swc/core@1.3.49): resolution: {integrity: sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ==} engines: {node: '>=10.13.0'} hasBin: true @@ -46140,7 +47078,7 @@ packages: '@webassemblyjs/wasm-edit': 1.11.5 '@webassemblyjs/wasm-parser': 1.11.5 acorn: 8.10.0 - acorn-import-assertions: 1.9.0_acorn@8.10.0 + acorn-import-assertions: 1.9.0(acorn@8.10.0) browserslist: 4.21.10 chrome-trace-event: 1.0.3 enhanced-resolve: 5.15.0 @@ -46155,7 +47093,7 @@ packages: neo-async: 2.6.2 schema-utils: 3.3.0 tapable: 2.2.1 - terser-webpack-plugin: 5.3.9_webpack@5.88.2 + terser-webpack-plugin: 5.3.9(@swc/core@1.3.49)(webpack@5.88.2) watchpack: 2.4.0 webpack-sources: 3.2.3 transitivePeerDependencies: @@ -46164,7 +47102,7 @@ packages: - 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: @@ -46172,47 +47110,47 @@ packages: safe-buffer: 5.2.1 websocket-extensions: 0.1.4 - /websocket-extensions/0.1.4: + /websocket-extensions@0.1.4: resolution: {integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==} engines: {node: '>=0.8.0'} - /whatwg-encoding/1.0.5: + /whatwg-encoding@1.0.5: resolution: {integrity: sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==} dependencies: iconv-lite: 0.4.24 - /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/3.6.2: + /whatwg-fetch@3.6.2: resolution: {integrity: sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==} - /whatwg-mimetype/2.3.0: + /whatwg-mimetype@2.3.0: resolution: {integrity: sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==} - /whatwg-mimetype/3.0.0: + /whatwg-mimetype@3.0.0: resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==} engines: {node: '>=12'} dev: true - /whatwg-url/11.0.0: + /whatwg-url@11.0.0: resolution: {integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==} engines: {node: '>=12'} dependencies: tr46: 3.0.0 webidl-conversions: 7.0.0 - /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/6.5.0: + /whatwg-url@6.5.0: resolution: {integrity: sha512-rhRZRqx/TLJQWUpQ6bmrt2UV4f0HCQ463yQuONJqC6fO2VoEb1pTYddbe59SkYq87aoM5A3bdhMZiUiVws+fzQ==} dependencies: lodash.sortby: 4.7.0 @@ -46220,14 +47158,14 @@ packages: webidl-conversions: 4.0.2 dev: true - /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: @@ -46235,7 +47173,7 @@ packages: tr46: 2.1.0 webidl-conversions: 6.1.0 - /which-boxed-primitive/1.0.2: + /which-boxed-primitive@1.0.2: resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} dependencies: is-bigint: 1.0.4 @@ -46244,7 +47182,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 @@ -46252,11 +47190,11 @@ packages: is-weakmap: 2.0.1 is-weakset: 2.0.2 - /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.11: + /which-typed-array@1.1.11: resolution: {integrity: sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==} engines: {node: '>= 0.4'} dependencies: @@ -46266,20 +47204,20 @@ packages: gopd: 1.0.1 has-tostringtag: 1.0.0 - /which/1.3.1: + /which@1.3.1: resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} hasBin: true dependencies: isexe: 2.0.0 - /which/2.0.2: + /which@2.0.2: resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} engines: {node: '>= 8'} hasBin: true dependencies: isexe: 2.0.0 - /which/3.0.0: + /which@3.0.0: resolution: {integrity: sha512-nla//68K9NU6yRiwDY/Q8aU6siKlSs64aEC7+IV56QoAuyQT2ovsJcgGYGyqMOmI/CGN1BOR6mM5EN0FBO+zyQ==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} hasBin: true @@ -46287,34 +47225,34 @@ packages: isexe: 2.0.0 dev: true - /wide-align/1.1.3: + /wide-align@1.1.3: resolution: {integrity: sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==} dependencies: string-width: 2.1.1 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 - /widest-line/3.1.0: + /widest-line@3.1.0: resolution: {integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==} engines: {node: '>=8'} dependencies: string-width: 4.2.3 - /wildcard/2.0.0: + /wildcard@2.0.0: resolution: {integrity: sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==} - /windows-release/4.0.0: + /windows-release@4.0.0: resolution: {integrity: sha512-OxmV4wzDKB1x7AZaZgXMVsdJ1qER1ed83ZrTYd5Bwq2HfJVg3DJS8nqlAG4sMoJ7mu8cuRmLEYyU13BKwctRAg==} engines: {node: '>=10'} dependencies: execa: 4.1.0 dev: true - /winston-transport/4.5.0: + /winston-transport@4.5.0: resolution: {integrity: sha512-YpZzcUzBedhlTAfJg6vJDlyEai/IFMIVcaEZZyl3UXIl4gmqRpU7AE89AHLkbzLUsv0NVmw7ts+iztqKxxPW1Q==} engines: {node: '>= 6.4.0'} dependencies: @@ -46323,7 +47261,7 @@ packages: triple-beam: 1.3.0 dev: false - /winston/2.4.7: + /winston@2.4.7: resolution: {integrity: sha512-vLB4BqzCKDnnZH9PHGoS2ycawueX4HLqENXQitvFHczhgW2vFpSOn31LZtVr1KU8YTw7DS4tM+cqyovxo8taVg==} engines: {node: '>= 0.10.0'} dependencies: @@ -46335,7 +47273,7 @@ packages: stack-trace: 0.0.10 dev: true - /winston/3.10.0: + /winston@3.10.0: resolution: {integrity: sha512-nT6SIDaE9B7ZRO0u3UvdrimG0HkB7dSTAgInQnNR2SOPJ4bvq5q79+pXLftKmP52lJGW15+H5MCK0nM9D3KB/g==} engines: {node: '>= 12.0.0'} dependencies: @@ -46352,14 +47290,14 @@ packages: winston-transport: 4.5.0 dev: false - /word-wrap/1.2.5: + /word-wrap@1.2.5: resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} engines: {node: '>=0.10.0'} - /wordwrap/1.0.0: + /wordwrap@1.0.0: resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} - /wordwrapjs/4.0.1: + /wordwrapjs@4.0.1: resolution: {integrity: sha512-kKlNACbvHrkpIw6oPeYDSmdCTu2hdMHoyXLTcUKala++lx5Y+wjJ/e474Jqv5abnVmwxw08DiTuHmw69lJGksA==} engines: {node: '>=8.0.0'} dependencies: @@ -46367,28 +47305,28 @@ packages: typical: 5.2.0 dev: true - /workbox-background-sync/6.5.4: + /workbox-background-sync@6.5.4: resolution: {integrity: sha512-0r4INQZMyPky/lj4Ou98qxcThrETucOde+7mRGJl13MPJugQNKeZQOdIJe/1AchOP23cTqHcN/YVpD6r8E6I8g==} dependencies: idb: 7.1.1 workbox-core: 6.5.4 - /workbox-broadcast-update/6.5.4: + /workbox-broadcast-update@6.5.4: resolution: {integrity: sha512-I/lBERoH1u3zyBosnpPEtcAVe5lwykx9Yg1k6f8/BGEPGaMMgZrwVrqL1uA9QZ1NGGFoyE6t9i7lBjOlDhFEEw==} dependencies: workbox-core: 6.5.4 - /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.12.0 + '@apideck/better-ajv-errors': 0.3.6(ajv@8.12.0) '@babel/core': 7.22.11 - '@babel/preset-env': 7.22.20_@babel+core@7.22.11 + '@babel/preset-env': 7.22.20(@babel/core@7.22.11) '@babel/runtime': 7.21.0 - '@rollup/plugin-babel': 5.3.1_lnssqozl4dgplk3xebfs3yicbq - '@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.22.11)(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.12.0 common-tags: 1.8.2 @@ -46398,7 +47336,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 @@ -46423,21 +47361,21 @@ packages: - '@types/babel__core' - supports-color - /workbox-cacheable-response/6.5.4: + /workbox-cacheable-response@6.5.4: resolution: {integrity: sha512-DCR9uD0Fqj8oB2TSWQEm1hbFs/85hXXoayVwFKLVuIuxwJaihBsLsp4y7J9bvZbqtPJ1KlCkmYVGQKrBU4KAug==} dependencies: workbox-core: 6.5.4 - /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.1.1 workbox-core: 6.5.4 - /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 @@ -46445,24 +47383,24 @@ packages: workbox-routing: 6.5.4 workbox-strategies: 6.5.4 - /workbox-navigation-preload/6.5.4: + /workbox-navigation-preload@6.5.4: resolution: {integrity: sha512-IIwf80eO3cr8h6XSQJF+Hxj26rg2RPFVUmJLUlM0+A2GzB4HFbQyKkrgD5y2d84g2IbJzP4B4j5dPBRzamHrng==} dependencies: workbox-core: 6.5.4 - /workbox-precaching/6.5.4: + /workbox-precaching@6.5.4: resolution: {integrity: sha512-hSMezMsW6btKnxHB4bFy2Qfwey/8SYdGWvVIKFaUm8vJ4E53JAY+U2JwLTRD8wbLWoP6OVUdFlXsTdKu9yoLTg==} dependencies: workbox-core: 6.5.4 workbox-routing: 6.5.4 workbox-strategies: 6.5.4 - /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 - /workbox-recipes/6.5.4: + /workbox-recipes@6.5.4: resolution: {integrity: sha512-QZNO8Ez708NNwzLNEXTG4QYSKQ1ochzEtRLGaq+mr2PyoEIC1xFW7MrWxrONUxBFOByksds9Z4//lKAX8tHyUA==} dependencies: workbox-cacheable-response: 6.5.4 @@ -46472,26 +47410,26 @@ packages: workbox-routing: 6.5.4 workbox-strategies: 6.5.4 - /workbox-routing/6.5.4: + /workbox-routing@6.5.4: resolution: {integrity: sha512-apQswLsbrrOsBUWtr9Lf80F+P1sHnQdYodRo32SjiByYi36IDyL2r7BH1lJtFX8fwNHDa1QOVY74WKLLS6o5Pg==} dependencies: workbox-core: 6.5.4 - /workbox-strategies/6.5.4: + /workbox-strategies@6.5.4: resolution: {integrity: sha512-DEtsxhx0LIYWkJBTQolRxG4EI0setTJkqR4m7r4YpBdxtWJH1Mbg01Cj8ZjNOO8etqfA3IZaOPHUxCs8cBsKLw==} dependencies: workbox-core: 6.5.4 - /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 - /workbox-sw/6.5.4: + /workbox-sw@6.5.4: resolution: {integrity: sha512-vo2RQo7DILVRoH5LjGqw3nphavEjK4Qk+FenXeUsknKn14eCNedHOXWbmnvP4ipKhlE35pvJ4yl4YYf6YsJArA==} - /workbox-webpack-plugin/6.5.4_webpack@5.78.0: + /workbox-webpack-plugin@6.5.4(webpack@5.78.0): resolution: {integrity: sha512-LmWm/zoaahe0EGmMTrSLUi+BjyR3cdGEfU3fS6PN1zKFYbqAKuQ+Oy/27e4VSXsyIwAw8+QDfk1XHNGtZu9nQg==} engines: {node: '>=10.0.0'} peerDependencies: @@ -46500,28 +47438,28 @@ packages: fast-json-stable-stringify: 2.1.0 pretty-bytes: 5.6.0 upath: 1.2.0 - webpack: 5.78.0_u5c4qderjagc6tepfyiby6xhau + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) webpack-sources: 1.4.3 workbox-build: 6.5.4 transitivePeerDependencies: - '@types/babel__core' - supports-color - /workbox-window/6.5.4: + /workbox-window@6.5.4: resolution: {integrity: sha512-HnLZJDwYBE+hpG25AQBO8RUWBJRaCsI9ksQJEp3aCOFCaG5kqaToAYXFRAHxzRluM2cQbGzdQF5rjKPWPA1fug==} dependencies: '@types/trusted-types': 2.0.3 workbox-core: 6.5.4 - /workerpool/6.1.0: + /workerpool@6.1.0: resolution: {integrity: sha512-toV7q9rWNYha963Pl/qyeZ6wG+3nnsyvolaNUS8+R5Wtw6qJPTxIlOP1ZSvcGhEJw+l3HMMmtiNo9Gl61G4GVg==} dev: true - /workerpool/6.2.1: + /workerpool@6.2.1: resolution: {integrity: sha512-ILEIE97kDZvF9Wb9f6h5aXK4swSlKGUcOEGiIYb2OOu/IrDU9iwj0fD//SsA6E5ibwJxpEvhullJY4Sl4GcpAw==} dev: true - /wrap-ansi/3.0.1: + /wrap-ansi@3.0.1: resolution: {integrity: sha512-iXR3tDXpbnTpzjKSylUJRkLuOrEC7hwEB221cgn6wtF8wpmz28puFXAEfPT5zrjM3wahygB//VuWEr1vTkDcNQ==} engines: {node: '>=4'} dependencies: @@ -46529,7 +47467,7 @@ packages: strip-ansi: 4.0.0 dev: true - /wrap-ansi/5.1.0: + /wrap-ansi@5.1.0: resolution: {integrity: sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==} engines: {node: '>=6'} dependencies: @@ -46538,7 +47476,7 @@ packages: strip-ansi: 5.2.0 dev: true - /wrap-ansi/6.2.0: + /wrap-ansi@6.2.0: resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} engines: {node: '>=8'} dependencies: @@ -46546,7 +47484,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: @@ -46554,7 +47492,7 @@ packages: string-width: 4.2.3 strip-ansi: 6.0.1 - /wrap-ansi/8.1.0: + /wrap-ansi@8.1.0: resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} engines: {node: '>=12'} dependencies: @@ -46562,10 +47500,10 @@ packages: string-width: 5.1.2 strip-ansi: 7.0.1 - /wrappy/1.0.2: + /wrappy@1.0.2: resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} - /write-file-atomic/2.4.3: + /write-file-atomic@2.4.3: resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==} dependencies: graceful-fs: 4.2.11 @@ -46573,7 +47511,7 @@ packages: signal-exit: 3.0.7 dev: true - /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 @@ -46581,14 +47519,14 @@ packages: signal-exit: 3.0.7 typedarray-to-buffer: 3.1.5 - /write-file-atomic/4.0.2: + /write-file-atomic@4.0.2: resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: imurmurhash: 0.1.4 signal-exit: 3.0.7 - /write-file-atomic/5.0.1: + /write-file-atomic@5.0.1: resolution: {integrity: sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: @@ -46596,7 +47534,7 @@ packages: signal-exit: 4.0.2 dev: true - /write-json-file/3.2.0: + /write-json-file@3.2.0: resolution: {integrity: sha512-3xZqT7Byc2uORAatYiP3DHUUAVEkNOswEWNs9H5KXiicRTvzYzYqKjYc4G7p+8pltvAw641lVByKVtMpf+4sYQ==} engines: {node: '>=6'} dependencies: @@ -46608,7 +47546,7 @@ packages: write-file-atomic: 2.4.3 dev: true - /write-json-file/4.3.0: + /write-json-file@4.3.0: resolution: {integrity: sha512-PxiShnxf0IlnQuMYOPPhPkhExoCQuTUNPOa/2JWCYTmBquU9njyyDuwRKN26IZBlp4yn1nt+Agh2HOOBl+55HQ==} engines: {node: '>=8.3'} dependencies: @@ -46620,7 +47558,7 @@ packages: write-file-atomic: 3.0.3 dev: true - /write-pkg/4.0.0: + /write-pkg@4.0.0: resolution: {integrity: sha512-v2UQ+50TNf2rNHJ8NyWttfm/EJUBWMJcx6ZTYZr6Qp52uuegWw/lBkCtCbnYZEmPRNL61m+u67dAmGxo+HTULA==} engines: {node: '>=8'} dependencies: @@ -46629,7 +47567,7 @@ packages: write-json-file: 3.2.0 dev: true - /write-yaml-file/4.2.0: + /write-yaml-file@4.2.0: resolution: {integrity: sha512-LwyucHy0uhWqbrOkh9cBluZBeNVxzHjDaE9mwepZG3n3ZlbM4v3ndrFw51zW/NXYFFqP+QWZ72ihtLWTh05e4Q==} engines: {node: '>=10.13'} dependencies: @@ -46637,7 +47575,7 @@ packages: write-file-atomic: 3.0.3 dev: true - /ws/6.2.2: + /ws@6.2.2: resolution: {integrity: sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==} peerDependencies: bufferutil: ^4.0.1 @@ -46651,7 +47589,7 @@ packages: async-limiter: 1.0.1 dev: true - /ws/7.5.9: + /ws@7.5.9: resolution: {integrity: sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==} engines: {node: '>=8.3.0'} peerDependencies: @@ -46663,7 +47601,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: @@ -46675,7 +47613,7 @@ packages: utf-8-validate: optional: true - /ws/8.13.0: + /ws@8.13.0: resolution: {integrity: sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==} engines: {node: '>=10.0.0'} peerDependencies: @@ -46687,19 +47625,19 @@ packages: utf-8-validate: optional: true - /xdg-basedir/4.0.0: + /xdg-basedir@4.0.0: resolution: {integrity: sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==} engines: {node: '>=8'} - /xml-name-validator/3.0.0: + /xml-name-validator@3.0.0: resolution: {integrity: sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==} - /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: @@ -46707,7 +47645,7 @@ packages: xmlbuilder: 11.0.1 dev: false - /xml2js/0.5.0: + /xml2js@0.5.0: resolution: {integrity: sha512-drPFnkQJik/O+uPKpqSgr22mpuFHqKdbS835iAQrUC73L2F5WkboIRd63ai/2Yg6I1jzifPFKH2NTK+cfglkIA==} engines: {node: '>=4.0.0'} dependencies: @@ -46715,74 +47653,75 @@ 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 - /xmlbuilder/13.0.2: + /xmlbuilder@13.0.2: resolution: {integrity: sha512-Eux0i2QdDYKbdbA6AM6xE4m6ZTZr4G4xF9kahI2ukSEMCzwce2eX9WlTI5J3s+NU7hpasFsr8hWIONae7LluAQ==} engines: {node: '>=6.0'} dev: false - /xmlbuilder/9.0.7: + /xmlbuilder@9.0.7: resolution: {integrity: sha512-7YXTQc3P2l9+0rjaUbLwMKRhtmwg1M1eDf6nag7urC7pIPYLD9W/jmzQ4ptRSUbodw5S0jfoGTflLemQibSpeQ==} engines: {node: '>=4.0'} dev: false - /xmlchars/2.2.0: + /xmlchars@2.2.0: resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} - /xmlcreate/2.0.4: + /xmlcreate@2.0.4: resolution: {integrity: sha512-nquOebG4sngPmGPICTS5EnxqhKbCmz5Ox5hsszI2T6U5qdrJizBc+0ilYSEjTSzU0yZcmvppztXe/5Al5fUwdg==} + requiresBuild: true dev: false optional: true - /xmlhttprequest-ssl/2.0.0: + /xmlhttprequest-ssl@2.0.0: resolution: {integrity: sha512-QKxVRxiRACQcVuQEYFsI1hhkrMlrXHPegbbd1yn9UHOmRxY+si12nQYzri3vbzt8VdTTRviqcKxcyllFas5z2A==} engines: {node: '>=0.4.0'} dev: false - /xtend/4.0.2: + /xtend@4.0.2: resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} engines: {node: '>=0.4'} - /xxhashjs/0.2.2: + /xxhashjs@0.2.2: resolution: {integrity: sha512-AkTuIuVTET12tpsVIQo+ZU6f/qDmKuRUcjaqR+OIvm+aCBsZ95i7UVY5WJ9TMsSaZ0DA2WxoZ4acu0sPH+OKAw==} dependencies: cuint: 0.2.2 dev: true - /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==} - /yallist/4.0.0: + /yallist@4.0.0: resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} - /yaml/1.10.2: + /yaml@1.10.2: resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} engines: {node: '>= 6'} - /yargs-parser/13.1.2: + /yargs-parser@13.1.2: resolution: {integrity: sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==} dependencies: camelcase: 5.3.1 decamelize: 1.2.0 dev: true - /yargs-parser/18.1.3: + /yargs-parser@18.1.3: resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} engines: {node: '>=6'} dependencies: @@ -46790,25 +47729,25 @@ 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.0.1: + /yargs-parser@21.0.1: resolution: {integrity: sha512-9BK1jFpLzJROCI5TzwZL/TU4gqjK5xiHV/RfWLOahrjAko/e4DJkRDZQXfvqAsiZzzYhgAzbgz6lg48jcm4GLg==} engines: {node: '>=12'} dev: true - /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: @@ -46818,7 +47757,7 @@ packages: is-plain-obj: 2.1.0 dev: true - /yargs/13.3.2: + /yargs@13.3.2: resolution: {integrity: sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==} dependencies: cliui: 5.0.0 @@ -46833,7 +47772,7 @@ packages: yargs-parser: 13.1.2 dev: true - /yargs/15.4.1: + /yargs@15.4.1: resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==} engines: {node: '>=8'} dependencies: @@ -46850,7 +47789,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: @@ -46862,7 +47801,7 @@ packages: y18n: 5.0.8 yargs-parser: 20.2.9 - /yargs/17.6.2: + /yargs@17.6.2: resolution: {integrity: sha512-1/9UrdHjDZc0eOU0HxOHoS78C69UD3JRMvzlJ7S79S2nTaWRA/whGCTV8o9e/N/1Va9YIV7Q4sOxD8VV4pCWOw==} engines: {node: '>=12'} dependencies: @@ -46875,7 +47814,7 @@ packages: yargs-parser: 21.1.1 dev: true - /yargs/17.7.1: + /yargs@17.7.1: resolution: {integrity: sha512-cwiTb08Xuv5fqF4AovYacTFNxk62th7LKJ6BL9IGUpTJrWoU7/7WdQGTP2SjKf1dUNBGzDd28p/Yfs/GI6JrLw==} engines: {node: '>=12'} dependencies: @@ -46887,7 +47826,7 @@ packages: y18n: 5.0.8 yargs-parser: 21.1.1 - /yargs/17.7.2: + /yargs@17.7.2: resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} engines: {node: '>=12'} dependencies: @@ -46899,37 +47838,37 @@ packages: y18n: 5.0.8 yargs-parser: 21.1.1 - /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 - /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: false - /zen-observable-ts/0.8.21: + /zen-observable-ts@0.8.21: resolution: {integrity: sha512-Yj3yXweRc8LdRMrCC8nIc4kkjWecPAUVh0TI0OUrWXx6aX790vLcDlWca6I4vsyCGH3LpWxq0dJRcMOFoVqmeg==} dependencies: tslib: 1.14.1 zen-observable: 0.8.15 dev: true - /zen-observable/0.8.15: + /zen-observable@0.8.15: resolution: {integrity: sha512-PQ2PC7R9rslx84ndNBZB/Dkv8V8fZEpk83RLgXtYd0fwUgEjseMn1Dgajh2x6S8QbZAFa9p2qVCEuYZNgve0dQ==} dev: true - /zip-stream/4.1.0: + /zip-stream@4.1.0: resolution: {integrity: sha512-zshzwQW7gG7hjpBlgeQP9RuyPGNxvJdzR8SUM3QhxCnLjWN2E7j3dOvpeDcQoETfHx0urRS7EtmVToql7YpU4A==} engines: {node: '>= 10'} dependencies: @@ -46938,16 +47877,16 @@ packages: readable-stream: 3.6.2 dev: false - /zod/3.22.4: + /zod@3.22.4: resolution: {integrity: sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==} dev: false - /zone.js/0.12.0: + /zone.js@0.12.0: resolution: {integrity: sha512-XtC+I5dXU14HrzidAKBNMqneIVUykLEAA1x+v4KVrd6AUPWlwYORF8KgsVqvgdHiKZ4BkxxjvYi/ksEixTPR0Q==} dependencies: tslib: 2.5.0 - /zustand/3.7.2_react@17.0.2: + /zustand@3.7.2(react@17.0.2): resolution: {integrity: sha512-PIJDIZKtokhof+9+60cpockVOq05sJzHCriyvaLBmEJixseQ1a5Kdov6fWZfWOu5SK9c+FhH1jU0tntLxRJYMA==} engines: {node: '>=12.7.0'} peerDependencies: @@ -46959,10 +47898,10 @@ packages: react: 17.0.2 dev: false - /zwitch/2.0.4: + /zwitch@2.0.4: resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} dev: true - /zxcvbn/4.4.2: + /zxcvbn@4.4.2: resolution: {integrity: sha512-Bq0B+ixT/DMyG8kgX2xWcI5jUvCwqrMxSFam7m0lAf78nf04hv6lNCsyLYdyYTrCVMqNDY/206K7eExYCeSyUQ==} dev: false diff --git a/providers/africas-talking/package.json b/providers/africas-talking/package.json index 888f01ec978..599a72f2a61 100644 --- a/providers/africas-talking/package.json +++ b/providers/africas-talking/package.json @@ -29,10 +29,6 @@ "publishConfig": { "access": "public" }, - "engines": { - "node": ">=13.0.0 <17.0.0", - "pnpm": "^7.26.0" - }, "dependencies": { "@novu/stateless": "^0.20.0-alpha.1", "africastalking": "^0.6.2" diff --git a/providers/clicksend/package.json b/providers/clicksend/package.json index 08322e64bcb..17a66960ef5 100644 --- a/providers/clicksend/package.json +++ b/providers/clicksend/package.json @@ -28,10 +28,6 @@ "publishConfig": { "access": "public" }, - "engines": { - "node": ">=13.0.0 <17.0.0", - "pnpm": "^7.26.0" - }, "dependencies": { "@novu/stateless": "0.16.3", "clicksend": "^5.0.37" diff --git a/providers/forty-six-elks/package.json b/providers/forty-six-elks/package.json index 5f05612cf57..c81d9233a5d 100644 --- a/providers/forty-six-elks/package.json +++ b/providers/forty-six-elks/package.json @@ -28,10 +28,6 @@ "publishConfig": { "access": "public" }, - "engines": { - "node": ">=13.0.0 <17.0.0", - "pnpm": "^7.26.0" - }, "dependencies": { "@novu/stateless": "^0.20.0-alpha.1", "axios": "^1.3.4" diff --git a/providers/mailtrap/package.json b/providers/mailtrap/package.json index a681f810c89..38ab7d95c03 100644 --- a/providers/mailtrap/package.json +++ b/providers/mailtrap/package.json @@ -28,10 +28,6 @@ "publishConfig": { "access": "public" }, - "engines": { - "node": ">=13.0.0 <17.0.0", - "pnpm": "^7.26.0" - }, "dependencies": { "@novu/stateless": "^0.20.0-alpha.1", "mailtrap": "^3.1.1" diff --git a/providers/maqsam/package.json b/providers/maqsam/package.json index a4ac1f55edb..0a8ba9f61f8 100644 --- a/providers/maqsam/package.json +++ b/providers/maqsam/package.json @@ -28,10 +28,6 @@ "publishConfig": { "access": "public" }, - "engines": { - "node": ">=13.0.0 <17.0.0", - "pnpm": "^7.26.0" - }, "dependencies": { "@novu/stateless": "^0.20.0-alpha.1", "axios": "^1.3.4", diff --git a/providers/mattermost/package.json b/providers/mattermost/package.json index e189f337c6f..1ccd948c3c0 100644 --- a/providers/mattermost/package.json +++ b/providers/mattermost/package.json @@ -28,10 +28,6 @@ "publishConfig": { "access": "public" }, - "engines": { - "node": ">=13.0.0 <17.0.0", - "pnpm": "^7.26.0" - }, "dependencies": { "@novu/stateless": "^0.20.0-alpha.1", "axios": "^1.3.3" diff --git a/providers/one-signal/package.json b/providers/one-signal/package.json index 6f32562a006..25b5bda7c0d 100644 --- a/providers/one-signal/package.json +++ b/providers/one-signal/package.json @@ -29,10 +29,6 @@ "publishConfig": { "access": "public" }, - "engines": { - "node": ">=13.0.0 <17.0.0", - "pnpm": "^7.26.0" - }, "dependencies": { "@novu/stateless": "^0.20.0-alpha.1", "onesignal-node": "^3.4.0" diff --git a/providers/plunk/package.json b/providers/plunk/package.json index 46600a3eba8..3af5eb13247 100644 --- a/providers/plunk/package.json +++ b/providers/plunk/package.json @@ -28,10 +28,6 @@ "publishConfig": { "access": "public" }, - "engines": { - "node": ">=13.0.0 <17.0.0", - "pnpm": "^7.26.0" - }, "dependencies": { "@novu/stateless": "^0.20.0-alpha.1", "@plunk/node": "2.0.0" diff --git a/providers/push-webhook/package.json b/providers/push-webhook/package.json index 799dae0bf86..7e57e087faf 100644 --- a/providers/push-webhook/package.json +++ b/providers/push-webhook/package.json @@ -29,10 +29,6 @@ "publishConfig": { "access": "public" }, - "engines": { - "node": ">=13.0.0 <17.0.0", - "pnpm": "^7.26.0" - }, "dependencies": { "@novu/stateless": "^0.20.0-alpha.1", "axios": "^1.3.5" diff --git a/providers/sendchamp/package.json b/providers/sendchamp/package.json index d258c4ef238..4ccca79d5e8 100644 --- a/providers/sendchamp/package.json +++ b/providers/sendchamp/package.json @@ -28,10 +28,6 @@ "publishConfig": { "access": "public" }, - "engines": { - "node": ">=13.0.0 <17.0.0", - "pnpm": "^7.26.0" - }, "dependencies": { "@novu/stateless": "^0.20.0-alpha.1", "axios": "^1.4.0" diff --git a/providers/sms-central/package.json b/providers/sms-central/package.json index c89b91e28e0..587b16e77b5 100644 --- a/providers/sms-central/package.json +++ b/providers/sms-central/package.json @@ -28,10 +28,6 @@ "publishConfig": { "access": "public" }, - "engines": { - "node": ">=13.0.0 <17.0.0", - "pnpm": "^7.26.0" - }, "dependencies": { "@novu/stateless": "^0.12.0", "axios": "^1.3.3" From db72ec100d952d9dbe5d6134d8753aea392b8c80 Mon Sep 17 00:00:00 2001 From: Dima Grossman Date: Sun, 15 Oct 2023 15:34:26 +0300 Subject: [PATCH 2/4] fix: lock file for semver --- pnpm-lock.yaml | 3714 +++++++++++++++++++++++++++++++++++------------- 1 file changed, 2715 insertions(+), 999 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 40256195dc0..d47276c5573 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -126,7 +126,7 @@ importers: version: 8.8.0(eslint@8.38.0) eslint-import-resolver-webpack: specifier: ^0.13.7 - version: 0.13.7(eslint-plugin-import@2.28.1)(webpack@5.78.0) + version: 0.13.7(eslint-plugin-import@2.28.1)(webpack@5.89.0) eslint-plugin-eslint-comments: specifier: ^3.2.0 version: 3.2.0(eslint@8.38.0) @@ -222,7 +222,7 @@ importers: version: 6.1.13 ts-jest: specifier: 27.1.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 version: 10.9.1(@swc/core@1.3.49)(@types/node@16.11.7)(typescript@4.9.5) @@ -354,7 +354,7 @@ importers: version: 3.3.6 nest-raven: specifier: ^10.0.0 - version: 10.0.0(@nestjs/common@10.2.2)(@nestjs/core@10.2.2)(@sentry/node@7.47.0)(class-transformer@0.5.1)(class-validator@0.14.0)(graphql@16.8.0)(reflect-metadata@0.1.13)(rxjs@7.8.1) + version: 10.0.0(@nestjs/common@10.2.2)(@nestjs/core@10.2.2)(@sentry/node@7.47.0)(class-transformer@0.5.1)(class-validator@0.14.0)(graphql@16.8.1)(reflect-metadata@0.1.13)(rxjs@7.8.1) newrelic: specifier: ^9.15.0 version: 9.15.0 @@ -464,7 +464,7 @@ importers: version: 9.2.4 ts-loader: specifier: ~9.4.0 - version: 9.4.2(typescript@4.9.5)(webpack@5.78.0) + version: 9.4.2(typescript@4.9.5)(webpack@5.89.0) ts-node: specifier: ~10.9.1 version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) @@ -573,10 +573,10 @@ importers: version: 9.2.4 ts-jest: specifier: ^27.0.7 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) ts-loader: specifier: ~9.4.0 - version: 9.4.2(typescript@4.9.5)(webpack@5.78.0) + version: 9.4.2(typescript@4.9.5)(webpack@5.89.0) ts-node: specifier: ~10.9.1 version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) @@ -594,13 +594,13 @@ importers: version: 4.8.0(react-dom@17.0.2)(react@17.0.2) '@babel/plugin-proposal-optional-chaining': specifier: ^7.20.7 - version: 7.21.0(@babel/core@7.22.11) + version: 7.21.0(@babel/core@7.23.2) '@babel/plugin-transform-react-display-name': specifier: ^7.18.6 - version: 7.18.6(@babel/core@7.22.11) + version: 7.18.6(@babel/core@7.23.2) '@babel/plugin-transform-runtime': specifier: ^7.19.6 - version: 7.21.4(@babel/core@7.22.11) + version: 7.21.4(@babel/core@7.23.2) '@cypress/react': specifier: ^7.0.2 version: 7.0.3(@types/react@17.0.53)(cypress@13.3.1)(react-dom@17.0.2)(react@17.0.2) @@ -696,7 +696,7 @@ importers: version: 11.2.7(react-dom@17.0.2)(react@17.0.2) '@testing-library/user-event': specifier: ^12.1.10 - version: 12.8.3(@testing-library/dom@9.3.1) + version: 12.8.3(@testing-library/dom@9.3.3) '@types/jest': specifier: ^29.5.0 version: 29.5.1 @@ -738,7 +738,7 @@ importers: version: 2.29.3 eslint-plugin-react-hooks: specifier: ^4.4.0 - version: 4.6.0(eslint@8.48.0) + version: 4.6.0(eslint@8.51.0) handlebars: specifier: ^4.7.7 version: 4.7.7 @@ -834,7 +834,7 @@ importers: version: 6.2.2(react-dom@17.0.2)(react@17.0.2) react-scripts: specifier: ^5.0.1 - version: 5.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(@swc/core@1.3.49)(esbuild@0.18.20)(eslint-import-resolver-webpack@0.13.7)(eslint@8.48.0)(react@17.0.2)(ts-node@10.9.1)(typescript@4.9.5) + version: 5.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(@swc/core@1.3.49)(esbuild@0.18.20)(eslint-import-resolver-webpack@0.13.7)(eslint@8.51.0)(react@17.0.2)(ts-node@10.9.1)(typescript@4.9.5) react-syntax-highlighter: specifier: ^15.4.3 version: 15.5.0(react@17.0.2) @@ -877,13 +877,13 @@ importers: version: 7.12.1 '@babel/preset-env': specifier: ^7.13.15 - version: 7.21.4(@babel/core@7.22.11) + version: 7.21.4(@babel/core@7.23.2) '@babel/preset-react': specifier: ^7.13.13 - version: 7.18.6(@babel/core@7.22.11) + version: 7.18.6(@babel/core@7.23.2) '@babel/preset-typescript': specifier: ^7.13.0 - version: 7.21.4(@babel/core@7.22.11) + version: 7.21.4(@babel/core@7.23.2) '@babel/runtime': specifier: ^7.20.13 version: 7.21.0 @@ -910,13 +910,13 @@ importers: version: 7.4.2 '@storybook/preset-create-react-app': specifier: ^7.4.2 - version: 7.4.2(@babel/core@7.22.11)(react-refresh@0.14.0)(react-scripts@5.0.1)(typescript@4.9.5)(webpack-dev-server@4.11.1)(webpack@5.78.0) + version: 7.4.2(@babel/core@7.23.2)(react-refresh@0.14.0)(react-scripts@5.0.1)(typescript@4.9.5)(webpack-dev-server@4.11.1)(webpack@5.78.0) '@storybook/react': specifier: ^7.4.2 version: 7.4.2(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5) '@storybook/react-webpack5': specifier: ^7.4.2 - version: 7.4.2(@babel/core@7.22.11)(@swc/core@1.3.49)(@types/react-dom@17.0.19)(@types/react@17.0.53)(esbuild@0.18.20)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack-dev-server@4.11.1) + version: 7.4.2(@babel/core@7.23.2)(@swc/core@1.3.49)(@types/react-dom@17.0.19)(@types/react@17.0.53)(esbuild@0.18.20)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack-dev-server@4.11.1) '@testing-library/jest-dom': specifier: ^4.2.4 version: 4.2.4 @@ -937,10 +937,10 @@ importers: version: 2.0.1 eslint-plugin-cypress: specifier: ^2.15.1 - version: 2.15.1(eslint@8.48.0) + version: 2.15.1(eslint@8.51.0) eslint-plugin-storybook: specifier: ^0.6.13 - version: 0.6.13(eslint@8.48.0)(typescript@4.9.5) + version: 0.6.13(eslint@8.51.0)(typescript@4.9.5) http-server: specifier: ^0.13.0 version: 0.13.0 @@ -1027,7 +1027,7 @@ importers: version: 4.17.21 nest-raven: specifier: ^10.0.0 - version: 10.0.0(@nestjs/common@10.2.2)(@nestjs/core@10.2.2)(@sentry/node@7.66.0)(class-transformer@0.5.1)(class-validator@0.14.0)(graphql@16.8.0)(reflect-metadata@0.1.13)(rxjs@7.8.1) + version: 10.0.0(@nestjs/common@10.2.2)(@nestjs/core@10.2.2)(@sentry/node@7.66.0)(class-transformer@0.5.1)(class-validator@0.14.0)(graphql@16.8.1)(reflect-metadata@0.1.13)(rxjs@7.8.1) newrelic: specifier: ^9.15.0 version: 9.15.0 @@ -1097,10 +1097,10 @@ importers: version: 6.3.3 ts-jest: specifier: ^27.0.7 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-loader: specifier: ~9.4.0 - version: 9.4.2(typescript@4.9.5)(webpack@5.78.0) + version: 9.4.2(typescript@4.9.5)(webpack@5.89.0) ts-node: specifier: ~10.9.1 version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) @@ -1124,7 +1124,7 @@ importers: version: 11.10.6(@emotion/react@11.10.6)(@types/react@17.0.62)(react@17.0.2) '@mantine/core': specifier: 4.2.12 - version: 4.2.12(@babel/core@7.22.11)(@mantine/hooks@4.2.12)(@types/react@17.0.62)(react-dom@17.0.2)(react@17.0.2) + version: 4.2.12(@babel/core@7.23.2)(@mantine/hooks@4.2.12)(@types/react@17.0.62)(react-dom@17.0.2)(react@17.0.2) '@mantine/hooks': specifier: 4.2.12 version: 4.2.12(react@17.0.2) @@ -1145,7 +1145,7 @@ importers: version: 2.4.2 eslint-plugin-cypress: specifier: ^2.15.1 - version: 2.15.1(eslint@8.48.0) + version: 2.15.1(eslint@8.51.0) iframe-resizer: specifier: ^4.3.1 version: 4.3.6 @@ -1178,7 +1178,7 @@ importers: version: 6.10.0(react-dom@17.0.2)(react@17.0.2) react-scripts: specifier: ^5.0.1 - version: 5.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(@swc/core@1.3.49)(eslint-import-resolver-webpack@0.13.7)(eslint@8.48.0)(react@17.0.2)(ts-node@10.9.1)(typescript@4.9.5) + version: 5.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(@swc/core@1.3.49)(eslint-import-resolver-webpack@0.13.7)(eslint@8.51.0)(react@17.0.2)(ts-node@10.9.1)(typescript@4.9.5) rimraf: specifier: ^3.0.2 version: 3.0.2 @@ -1194,25 +1194,25 @@ importers: devDependencies: '@babel/plugin-proposal-optional-chaining': specifier: ^7.20.7 - version: 7.21.0(@babel/core@7.22.11) + version: 7.21.0(@babel/core@7.23.2) '@babel/plugin-transform-react-display-name': specifier: ^7.18.6 - version: 7.22.5(@babel/core@7.22.11) + version: 7.22.5(@babel/core@7.23.2) '@babel/plugin-transform-runtime': specifier: ^7.19.6 - version: 7.21.4(@babel/core@7.22.11) + version: 7.21.4(@babel/core@7.23.2) '@babel/polyfill': specifier: ^7.12.1 version: 7.12.1 '@babel/preset-env': specifier: ^7.13.15 - version: 7.22.20(@babel/core@7.22.11) + version: 7.22.20(@babel/core@7.23.2) '@babel/preset-react': specifier: ^7.13.13 - version: 7.22.15(@babel/core@7.22.11) + version: 7.22.15(@babel/core@7.23.2) '@babel/preset-typescript': specifier: ^7.13.0 - version: 7.21.4(@babel/core@7.22.11) + version: 7.21.4(@babel/core@7.23.2) '@babel/runtime': specifier: ^7.20.13 version: 7.21.0 @@ -1368,7 +1368,7 @@ importers: version: 4.17.21 nest-raven: specifier: ^10.0.0 - version: 10.0.0(@nestjs/common@10.2.2)(@nestjs/core@10.2.2)(@sentry/node@7.47.0)(class-transformer@0.5.1)(class-validator@0.14.0)(graphql@16.8.0)(reflect-metadata@0.1.13)(rxjs@7.8.1) + version: 10.0.0(@nestjs/common@10.2.2)(@nestjs/core@10.2.2)(@sentry/node@7.47.0)(class-transformer@0.5.1)(class-validator@0.14.0)(graphql@16.8.1)(reflect-metadata@0.1.13)(rxjs@7.8.1) newrelic: specifier: ^9.15.0 version: 9.15.0 @@ -1438,13 +1438,13 @@ importers: version: 9.2.4 superagent-defaults: specifier: ^0.1.14 - version: 0.1.14(superagent@8.0.9) + version: 0.1.14(superagent@8.1.2) supertest: specifier: ^5.0.0 version: 5.0.0 ts-loader: specifier: ~9.4.0 - version: 9.4.2(typescript@4.9.5)(webpack@5.78.0) + version: 9.4.2(typescript@4.9.5)(webpack@5.89.0) ts-node: specifier: ~10.9.1 version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) @@ -1528,7 +1528,7 @@ importers: version: 4.17.21 nest-raven: specifier: ^10.0.0 - version: 10.0.0(@nestjs/common@10.2.2)(@nestjs/core@10.2.2)(@sentry/node@7.47.0)(class-transformer@0.5.1)(class-validator@0.14.0)(graphql@16.8.0)(reflect-metadata@0.1.13)(rxjs@7.8.1) + version: 10.0.0(@nestjs/common@10.2.2)(@nestjs/core@10.2.2)(@sentry/node@7.47.0)(class-transformer@0.5.1)(class-validator@0.14.0)(graphql@16.8.1)(reflect-metadata@0.1.13)(rxjs@7.8.1) newrelic: specifier: ^9.15.0 version: 9.15.0 @@ -1598,7 +1598,7 @@ importers: version: 6.3.3 ts-loader: specifier: ~9.4.0 - version: 9.4.2(typescript@4.9.5)(webpack@5.78.0) + version: 9.4.2(typescript@4.9.5)(webpack@5.89.0) ts-node: specifier: ~10.9.1 version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) @@ -1682,7 +1682,7 @@ importers: version: 3.0.2 superagent-defaults: specifier: ^0.1.14 - version: 0.1.14(superagent@8.0.9) + version: 0.1.14(superagent@8.1.2) supertest: specifier: ^5.0.0 version: 5.0.0 @@ -1707,7 +1707,7 @@ importers: version: 0.4.9(graphql@15.8.0) eslint-plugin-prettier: specifier: ^4.2.1 - version: 4.2.1(eslint-config-prettier@8.8.0)(eslint@7.32.0)(prettier@2.8.7) + version: 4.2.1(eslint-config-prettier@8.8.0)(eslint@7.32.0)(prettier@3.0.3) nodemon: specifier: ^3.0.1 version: 3.0.1 @@ -1816,7 +1816,7 @@ importers: version: 0.8.5 ts-jest: specifier: ^27.1.3 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) @@ -1910,7 +1910,7 @@ importers: version: 1.6.6 superagent-defaults: specifier: ^0.1.14 - version: 0.1.14(superagent@8.0.9) + version: 0.1.14(superagent@8.1.2) supertest: specifier: ^5.0.0 version: 5.0.0 @@ -1935,7 +1935,7 @@ importers: version: 0.4.9(graphql@15.8.0) eslint-plugin-prettier: specifier: ^4.2.1 - version: 4.2.1(eslint-config-prettier@8.8.0)(eslint@7.32.0)(prettier@2.8.7) + version: 4.2.1(eslint-config-prettier@8.8.0)(eslint@7.32.0)(prettier@3.0.3) nodemon: specifier: ^3.0.1 version: 3.0.1 @@ -2228,10 +2228,10 @@ importers: version: 9.2.4 ts-jest: specifier: ^27.0.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) typescript: specifier: 4.9.5 version: 4.9.5 @@ -2279,7 +2279,7 @@ importers: version: 5.4.1 ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) uuid: specifier: ^9.0.0 version: 9.0.0 @@ -2332,7 +2332,7 @@ importers: version: 3.0.2 ts-jest: specifier: ^27.0.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -2357,10 +2357,10 @@ importers: devDependencies: '@babel/preset-env': specifier: ^7.13.15 - version: 7.21.4(@babel/core@7.22.11) + version: 7.21.4(@babel/core@7.23.2) '@babel/preset-typescript': specifier: ^7.13.0 - version: 7.21.4(@babel/core@7.22.11) + version: 7.21.4(@babel/core@7.23.2) '@types/jest': specifier: ^29.2.3 version: 29.5.0 @@ -2375,7 +2375,7 @@ importers: version: 29.5.0 ts-jest: specifier: ^29.0.3 - version: 29.1.0(@babel/core@7.22.11)(jest@29.5.0)(typescript@4.9.5) + version: 29.1.0(@babel/core@7.23.2)(jest@29.5.0)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -2427,10 +2427,10 @@ importers: version: 3.0.2 ts-jest: specifier: ^27.0.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -2491,7 +2491,7 @@ importers: version: 0.0.0 ts-jest: specifier: ^27.0.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -2555,13 +2555,13 @@ importers: devDependencies: '@babel/preset-env': specifier: ^7.13.15 - version: 7.22.20(@babel/core@7.22.11) + version: 7.22.20(@babel/core@7.23.2) '@babel/preset-react': specifier: ^7.13.13 - version: 7.22.15(@babel/core@7.22.11) + version: 7.22.15(@babel/core@7.23.2) '@babel/preset-typescript': specifier: ^7.13.0 - version: 7.21.4(@babel/core@7.22.11) + version: 7.21.4(@babel/core@7.23.2) '@storybook/addon-actions': specifier: ^7.4.2 version: 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2)(react@17.0.2) @@ -2582,7 +2582,7 @@ importers: version: 7.4.2(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5) '@storybook/react-webpack5': specifier: ^7.4.2 - version: 7.4.2(@babel/core@7.22.11)(@swc/core@1.3.49)(@types/react-dom@17.0.19)(@types/react@17.0.53)(esbuild@0.18.20)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack-cli@5.1.4) + version: 7.4.2(@babel/core@7.23.2)(@swc/core@1.3.49)(@types/react-dom@17.0.19)(@types/react@17.0.53)(esbuild@0.18.20)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack-cli@5.1.4) '@testing-library/dom': specifier: ^9.3.0 version: 9.3.0 @@ -2615,13 +2615,13 @@ importers: version: 8.8.2 babel-loader: specifier: ^8.2.4 - version: 8.3.0(@babel/core@7.22.11)(webpack@5.82.1) + version: 8.3.0(@babel/core@7.23.2)(webpack@5.82.1) compression-webpack-plugin: specifier: ^10.0.0 version: 10.0.0(webpack@5.82.1) eslint-plugin-storybook: specifier: ^0.6.13 - version: 0.6.13(eslint@8.48.0)(typescript@4.9.5) + version: 0.6.13(eslint@8.51.0)(typescript@4.9.5) jest: specifier: ^29.3.1 version: 29.5.0(@types/node@18.15.11)(ts-node@10.9.1) @@ -2648,7 +2648,7 @@ importers: version: 5.3.9(@swc/core@1.3.49)(esbuild@0.18.20)(webpack@5.82.1) ts-jest: specifier: ^29.0.3 - version: 29.1.0(@babel/core@7.22.11)(esbuild@0.18.20)(jest@29.5.0)(typescript@4.9.5) + version: 29.1.0(@babel/core@7.23.2)(esbuild@0.18.20)(jest@29.5.0)(typescript@4.9.5) ts-loader: specifier: ~9.4.0 version: 9.4.2(typescript@4.9.5)(webpack@5.82.1) @@ -2849,7 +2849,7 @@ importers: version: 0.0.0 ts-jest: specifier: ^27.0.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -2892,10 +2892,10 @@ importers: version: 3.0.2 ts-jest: specifier: ~27.1.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) typescript: specifier: 4.9.5 version: 4.9.5 @@ -2941,10 +2941,10 @@ importers: version: 2.8.7 ts-jest: specifier: ^27.0.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -2999,10 +2999,10 @@ importers: version: 3.0.2 ts-jest: specifier: ^27.0.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -3054,10 +3054,10 @@ importers: version: 2.8.7 ts-jest: specifier: ^27.0.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -3100,10 +3100,10 @@ importers: version: 3.0.2 ts-jest: specifier: ~27.1.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@27.5.2)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@27.5.2)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) typescript: specifier: 4.9.5 version: 4.9.5 @@ -3152,10 +3152,10 @@ importers: version: 3.0.2 ts-jest: specifier: ^27.0.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -3198,10 +3198,10 @@ importers: version: 3.0.2 ts-jest: specifier: ~27.1.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@27.5.2)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@27.5.2)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) typescript: specifier: 4.9.5 version: 4.9.5 @@ -3250,10 +3250,10 @@ importers: version: 3.0.2 ts-jest: specifier: ^27.0.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -3305,10 +3305,10 @@ importers: version: 3.0.2 ts-jest: specifier: ^27.0.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -3369,10 +3369,10 @@ importers: version: 3.0.2 ts-jest: specifier: ^27.0.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -3391,7 +3391,7 @@ importers: devDependencies: '@babel/preset-env': specifier: ^7.13.15 - version: 7.21.4(@babel/core@7.22.11) + version: 7.21.4(@babel/core@7.23.2) '@istanbuljs/nyc-config-typescript': specifier: ^1.0.1 version: 1.0.2(nyc@15.1.0) @@ -3433,10 +3433,10 @@ importers: version: 3.0.2 ts-jest: specifier: ^27.0.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -3479,10 +3479,10 @@ importers: version: 3.0.2 ts-jest: specifier: ~27.1.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) typescript: specifier: 4.9.5 version: 4.9.5 @@ -3498,7 +3498,7 @@ importers: devDependencies: '@babel/preset-env': specifier: ^7.13.15 - version: 7.21.4(@babel/core@7.22.11) + version: 7.21.4(@babel/core@7.23.2) '@istanbuljs/nyc-config-typescript': specifier: ^1.0.1 version: 1.0.2(nyc@15.1.0) @@ -3534,10 +3534,10 @@ importers: version: 3.0.2 ts-jest: specifier: ^27.0.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -3589,10 +3589,10 @@ importers: version: 3.0.2 ts-jest: specifier: ^27.0.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -3644,10 +3644,10 @@ importers: version: 3.0.2 ts-jest: specifier: ^27.0.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -3699,10 +3699,10 @@ importers: version: 3.0.2 ts-jest: specifier: ^27.0.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -3760,10 +3760,10 @@ importers: version: 3.0.2 ts-jest: specifier: ^27.0.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -3818,10 +3818,10 @@ importers: version: 3.0.2 ts-jest: specifier: ^27.0.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -3864,10 +3864,10 @@ importers: version: 3.0.2 ts-jest: specifier: ~27.1.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@27.5.2)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@27.5.2)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) typescript: specifier: 4.9.5 version: 4.9.5 @@ -3922,10 +3922,10 @@ importers: version: 3.0.2 ts-jest: specifier: ^27.0.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -3974,10 +3974,10 @@ importers: version: 3.0.2 ts-jest: specifier: ~27.1.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) typescript: specifier: 4.9.5 version: 4.9.5 @@ -4017,10 +4017,10 @@ importers: version: 3.0.2 ts-jest: specifier: ~27.1.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) typescript: specifier: 4.9.5 version: 4.9.5 @@ -4069,10 +4069,10 @@ importers: version: 3.0.2 ts-jest: specifier: ^27.0.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -4127,10 +4127,10 @@ importers: version: 3.0.2 ts-jest: specifier: ^27.0.7 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -4182,10 +4182,10 @@ importers: version: 3.0.2 ts-jest: specifier: ^27.0.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -4240,10 +4240,10 @@ importers: version: 3.0.2 ts-jest: specifier: ^27.0.7 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -4286,10 +4286,10 @@ importers: version: 3.0.2 ts-jest: specifier: ~27.1.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) typescript: specifier: 4.9.5 version: 4.9.5 @@ -4341,10 +4341,10 @@ importers: version: 3.0.2 ts-jest: specifier: ^27.0.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -4396,10 +4396,10 @@ importers: version: 3.0.2 ts-jest: specifier: ^27.0.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -4442,10 +4442,10 @@ importers: version: 3.0.2 ts-jest: specifier: ~27.1.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@27.5.2)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@27.5.2)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) typescript: specifier: 4.9.5 version: 4.9.5 @@ -4497,10 +4497,10 @@ importers: version: 3.0.2 ts-jest: specifier: ^27.0.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -4543,10 +4543,10 @@ importers: version: 3.0.2 ts-jest: specifier: ~27.1.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) typescript: specifier: 4.9.5 version: 4.9.5 @@ -4595,10 +4595,10 @@ importers: version: 3.0.2 ts-jest: specifier: ^27.0.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -4641,10 +4641,10 @@ importers: version: 3.0.2 ts-jest: specifier: ~27.1.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@27.5.2)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@27.5.2)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) typescript: specifier: 4.9.5 version: 4.9.5 @@ -4693,10 +4693,10 @@ importers: version: 3.0.2 ts-jest: specifier: ^27.0.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -4748,10 +4748,10 @@ importers: version: 3.0.2 ts-jest: specifier: ^27.0.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -4806,10 +4806,10 @@ importers: version: 3.0.2 ts-jest: specifier: ^27.0.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -4861,10 +4861,10 @@ importers: version: 3.0.2 ts-jest: specifier: ^27.0.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -4907,10 +4907,10 @@ importers: version: 3.0.2 ts-jest: specifier: ~27.1.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) typescript: specifier: 4.9.5 version: 4.9.5 @@ -4929,7 +4929,7 @@ importers: devDependencies: '@babel/preset-env': specifier: ^7.13.15 - version: 7.21.4(@babel/core@7.22.11) + version: 7.21.4(@babel/core@7.23.2) '@istanbuljs/nyc-config-typescript': specifier: ^1.0.1 version: 1.0.2(nyc@15.1.0) @@ -4965,10 +4965,10 @@ importers: version: 3.0.2 ts-jest: specifier: ^27.0.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -5020,10 +5020,10 @@ importers: version: 3.0.2 ts-jest: specifier: ^27.0.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -5078,10 +5078,10 @@ importers: version: 3.0.2 ts-jest: specifier: ^27.0.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -5133,10 +5133,10 @@ importers: version: 3.0.2 ts-jest: specifier: ^27.0.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -5155,7 +5155,7 @@ importers: devDependencies: '@babel/preset-env': specifier: ^7.13.15 - version: 7.21.4(@babel/core@7.22.11) + version: 7.21.4(@babel/core@7.23.2) '@istanbuljs/nyc-config-typescript': specifier: ^1.0.1 version: 1.0.2(nyc@15.1.0) @@ -5191,10 +5191,10 @@ importers: version: 3.0.2 ts-jest: specifier: ^27.0.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -5246,10 +5246,10 @@ importers: version: 3.0.2 ts-jest: specifier: ^27.0.5 - version: 27.1.5(@babel/core@7.22.11)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) + version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -5735,7 +5735,7 @@ packages: parse-github-url: 1.0.2 pretty-ms: 7.0.1 requireg: 0.2.2 - semver: 7.5.4 + semver: 7.4.0 signale: 1.4.0 tapable: 2.2.1 terminal-link: 2.1.1 @@ -6089,7 +6089,7 @@ packages: '@smithy/util-defaults-mode-node': 2.0.3 '@smithy/util-retry': 2.0.0 '@smithy/util-utf8': 2.0.0 - tslib: 2.6.2 + tslib: 2.5.0 transitivePeerDependencies: - aws-crt dev: false @@ -6130,7 +6130,7 @@ packages: '@smithy/util-defaults-mode-node': 2.0.3 '@smithy/util-retry': 2.0.0 '@smithy/util-utf8': 2.0.0 - tslib: 2.6.2 + tslib: 2.5.0 transitivePeerDependencies: - aws-crt dev: false @@ -6171,7 +6171,7 @@ packages: '@smithy/util-defaults-mode-node': 2.0.3 '@smithy/util-retry': 2.0.0 '@smithy/util-utf8': 2.0.0 - tslib: 2.6.2 + tslib: 2.5.0 transitivePeerDependencies: - aws-crt dev: false @@ -6216,7 +6216,7 @@ packages: '@smithy/util-retry': 2.0.0 '@smithy/util-utf8': 2.0.0 fast-xml-parser: 4.2.5 - tslib: 2.6.2 + tslib: 2.5.0 transitivePeerDependencies: - aws-crt dev: false @@ -6261,7 +6261,7 @@ packages: '@smithy/util-retry': 2.0.0 '@smithy/util-utf8': 2.0.0 fast-xml-parser: 4.2.5 - tslib: 2.6.2 + tslib: 2.5.0 transitivePeerDependencies: - aws-crt dev: false @@ -6273,7 +6273,7 @@ packages: '@aws-sdk/types': 3.378.0 '@smithy/property-provider': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@aws-sdk/credential-provider-env@3.387.0: @@ -6283,7 +6283,7 @@ packages: '@aws-sdk/types': 3.387.0 '@smithy/property-provider': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@aws-sdk/credential-provider-ini@3.382.0: @@ -6299,7 +6299,7 @@ packages: '@smithy/property-provider': 2.0.3 '@smithy/shared-ini-file-loader': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 transitivePeerDependencies: - aws-crt dev: false @@ -6317,7 +6317,7 @@ packages: '@smithy/property-provider': 2.0.3 '@smithy/shared-ini-file-loader': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 transitivePeerDependencies: - aws-crt dev: false @@ -6336,7 +6336,7 @@ packages: '@smithy/property-provider': 2.0.3 '@smithy/shared-ini-file-loader': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 transitivePeerDependencies: - aws-crt dev: false @@ -6355,7 +6355,7 @@ packages: '@smithy/property-provider': 2.0.3 '@smithy/shared-ini-file-loader': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 transitivePeerDependencies: - aws-crt dev: false @@ -6368,7 +6368,7 @@ packages: '@smithy/property-provider': 2.0.3 '@smithy/shared-ini-file-loader': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@aws-sdk/credential-provider-process@3.387.0: @@ -6379,7 +6379,7 @@ packages: '@smithy/property-provider': 2.0.3 '@smithy/shared-ini-file-loader': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@aws-sdk/credential-provider-sso@3.382.0: @@ -6392,7 +6392,7 @@ packages: '@smithy/property-provider': 2.0.3 '@smithy/shared-ini-file-loader': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 transitivePeerDependencies: - aws-crt dev: false @@ -6407,7 +6407,7 @@ packages: '@smithy/property-provider': 2.0.3 '@smithy/shared-ini-file-loader': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 transitivePeerDependencies: - aws-crt dev: false @@ -6419,7 +6419,7 @@ packages: '@aws-sdk/types': 3.378.0 '@smithy/property-provider': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@aws-sdk/credential-provider-web-identity@3.387.0: @@ -6429,7 +6429,7 @@ packages: '@aws-sdk/types': 3.387.0 '@smithy/property-provider': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@aws-sdk/middleware-bucket-endpoint@3.387.0: @@ -6441,7 +6441,7 @@ packages: '@smithy/protocol-http': 2.0.3 '@smithy/types': 2.2.0 '@smithy/util-config-provider': 2.0.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@aws-sdk/middleware-expect-continue@3.387.0: @@ -6451,7 +6451,7 @@ packages: '@aws-sdk/types': 3.387.0 '@smithy/protocol-http': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@aws-sdk/middleware-flexible-checksums@3.387.0: @@ -6465,7 +6465,7 @@ packages: '@smithy/protocol-http': 2.0.3 '@smithy/types': 2.2.0 '@smithy/util-utf8': 2.0.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@aws-sdk/middleware-host-header@3.379.1: @@ -6475,7 +6475,7 @@ packages: '@aws-sdk/types': 3.378.0 '@smithy/protocol-http': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@aws-sdk/middleware-host-header@3.387.0: @@ -6485,7 +6485,7 @@ packages: '@aws-sdk/types': 3.387.0 '@smithy/protocol-http': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@aws-sdk/middleware-location-constraint@3.387.0: @@ -6494,7 +6494,7 @@ packages: dependencies: '@aws-sdk/types': 3.387.0 '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@aws-sdk/middleware-logger@3.378.0: @@ -6503,7 +6503,7 @@ packages: dependencies: '@aws-sdk/types': 3.378.0 '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@aws-sdk/middleware-logger@3.387.0: @@ -6512,7 +6512,7 @@ packages: dependencies: '@aws-sdk/types': 3.387.0 '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@aws-sdk/middleware-recursion-detection@3.378.0: @@ -6522,7 +6522,7 @@ packages: '@aws-sdk/types': 3.378.0 '@smithy/protocol-http': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@aws-sdk/middleware-recursion-detection@3.387.0: @@ -6532,7 +6532,7 @@ packages: '@aws-sdk/types': 3.387.0 '@smithy/protocol-http': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@aws-sdk/middleware-sdk-s3@3.387.0: @@ -6543,7 +6543,7 @@ packages: '@aws-sdk/util-arn-parser': 3.310.0 '@smithy/protocol-http': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@aws-sdk/middleware-sdk-sts@3.379.1: @@ -6553,7 +6553,7 @@ packages: '@aws-sdk/middleware-signing': 3.379.1 '@aws-sdk/types': 3.378.0 '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@aws-sdk/middleware-sdk-sts@3.387.0: @@ -6563,7 +6563,7 @@ packages: '@aws-sdk/middleware-signing': 3.387.0 '@aws-sdk/types': 3.387.0 '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@aws-sdk/middleware-signing@3.379.1: @@ -6576,7 +6576,7 @@ packages: '@smithy/signature-v4': 2.0.3 '@smithy/types': 2.2.0 '@smithy/util-middleware': 2.0.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@aws-sdk/middleware-signing@3.387.0: @@ -6589,7 +6589,7 @@ packages: '@smithy/signature-v4': 2.0.3 '@smithy/types': 2.2.0 '@smithy/util-middleware': 2.0.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@aws-sdk/middleware-ssec@3.387.0: @@ -6598,7 +6598,7 @@ packages: dependencies: '@aws-sdk/types': 3.387.0 '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@aws-sdk/middleware-user-agent@3.382.0: @@ -6609,7 +6609,7 @@ packages: '@aws-sdk/util-endpoints': 3.382.0 '@smithy/protocol-http': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@aws-sdk/middleware-user-agent@3.387.0: @@ -6620,7 +6620,7 @@ packages: '@aws-sdk/util-endpoints': 3.387.0 '@smithy/protocol-http': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@aws-sdk/s3-request-presigner@3.388.0: @@ -6652,7 +6652,7 @@ packages: '@smithy/protocol-http': 2.0.3 '@smithy/signature-v4': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@aws-sdk/token-providers@3.382.0: @@ -6664,7 +6664,7 @@ packages: '@smithy/property-provider': 2.0.3 '@smithy/shared-ini-file-loader': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 transitivePeerDependencies: - aws-crt dev: false @@ -6707,7 +6707,7 @@ packages: '@smithy/util-defaults-mode-node': 2.0.3 '@smithy/util-retry': 2.0.0 '@smithy/util-utf8': 2.0.0 - tslib: 2.6.2 + tslib: 2.5.0 transitivePeerDependencies: - aws-crt dev: false @@ -6717,7 +6717,7 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@aws-sdk/types@3.387.0: @@ -6725,14 +6725,14 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@aws-sdk/util-arn-parser@3.310.0: resolution: {integrity: sha512-jL8509owp/xB9+Or0pvn3Fe+b94qfklc2yPowZZIFAkFcCSIdkIglz18cPDWnYAcy9JGewpMS1COXKIUhZkJsA==} engines: {node: '>=14.0.0'} dependencies: - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@aws-sdk/util-endpoints@3.382.0: @@ -6740,7 +6740,7 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@aws-sdk/types': 3.378.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@aws-sdk/util-endpoints@3.387.0: @@ -6748,7 +6748,7 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@aws-sdk/types': 3.387.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@aws-sdk/util-format-url@3.387.0: @@ -6758,14 +6758,14 @@ packages: '@aws-sdk/types': 3.387.0 '@smithy/querystring-builder': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@aws-sdk/util-locate-window@3.310.0: resolution: {integrity: sha512-qo2t/vBTnoXpjKxlsC2e1gBrRm80M3bId27r0BRB2VniSSe7bL1mmzM+/HFtujm0iAxtPM+aLEflLJlJeDPg0w==} engines: {node: '>=14.0.0'} dependencies: - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@aws-sdk/util-user-agent-browser@3.378.0: @@ -6774,7 +6774,7 @@ packages: '@aws-sdk/types': 3.378.0 '@smithy/types': 2.2.0 bowser: 2.11.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@aws-sdk/util-user-agent-browser@3.387.0: @@ -6783,7 +6783,7 @@ packages: '@aws-sdk/types': 3.387.0 '@smithy/types': 2.2.0 bowser: 2.11.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@aws-sdk/util-user-agent-node@3.378.0: @@ -6798,7 +6798,7 @@ packages: '@aws-sdk/types': 3.378.0 '@smithy/node-config-provider': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@aws-sdk/util-user-agent-node@3.387.0: @@ -6813,27 +6813,27 @@ packages: '@aws-sdk/types': 3.387.0 '@smithy/node-config-provider': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@aws-sdk/util-utf8-browser@3.259.0: resolution: {integrity: sha512-UvFa/vR+e19XookZF8RzFZBrw2EUkQWxiBW0yYQAhvk3C+QVGl0H3ouca8LDBlBfQKXwmW3huo/59H8rwb1wJw==} dependencies: - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@aws-sdk/xml-builder@3.310.0: resolution: {integrity: sha512-TqELu4mOuSIKQCqj63fGVs86Yh+vBx5nHRpWKNUNhB2nPTpfbziTs5c1X358be3peVWA4wPxW7Nt53KIg1tnNw==} engines: {node: '>=14.0.0'} dependencies: - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@azure/abort-controller@1.1.0: resolution: {integrity: sha512-TrRLIoSQVzfAJX9H1JeFjzAoDGcoK1IYX1UImfceTZpsyYfWr09Ss1aHW1y5TrrR3iq6RZLBwJ3E24uwPhwahw==} engines: {node: '>=12.0.0'} dependencies: - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@azure/core-auth@1.4.0: @@ -6841,7 +6841,7 @@ packages: engines: {node: '>=12.0.0'} dependencies: '@azure/abort-controller': 1.1.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@azure/core-http@3.0.0: @@ -6858,7 +6858,7 @@ packages: form-data: 4.0.0 node-fetch: 2.7.0 process: 0.11.10 - tslib: 2.6.2 + tslib: 2.5.0 tunnel: 0.0.6 uuid: 8.3.2 xml2js: 0.4.23 @@ -6873,14 +6873,14 @@ packages: '@azure/abort-controller': 1.1.0 '@azure/core-util': 1.3.0 '@azure/logger': 1.0.4 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@azure/core-paging@1.5.0: resolution: {integrity: sha512-zqWdVIt+2Z+3wqxEOGzR5hXFZ8MGKK52x4vFLw8n58pR6ZfKRx3EXYTxTaYxYHc/PexPUTyimcTWFJbji9Z6Iw==} engines: {node: '>=14.0.0'} dependencies: - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@azure/core-tracing@1.0.0-preview.13: @@ -6888,7 +6888,7 @@ packages: engines: {node: '>=12.0.0'} dependencies: '@opentelemetry/api': 1.4.1 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@azure/core-util@1.3.0: @@ -6896,14 +6896,14 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@azure/abort-controller': 1.1.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@azure/logger@1.0.4: resolution: {integrity: sha512-ustrPY8MryhloQj7OWGe+HrYx+aoiOxzbXTtgblbV3xwCqpzUK36phH3XNHQKj3EPonyFUuDTfR3qFhTEAuZEg==} engines: {node: '>=14.0.0'} dependencies: - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@azure/storage-blob@12.13.0: @@ -7035,7 +7035,29 @@ packages: transitivePeerDependencies: - supports-color - /@babel/eslint-parser@7.21.3(@babel/core@7.22.11)(eslint@8.48.0): + /@babel/core@7.23.2: + resolution: {integrity: sha512-n7s51eWdaWZ3vGT2tD4T7J6eJs3QoBXydv7vkUM06Bf1cbVD2Kc2UrkzhiQwobfV7NwOnQXYL7UBJ5VPU+RGoQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@ampproject/remapping': 2.2.1 + '@babel/code-frame': 7.22.13 + '@babel/generator': 7.23.0 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.2) + '@babel/helpers': 7.23.2 + '@babel/parser': 7.23.0 + '@babel/template': 7.22.15 + '@babel/traverse': 7.23.2 + '@babel/types': 7.23.0 + convert-source-map: 2.0.0 + debug: 4.3.4(supports-color@8.1.1) + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + /@babel/eslint-parser@7.21.3(@babel/core@7.22.11)(eslint@8.51.0): resolution: {integrity: sha512-kfhmPimwo6k4P8zxNs8+T7yR44q1LdpsZdE1NkCsVlfiuTPRfnGgjaF8Qgug9q9Pou17u6wneYF0lDCZJATMFg==} engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0} peerDependencies: @@ -7044,7 +7066,7 @@ packages: dependencies: '@babel/core': 7.22.11 '@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1 - eslint: 8.48.0 + eslint: 8.51.0 eslint-visitor-keys: 2.1.0 semver: 6.3.1 @@ -7066,6 +7088,15 @@ packages: '@jridgewell/trace-mapping': 0.3.19 jsesc: 2.5.2 + /@babel/generator@7.23.0: + resolution: {integrity: sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.23.0 + '@jridgewell/gen-mapping': 0.3.3 + '@jridgewell/trace-mapping': 0.3.19 + jsesc: 2.5.2 + /@babel/helper-annotate-as-pure@7.18.6: resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==} engines: {node: '>=6.9.0'} @@ -7136,6 +7167,23 @@ packages: '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 + /@babel/helper-create-class-features-plugin@7.21.4(@babel/core@7.23.2): + resolution: {integrity: sha512-46QrX2CQlaFRF4TkwfTt6nJD7IHq8539cCL7SDpqWSDeJKY1xylKKY5F/33mJhLZ3mFvKv2gGrVS6NkyF6qs+Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.22.5 + '@babel/helper-member-expression-to-functions': 7.22.15 + '@babel/helper-optimise-call-expression': 7.22.5 + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.2) + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + dev: true + /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.20.12): resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==} engines: {node: '>=6.9.0'} @@ -7189,6 +7237,24 @@ packages: '@babel/helper-split-export-declaration': 7.22.6 semver: 6.3.1 + /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.23.2): + resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.22.5 + '@babel/helper-member-expression-to-functions': 7.22.15 + '@babel/helper-optimise-call-expression': 7.22.5 + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.2) + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + semver: 6.3.1 + dev: true + /@babel/helper-create-regexp-features-plugin@7.21.4(@babel/core@7.20.12): resolution: {integrity: sha512-M00OuhU+0GyZ5iBBN9czjugzWrEq2vDpf/zCYHxxf93ul/Q5rv+a5h+/+0WnI1AebHNVtl5bFV0qsJoH23DbfA==} engines: {node: '>=6.9.0'} @@ -7200,13 +7266,13 @@ packages: regexpu-core: 5.3.2 dev: true - /@babel/helper-create-regexp-features-plugin@7.21.4(@babel/core@7.22.11): + /@babel/helper-create-regexp-features-plugin@7.21.4(@babel/core@7.23.2): resolution: {integrity: sha512-M00OuhU+0GyZ5iBBN9czjugzWrEq2vDpf/zCYHxxf93ul/Q5rv+a5h+/+0WnI1AebHNVtl5bFV0qsJoH23DbfA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@babel/helper-annotate-as-pure': 7.22.5 regexpu-core: 5.3.2 dev: true @@ -7234,6 +7300,18 @@ packages: regexpu-core: 5.3.2 semver: 6.3.1 + /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.23.2): + resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-annotate-as-pure': 7.22.5 + regexpu-core: 5.3.2 + semver: 6.3.1 + dev: true + /@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.20.12): resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==} peerDependencies: @@ -7265,6 +7343,21 @@ packages: transitivePeerDependencies: - supports-color + /@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.23.2): + resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==} + peerDependencies: + '@babel/core': ^7.4.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-plugin-utils': 7.22.5 + debug: 4.3.4(supports-color@8.1.1) + lodash.debounce: 4.0.8 + resolve: 1.22.2 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + /@babel/helper-define-polyfill-provider@0.4.2(@babel/core@7.22.11): resolution: {integrity: sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw==} peerDependencies: @@ -7279,6 +7372,21 @@ packages: transitivePeerDependencies: - supports-color + /@babel/helper-define-polyfill-provider@0.4.2(@babel/core@7.23.2): + resolution: {integrity: sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-plugin-utils': 7.22.5 + debug: 4.3.4(supports-color@8.1.1) + lodash.debounce: 4.0.8 + resolve: 1.22.2 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/helper-environment-visitor@7.22.20: resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==} engines: {node: '>=6.9.0'} @@ -7297,6 +7405,13 @@ packages: '@babel/template': 7.22.15 '@babel/types': 7.22.19 + /@babel/helper-function-name@7.23.0: + resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/template': 7.22.15 + '@babel/types': 7.23.0 + /@babel/helper-hoist-variables@7.22.5: resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} engines: {node: '>=6.9.0'} @@ -7375,6 +7490,33 @@ packages: '@babel/helper-split-export-declaration': 7.22.6 '@babel/helper-validator-identifier': 7.22.20 + /@babel/helper-module-transforms@7.22.20(@babel/core@7.23.2): + resolution: {integrity: sha512-dLT7JVWIUUxKOs1UnJUBR3S70YK+pKX6AbJgB2vMIvEkZkrfJDbYDJesnPshtKV4LhDOR3Oc5YULeDizRek+5A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-module-imports': 7.22.15 + '@babel/helper-simple-access': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + '@babel/helper-validator-identifier': 7.22.20 + dev: true + + /@babel/helper-module-transforms@7.23.0(@babel/core@7.23.2): + resolution: {integrity: sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-module-imports': 7.22.15 + '@babel/helper-simple-access': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + '@babel/helper-validator-identifier': 7.22.20 + /@babel/helper-optimise-call-expression@7.18.6: resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==} engines: {node: '>=6.9.0'} @@ -7409,13 +7551,13 @@ packages: '@babel/types': 7.22.19 dev: true - /@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.22.11): + /@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.23.2): resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-wrap-function': 7.22.20 @@ -7445,6 +7587,18 @@ packages: '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-wrap-function': 7.22.20 + /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.23.2): + resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-wrap-function': 7.22.20 + dev: true + /@babel/helper-replace-supers@7.20.7: resolution: {integrity: sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==} engines: {node: '>=6.9.0'} @@ -7494,6 +7648,18 @@ packages: '@babel/helper-member-expression-to-functions': 7.22.15 '@babel/helper-optimise-call-expression': 7.22.5 + /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.2): + resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-member-expression-to-functions': 7.22.15 + '@babel/helper-optimise-call-expression': 7.22.5 + dev: true + /@babel/helper-simple-access@7.22.5: resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} engines: {node: '>=6.9.0'} @@ -7554,6 +7720,16 @@ packages: transitivePeerDependencies: - supports-color + /@babel/helpers@7.23.2: + resolution: {integrity: sha512-lzchcp8SjTSVe/fPmLwtWVBFC7+Tbn8LGHDVfDp9JGxpAY5opSaEFgt8UQvrnECWOTdji2mOWMz1rOhkHscmGQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/template': 7.22.15 + '@babel/traverse': 7.23.2 + '@babel/types': 7.23.0 + transitivePeerDependencies: + - supports-color + /@babel/highlight@7.22.13: resolution: {integrity: sha512-C/BaXcnnvBCmHTpz/VGZ8jgtE2aYlW4hxDhseJAWZb7gqGM/qtCK6iZUb0TyKFf7BOUsBH7Q7fkRsDRhg1XklQ==} engines: {node: '>=6.9.0'} @@ -7569,13 +7745,20 @@ packages: dependencies: '@babel/types': 7.22.19 - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.22.11): + /@babel/parser@7.23.0: + resolution: {integrity: sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==} + engines: {node: '>=6.0.0'} + hasBin: true + dependencies: + '@babel/types': 7.23.0 + + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.23.2): resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -7598,16 +7781,26 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7(@babel/core@7.22.11): + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.15(@babel/core@7.23.2): + resolution: {integrity: sha512-FB9iYlz7rURmRJyXRKEnalYPPdn87H5no108cyuQQyMwlpJ2SJtpIUBI27kdTin956pz+LPypkPVPUTlxOmrsg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7(@babel/core@7.23.2): resolution: {integrity: sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.13.0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.11) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.23.2) dev: true /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.15(@babel/core@7.20.12): @@ -7633,6 +7826,18 @@ packages: '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/plugin-transform-optional-chaining': 7.22.15(@babel/core@7.22.11) + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.15(@babel/core@7.23.2): + resolution: {integrity: sha512-Hyph9LseGvAeeXzikV88bczhsrLrIZqDPxO+sSmAunMPaGrBGhfMWzCPYTtiW9t+HzSE2wtV8e5cc5P6r1xMDQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.13.0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/plugin-transform-optional-chaining': 7.22.15(@babel/core@7.23.2) + dev: true + /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.20.12): resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} engines: {node: '>=6.9.0'} @@ -7646,17 +7851,17 @@ packages: '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.20.12) dev: true - /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.22.11): + /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.23.2): resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.22.11) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.11) + '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.23.2) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.2) dev: true /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.20.12): @@ -7680,6 +7885,17 @@ packages: '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.22.11) '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.23.2): + 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.23.2 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2) + '@babel/helper-plugin-utils': 7.22.5 + dev: true + /@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.20.12): resolution: {integrity: sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==} engines: {node: '>=6.9.0'} @@ -7692,16 +7908,16 @@ packages: '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.20.12) dev: true - /@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.22.11): + /@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.23.2): resolution: {integrity: sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 dependencies: - '@babel/core': 7.22.11 - '@babel/helper-create-class-features-plugin': 7.21.4(@babel/core@7.22.11) + '@babel/core': 7.23.2 + '@babel/helper-create-class-features-plugin': 7.21.4(@babel/core@7.23.2) '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.11) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.2) dev: true /@babel/plugin-proposal-decorators@7.21.0(@babel/core@7.22.11): @@ -7728,15 +7944,15 @@ packages: '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.20.12) dev: true - /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.22.11): + /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.23.2): resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.11) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.2) dev: true /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.20.12): @@ -7750,15 +7966,15 @@ packages: '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.20.12) dev: true - /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.22.11): + /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.23.2): resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.11) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.2) dev: true /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.20.12): @@ -7772,15 +7988,15 @@ packages: '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.20.12) dev: true - /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.22.11): + /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.23.2): resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.11) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.2) dev: true /@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.20.12): @@ -7794,15 +8010,15 @@ packages: '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.20.12) dev: true - /@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.22.11): + /@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.23.2): resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.11) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.2) dev: true /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.20.12): @@ -7826,6 +8042,17 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.11) + /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.23.2): + resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.2) + dev: true + /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.20.12): resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} engines: {node: '>=6.9.0'} @@ -7847,6 +8074,17 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.11) + /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.23.2): + resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.2) + dev: true + /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.20.12): resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} engines: {node: '>=6.9.0'} @@ -7861,18 +8099,18 @@ packages: '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.20.12) dev: true - /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.22.11): + /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.23.2): resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/compat-data': 7.22.20 - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.11) - '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.22.11) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.23.2) dev: true /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.20.12): @@ -7886,15 +8124,15 @@ packages: '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.20.12) dev: true - /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.22.11): + /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.23.2): resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.11) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.2) dev: true /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.20.12): @@ -7920,6 +8158,17 @@ packages: '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.11) + /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.23.2): + resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.2) + /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.20.12): resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} engines: {node: '>=6.9.0'} @@ -7941,6 +8190,17 @@ packages: '@babel/helper-create-class-features-plugin': 7.21.4(@babel/core@7.22.11) '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.23.2): + resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-create-class-features-plugin': 7.21.4(@babel/core@7.23.2) + '@babel/helper-plugin-utils': 7.22.5 + dev: true + /@babel/plugin-proposal-private-property-in-object@7.21.0(@babel/core@7.20.12): resolution: {integrity: sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==} engines: {node: '>=6.9.0'} @@ -7966,6 +8226,19 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.11) + /@babel/plugin-proposal-private-property-in-object@7.21.0(@babel/core@7.23.2): + resolution: {integrity: sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-create-class-features-plugin': 7.21.4(@babel/core@7.23.2) + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.2) + dev: true + /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.22.11): resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} engines: {node: '>=6.9.0'} @@ -7974,6 +8247,15 @@ packages: dependencies: '@babel/core': 7.22.11 + /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.2): + resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + dev: true + /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.20.12): resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} engines: {node: '>=4'} @@ -7985,14 +8267,14 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.22.11): + /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.23.2): resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} engines: {node: '>=4'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 - '@babel/helper-create-regexp-features-plugin': 7.21.4(@babel/core@7.22.11) + '@babel/core': 7.23.2 + '@babel/helper-create-regexp-features-plugin': 7.21.4(@babel/core@7.23.2) '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -8021,6 +8303,15 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.2): + resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.21.4): resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} peerDependencies: @@ -8062,6 +8353,15 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.2): + resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.20.12): resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} engines: {node: '>=6.9.0'} @@ -8081,6 +8381,16 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.2): + resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + /@babel/plugin-syntax-decorators@7.21.0(@babel/core@7.22.11): resolution: {integrity: sha512-tIoPpGBR8UuM4++ccWN3gifhVvQu7ZizuR1fklhRJrd5ewgbkUS+0KVFeWWxELtn18NTLoW32XV7zyOgIAiz+w==} engines: {node: '>=6.9.0'} @@ -8107,6 +8417,15 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.2): + resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.20.12): resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: @@ -8124,6 +8443,15 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.2): + resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + /@babel/plugin-syntax-flow@7.22.5(@babel/core@7.22.11): resolution: {integrity: sha512-9RdCl0i+q0QExayk2nOS7853w08yLucnnPML6EN9S8fgMPVtdLDCdx/cOQ/i44Lb9UeQX9A35yaqBBOMMZxPxQ==} engines: {node: '>=6.9.0'} @@ -8133,13 +8461,22 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-import-assertions@7.20.0(@babel/core@7.22.11): + /@babel/plugin-syntax-flow@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-9RdCl0i+q0QExayk2nOS7853w08yLucnnPML6EN9S8fgMPVtdLDCdx/cOQ/i44Lb9UeQX9A35yaqBBOMMZxPxQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + + /@babel/plugin-syntax-import-assertions@7.20.0(@babel/core@7.23.2): resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -8162,6 +8499,16 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + /@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.22.11): resolution: {integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==} engines: {node: '>=6.9.0'} @@ -8171,6 +8518,16 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.21.4): resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: @@ -8187,6 +8544,15 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.2): + resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.20.12): resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: @@ -8212,6 +8578,15 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.2): + resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.21.4): resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==} engines: {node: '>=6.9.0'} @@ -8231,6 +8606,15 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.20.12): resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: @@ -8256,6 +8640,15 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.2): + resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.20.12): resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: @@ -8281,6 +8674,15 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.2): + resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.20.12): resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: @@ -8306,6 +8708,15 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.2): + resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.20.12): resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: @@ -8331,6 +8742,15 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.2): + resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.20.12): resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: @@ -8356,6 +8776,15 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.2): + resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.20.12): resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: @@ -8381,6 +8810,14 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.2): + resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.20.12): resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} engines: {node: '>=6.9.0'} @@ -8400,6 +8837,16 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.2): + resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.20.12): resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} @@ -8428,6 +8875,16 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.2): + resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + /@babel/plugin-syntax-typescript@7.21.4(@babel/core@7.21.4): resolution: {integrity: sha512-xz0D39NvhQn4t4RNsHmDnnsaQizIlUkdtYvLs8La1BlfjQ6JEwxkJGeqJMW2tAXx+q6H+WFuUTXNdYVpEya0YA==} engines: {node: '>=6.9.0'} @@ -8447,6 +8904,16 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-syntax-typescript@7.21.4(@babel/core@7.23.2): + resolution: {integrity: sha512-xz0D39NvhQn4t4RNsHmDnnsaQizIlUkdtYvLs8La1BlfjQ6JEwxkJGeqJMW2tAXx+q6H+WFuUTXNdYVpEya0YA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.22.11): resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} engines: {node: '>=6.9.0'} @@ -8457,13 +8924,24 @@ packages: '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.22.11) '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-arrow-functions@7.20.7(@babel/core@7.22.11): + /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.2): + resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2) + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-arrow-functions@7.20.7(@babel/core@7.23.2): resolution: {integrity: sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -8486,6 +8964,16 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + /@babel/plugin-transform-async-generator-functions@7.22.15(@babel/core@7.22.11): resolution: {integrity: sha512-jBm1Es25Y+tVoTi5rfd5t1KLmL8ogLKpXszboWOTTtGFGz2RKnQe2yn7HbZ+kb/B8N0FVSGQo874NSlOU1T4+w==} engines: {node: '>=6.9.0'} @@ -8498,6 +8986,19 @@ packages: '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.22.11) '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.11) + /@babel/plugin-transform-async-generator-functions@7.22.15(@babel/core@7.23.2): + resolution: {integrity: sha512-jBm1Es25Y+tVoTi5rfd5t1KLmL8ogLKpXszboWOTTtGFGz2RKnQe2yn7HbZ+kb/B8N0FVSGQo874NSlOU1T4+w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.2) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.2) + dev: true + /@babel/plugin-transform-async-to-generator@7.20.7(@babel/core@7.20.12): resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==} engines: {node: '>=6.9.0'} @@ -8510,16 +9011,16 @@ packages: '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.20.12) dev: true - /@babel/plugin-transform-async-to-generator@7.20.7(@babel/core@7.22.11): + /@babel/plugin-transform-async-to-generator@7.20.7(@babel/core@7.23.2): resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.22.11) + '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.23.2) dev: true /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.20.12): @@ -8545,13 +9046,25 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.22.11) - /@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.22.11): + /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-module-imports': 7.22.15 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.2) + dev: true + + /@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.23.2): resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -8574,13 +9087,23 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-block-scoping@7.21.0(@babel/core@7.22.11): + /@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-block-scoping@7.21.0(@babel/core@7.23.2): resolution: {integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -8603,6 +9126,16 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-transform-block-scoping@7.22.15(@babel/core@7.23.2): + resolution: {integrity: sha512-G1czpdJBZCtngoK1sJgloLiOHUnkb/bLZwqVZD8kXmq0ZnVfTTWUcs9OWtp0mBtYJ+4LQY1fllqBkOIPhXmFmw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + /@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.22.11): resolution: {integrity: sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==} engines: {node: '>=6.9.0'} @@ -8613,6 +9146,17 @@ packages: '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.22.11) '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2) + '@babel/helper-plugin-utils': 7.22.5 + dev: true + /@babel/plugin-transform-class-static-block@7.22.11(@babel/core@7.22.11): resolution: {integrity: sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g==} engines: {node: '>=6.9.0'} @@ -8624,13 +9168,25 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.11) - /@babel/plugin-transform-classes@7.21.0(@babel/core@7.22.11): + /@babel/plugin-transform-class-static-block@7.22.11(@babel/core@7.23.2): + resolution: {integrity: sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.12.0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2) + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.2) + dev: true + + /@babel/plugin-transform-classes@7.21.0(@babel/core@7.23.2): resolution: {integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-environment-visitor': 7.22.20 @@ -8679,13 +9235,31 @@ packages: '@babel/helper-split-export-declaration': 7.22.6 globals: 11.12.0 - /@babel/plugin-transform-computed-properties@7.20.7(@babel/core@7.22.11): + /@babel/plugin-transform-classes@7.22.15(@babel/core@7.23.2): + resolution: {integrity: sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.22.5 + '@babel/helper-optimise-call-expression': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.2) + '@babel/helper-split-export-declaration': 7.22.6 + globals: 11.12.0 + dev: true + + /@babel/plugin-transform-computed-properties@7.20.7(@babel/core@7.23.2): resolution: {integrity: sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 '@babel/template': 7.22.15 dev: true @@ -8711,13 +9285,24 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/template': 7.22.15 - /@babel/plugin-transform-destructuring@7.21.3(@babel/core@7.22.11): + /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/template': 7.22.15 + dev: true + + /@babel/plugin-transform-destructuring@7.21.3(@babel/core@7.23.2): resolution: {integrity: sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -8740,6 +9325,16 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-transform-destructuring@7.22.15(@babel/core@7.23.2): + resolution: {integrity: sha512-HzG8sFl1ZVGTme74Nw+X01XsUTqERVQ6/RLHo3XjGRzm7XD6QTtfS3NJotVgCGy8BzkDqRjRBD8dAyJn5TuvSQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + /@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.20.12): resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} engines: {node: '>=6.9.0'} @@ -8751,14 +9346,14 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.22.11): + /@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.23.2): resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 - '@babel/helper-create-regexp-features-plugin': 7.21.4(@babel/core@7.22.11) + '@babel/core': 7.23.2 + '@babel/helper-create-regexp-features-plugin': 7.21.4(@babel/core@7.23.2) '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -8783,13 +9378,24 @@ packages: '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.22.11) '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.22.11): + /@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2) + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.23.2): resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -8812,6 +9418,16 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + /@babel/plugin-transform-dynamic-import@7.22.11(@babel/core@7.22.11): resolution: {integrity: sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA==} engines: {node: '>=6.9.0'} @@ -8822,13 +9438,24 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.11) - /@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.22.11): + /@babel/plugin-transform-dynamic-import@7.22.11(@babel/core@7.23.2): + resolution: {integrity: sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.2) + dev: true + + /@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.23.2): resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -8854,6 +9481,17 @@ packages: '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + /@babel/plugin-transform-export-namespace-from@7.22.11(@babel/core@7.22.11): resolution: {integrity: sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw==} engines: {node: '>=6.9.0'} @@ -8864,6 +9502,17 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.11) + /@babel/plugin-transform-export-namespace-from@7.22.11(@babel/core@7.23.2): + resolution: {integrity: sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.2) + dev: true + /@babel/plugin-transform-flow-strip-types@7.22.5(@babel/core@7.22.11): resolution: {integrity: sha512-tujNbZdxdG0/54g/oua8ISToaXTFBf8EnSb5PgQSciIXWOWKX3S4+JR7ZE9ol8FZwf9kxitzkGQ+QWeov/mCiA==} engines: {node: '>=6.9.0'} @@ -8874,13 +9523,24 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.22.11) - /@babel/plugin-transform-for-of@7.21.0(@babel/core@7.22.11): + /@babel/plugin-transform-flow-strip-types@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-tujNbZdxdG0/54g/oua8ISToaXTFBf8EnSb5PgQSciIXWOWKX3S4+JR7ZE9ol8FZwf9kxitzkGQ+QWeov/mCiA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.23.2) + dev: true + + /@babel/plugin-transform-for-of@7.21.0(@babel/core@7.23.2): resolution: {integrity: sha512-LlUYlydgDkKpIY7mcBWvyPPmMcOphEyYA27Ef4xpbh1IiDNLr0kZsos2nf92vz3IccvJI25QUwp86Eo5s6HmBQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -8903,13 +9563,23 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-function-name@7.18.9(@babel/core@7.22.11): + /@babel/plugin-transform-for-of@7.22.15(@babel/core@7.23.2): + resolution: {integrity: sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-function-name@7.18.9(@babel/core@7.23.2): resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-function-name': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -8938,6 +9608,18 @@ packages: '@babel/helper-function-name': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-transform-function-name@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-function-name': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + /@babel/plugin-transform-json-strings@7.22.11(@babel/core@7.22.11): resolution: {integrity: sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw==} engines: {node: '>=6.9.0'} @@ -8948,13 +9630,24 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.11) - /@babel/plugin-transform-literals@7.18.9(@babel/core@7.22.11): + /@babel/plugin-transform-json-strings@7.22.11(@babel/core@7.23.2): + resolution: {integrity: sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.2) + dev: true + + /@babel/plugin-transform-literals@7.18.9(@babel/core@7.23.2): resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -8977,6 +9670,16 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-transform-literals@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + /@babel/plugin-transform-logical-assignment-operators@7.22.11(@babel/core@7.22.11): resolution: {integrity: sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ==} engines: {node: '>=6.9.0'} @@ -8987,13 +9690,24 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.11) - /@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.22.11): + /@babel/plugin-transform-logical-assignment-operators@7.22.11(@babel/core@7.23.2): + resolution: {integrity: sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.2) + dev: true + + /@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.23.2): resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -9016,14 +9730,24 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-modules-amd@7.20.11(@babel/core@7.22.11): + /@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-modules-amd@7.20.11(@babel/core@7.23.2): resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 - '@babel/helper-module-transforms': 7.22.20(@babel/core@7.22.11) + '@babel/core': 7.23.2 + '@babel/helper-module-transforms': 7.22.20(@babel/core@7.23.2) '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -9048,14 +9772,25 @@ packages: '@babel/helper-module-transforms': 7.22.20(@babel/core@7.22.11) '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-modules-commonjs@7.21.2(@babel/core@7.22.11): + /@babel/plugin-transform-modules-amd@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-module-transforms': 7.22.20(@babel/core@7.23.2) + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-modules-commonjs@7.21.2(@babel/core@7.23.2): resolution: {integrity: sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 - '@babel/helper-module-transforms': 7.22.20(@babel/core@7.22.11) + '@babel/core': 7.23.2 + '@babel/helper-module-transforms': 7.22.20(@babel/core@7.23.2) '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-simple-access': 7.22.5 dev: true @@ -9083,15 +9818,27 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-simple-access': 7.22.5 - /@babel/plugin-transform-modules-systemjs@7.20.11(@babel/core@7.22.11): + /@babel/plugin-transform-modules-commonjs@7.22.15(@babel/core@7.23.2): + resolution: {integrity: sha512-jWL4eh90w0HQOTKP2MoXXUpVxilxsB2Vl4ji69rSjS3EcZ/v4sBmn+A3NpepuJzBhOaEBbR7udonlHHn5DWidg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-module-transforms': 7.22.20(@babel/core@7.23.2) + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-simple-access': 7.22.5 + dev: true + + /@babel/plugin-transform-modules-systemjs@7.20.11(@babel/core@7.23.2): resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-module-transforms': 7.22.20(@babel/core@7.22.11) + '@babel/helper-module-transforms': 7.22.20(@babel/core@7.23.2) '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-identifier': 7.22.20 dev: true @@ -9121,14 +9868,27 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-identifier': 7.22.20 - /@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.22.11): + /@babel/plugin-transform-modules-systemjs@7.22.11(@babel/core@7.23.2): + resolution: {integrity: sha512-rIqHmHoMEOhI3VkVf5jQ15l539KrwhzqcBO6wdCNWPWc/JWt9ILNYNUssbRpeq0qWns8svuw8LnMNCvWBIJ8wA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-hoist-variables': 7.22.5 + '@babel/helper-module-transforms': 7.22.20(@babel/core@7.23.2) + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-validator-identifier': 7.22.20 + dev: true + + /@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.23.2): resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 - '@babel/helper-module-transforms': 7.22.20(@babel/core@7.22.11) + '@babel/core': 7.23.2 + '@babel/helper-module-transforms': 7.22.20(@babel/core@7.23.2) '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -9153,14 +9913,25 @@ packages: '@babel/helper-module-transforms': 7.22.20(@babel/core@7.22.11) '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-named-capturing-groups-regex@7.20.5(@babel/core@7.22.11): + /@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-module-transforms': 7.22.20(@babel/core@7.23.2) + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-named-capturing-groups-regex@7.20.5(@babel/core@7.23.2): resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.11 - '@babel/helper-create-regexp-features-plugin': 7.21.4(@babel/core@7.22.11) + '@babel/core': 7.23.2 + '@babel/helper-create-regexp-features-plugin': 7.21.4(@babel/core@7.23.2) '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -9185,13 +9956,24 @@ packages: '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.22.11) '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-new-target@7.18.6(@babel/core@7.22.11): + /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2) + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-new-target@7.18.6(@babel/core@7.23.2): 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.22.11 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -9214,6 +9996,16 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-transform-new-target@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + /@babel/plugin-transform-nullish-coalescing-operator@7.22.11(@babel/core@7.22.11): resolution: {integrity: sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg==} engines: {node: '>=6.9.0'} @@ -9224,6 +10016,17 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.11) + /@babel/plugin-transform-nullish-coalescing-operator@7.22.11(@babel/core@7.23.2): + resolution: {integrity: sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.2) + dev: true + /@babel/plugin-transform-numeric-separator@7.22.11(@babel/core@7.22.11): resolution: {integrity: sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg==} engines: {node: '>=6.9.0'} @@ -9234,6 +10037,17 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.11) + /@babel/plugin-transform-numeric-separator@7.22.11(@babel/core@7.23.2): + resolution: {integrity: sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.2) + dev: true + /@babel/plugin-transform-object-rest-spread@7.22.15(@babel/core@7.22.11): resolution: {integrity: sha512-fEB+I1+gAmfAyxZcX1+ZUwLeAuuf8VIg67CTznZE0MqVFumWkh8xWtn58I4dxdVf080wn7gzWoF8vndOViJe9Q==} engines: {node: '>=6.9.0'} @@ -9247,13 +10061,27 @@ packages: '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.11) '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.22.11) - /@babel/plugin-transform-object-super@7.18.6(@babel/core@7.22.11): + /@babel/plugin-transform-object-rest-spread@7.22.15(@babel/core@7.23.2): + resolution: {integrity: sha512-fEB+I1+gAmfAyxZcX1+ZUwLeAuuf8VIg67CTznZE0MqVFumWkh8xWtn58I4dxdVf080wn7gzWoF8vndOViJe9Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.22.20 + '@babel/core': 7.23.2 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.23.2) + dev: true + + /@babel/plugin-transform-object-super@7.18.6(@babel/core@7.23.2): resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-replace-supers': 7.20.7 transitivePeerDependencies: @@ -9281,6 +10109,17 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-replace-supers': 7.22.20(@babel/core@7.22.11) + /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.2) + dev: true + /@babel/plugin-transform-optional-catch-binding@7.22.11(@babel/core@7.22.11): resolution: {integrity: sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ==} engines: {node: '>=6.9.0'} @@ -9291,6 +10130,17 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.11) + /@babel/plugin-transform-optional-catch-binding@7.22.11(@babel/core@7.23.2): + resolution: {integrity: sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.2) + dev: true + /@babel/plugin-transform-optional-chaining@7.22.15(@babel/core@7.20.12): resolution: {integrity: sha512-ngQ2tBhq5vvSJw2Q2Z9i7ealNkpDMU0rGWnHPKqRZO0tzZ5tlaoz4hDvhXioOoaE0X2vfNss1djwg0DXlfu30A==} engines: {node: '>=6.9.0'} @@ -9314,6 +10164,18 @@ packages: '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.11) + /@babel/plugin-transform-optional-chaining@7.22.15(@babel/core@7.23.2): + resolution: {integrity: sha512-ngQ2tBhq5vvSJw2Q2Z9i7ealNkpDMU0rGWnHPKqRZO0tzZ5tlaoz4hDvhXioOoaE0X2vfNss1djwg0DXlfu30A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.2) + dev: true + /@babel/plugin-transform-parameters@7.21.3(@babel/core@7.20.12): resolution: {integrity: sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==} engines: {node: '>=6.9.0'} @@ -9324,13 +10186,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-parameters@7.21.3(@babel/core@7.22.11): + /@babel/plugin-transform-parameters@7.21.3(@babel/core@7.23.2): resolution: {integrity: sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -9353,6 +10215,16 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-transform-parameters@7.22.15(@babel/core@7.23.2): + resolution: {integrity: sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + /@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.22.11): resolution: {integrity: sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==} engines: {node: '>=6.9.0'} @@ -9363,6 +10235,17 @@ packages: '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.22.11) '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2) + '@babel/helper-plugin-utils': 7.22.5 + dev: true + /@babel/plugin-transform-private-property-in-object@7.22.11(@babel/core@7.22.11): resolution: {integrity: sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ==} engines: {node: '>=6.9.0'} @@ -9375,13 +10258,26 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.11) - /@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.22.11): + /@babel/plugin-transform-private-property-in-object@7.22.11(@babel/core@7.23.2): + resolution: {integrity: sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2) + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.2) + dev: true + + /@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.23.2): resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -9404,6 +10300,16 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + /@babel/plugin-transform-react-constant-elements@7.21.3(@babel/core@7.22.11): resolution: {integrity: sha512-4DVcFeWe/yDYBLp0kBmOGFJ6N2UYg7coGid1gdxb4co62dy/xISDMaYBXBVXEDhfgMk7qkbcYiGtwd5Q/hwDDQ==} engines: {node: '>=6.9.0'} @@ -9413,13 +10319,13 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-react-display-name@7.18.6(@babel/core@7.22.11): + /@babel/plugin-transform-react-display-name@7.18.6(@babel/core@7.23.2): resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-react-display-name@7.22.5(@babel/core@7.22.11): @@ -9431,14 +10337,24 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-react-jsx-development@7.18.6(@babel/core@7.22.11): + /@babel/plugin-transform-react-display-name@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-react-jsx-development@7.18.6(@babel/core@7.23.2): resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 - '@babel/plugin-transform-react-jsx': 7.21.0(@babel/core@7.22.11) + '@babel/core': 7.23.2 + '@babel/plugin-transform-react-jsx': 7.21.0(@babel/core@7.23.2) dev: true /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.22.11): @@ -9450,17 +10366,27 @@ packages: '@babel/core': 7.22.11 '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.22.11) - /@babel/plugin-transform-react-jsx@7.21.0(@babel/core@7.22.11): + /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.2) + dev: true + + /@babel/plugin-transform-react-jsx@7.21.0(@babel/core@7.23.2): resolution: {integrity: sha512-6OAWljMvQrZjR2DaNhVfRz6dkCAVV+ymcLUmaf8bccGOHn2v5rHJK3tTpij0BuhdYWP4LLaqj5lwcdlpAAPuvg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.11) + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.2) '@babel/types': 7.22.19 dev: true @@ -9477,13 +10403,26 @@ packages: '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.11) '@babel/types': 7.22.19 - /@babel/plugin-transform-react-pure-annotations@7.18.6(@babel/core@7.22.11): + /@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.23.2): + resolution: {integrity: sha512-oKckg2eZFa8771O/5vi7XeTvmM6+O9cxZu+kanTU7tD4sin5nO/G8jGJhq8Hvt2Z0kUoEDRayuZLaUlYl8QuGA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-module-imports': 7.22.15 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.2) + '@babel/types': 7.22.19 + + /@babel/plugin-transform-react-pure-annotations@7.18.6(@babel/core@7.23.2): resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -9498,13 +10437,24 @@ packages: '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-regenerator@7.20.5(@babel/core@7.22.11): + /@babel/plugin-transform-react-pure-annotations@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-gP4k85wx09q+brArVinTXhWiyzLl9UpmGva0+mWyKxk6JZequ05x3eUcIUE+FyttPKJFRRVtAvQaJ6YF9h1ZpA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-regenerator@7.20.5(@babel/core@7.23.2): resolution: {integrity: sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 regenerator-transform: 0.15.1 dev: true @@ -9530,13 +10480,24 @@ packages: '@babel/helper-plugin-utils': 7.22.5 regenerator-transform: 0.15.2 - /@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.22.11): + /@babel/plugin-transform-regenerator@7.22.10(@babel/core@7.23.2): + resolution: {integrity: sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + regenerator-transform: 0.15.2 + dev: true + + /@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.23.2): resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -9559,6 +10520,16 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + /@babel/plugin-transform-runtime@7.19.6(@babel/core@7.20.12): resolution: {integrity: sha512-PRH37lz4JU156lYFW1p8OxE5i7d6Sl/zV58ooyr+q1J1lnQPyg5tIiXlIwNVhJaY4W3TmOtdc8jqdXQcB1v5Yw==} engines: {node: '>=6.9.0'} @@ -9592,13 +10563,29 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.22.11): + /@babel/plugin-transform-runtime@7.21.4(@babel/core@7.23.2): + resolution: {integrity: sha512-1J4dhrw1h1PqnNNpzwxQ2UBymJUF8KuPjAAnlLwZcGhHAIqUigFW7cdK6GHoB64ubY4qXQNYknoUeks4Wz7CUA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-module-imports': 7.22.15 + '@babel/helper-plugin-utils': 7.22.5 + babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.23.2) + babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.23.2) + babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.23.2) + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + /@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.23.2): resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -9621,13 +10608,23 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-spread@7.20.7(@babel/core@7.22.11): + /@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-spread@7.20.7(@babel/core@7.23.2): resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 dev: true @@ -9653,13 +10650,24 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - /@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.22.11): + /@babel/plugin-transform-spread@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + dev: true + + /@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.23.2): resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -9682,13 +10690,23 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.22.11): + /@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.23.2): resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -9711,13 +10729,23 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.22.11): + /@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.23.2): resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -9740,6 +10768,16 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + /@babel/plugin-transform-typescript@7.21.3(@babel/core@7.21.4): resolution: {integrity: sha512-RQxPz6Iqt8T0uw/WsJNReuBpWpBqs/n7mNo18sKLoTbMp+UrEekhH+pKSVC7gWz+DNjo9gryfV8YzCiT45RgMw==} engines: {node: '>=6.9.0'} @@ -9765,13 +10803,26 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-typescript': 7.21.4(@babel/core@7.22.11) - /@babel/plugin-transform-unicode-escapes@7.18.10(@babel/core@7.22.11): + /@babel/plugin-transform-typescript@7.21.3(@babel/core@7.23.2): + resolution: {integrity: sha512-RQxPz6Iqt8T0uw/WsJNReuBpWpBqs/n7mNo18sKLoTbMp+UrEekhH+pKSVC7gWz+DNjo9gryfV8YzCiT45RgMw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2) + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-typescript': 7.21.4(@babel/core@7.23.2) + dev: true + + /@babel/plugin-transform-unicode-escapes@7.18.10(@babel/core@7.23.2): resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -9794,6 +10845,16 @@ packages: '@babel/core': 7.22.11 '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-transform-unicode-escapes@7.22.10(@babel/core@7.23.2): + resolution: {integrity: sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + /@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.22.11): resolution: {integrity: sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==} engines: {node: '>=6.9.0'} @@ -9804,14 +10865,25 @@ packages: '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.22.11) '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.22.11): + /@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2) + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.23.2): resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 - '@babel/helper-create-regexp-features-plugin': 7.21.4(@babel/core@7.22.11) + '@babel/core': 7.23.2 + '@babel/helper-create-regexp-features-plugin': 7.21.4(@babel/core@7.23.2) '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -9836,6 +10908,17 @@ packages: '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.22.11) '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2) + '@babel/helper-plugin-utils': 7.22.5 + dev: true + /@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.22.11): resolution: {integrity: sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==} engines: {node: '>=6.9.0'} @@ -9846,6 +10929,17 @@ packages: '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.22.11) '@babel/helper-plugin-utils': 7.22.5 + /@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.23.2): + resolution: {integrity: sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2) + '@babel/helper-plugin-utils': 7.22.5 + dev: true + /@babel/polyfill@7.12.1: resolution: {integrity: sha512-X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g==} deprecated: 🚨 This package has been deprecated in favor of separate inclusion of a polyfill and regenerator-runtime (when needed). See the @babel/polyfill docs (https://babeljs.io/docs/en/babel-polyfill) for more information. @@ -9940,86 +11034,86 @@ packages: - supports-color dev: true - /@babel/preset-env@7.21.4(@babel/core@7.22.11): + /@babel/preset-env@7.21.4(@babel/core@7.23.2): resolution: {integrity: sha512-2W57zHs2yDLm6GD5ZpvNn71lZ0B/iypSdIeq25OurDKji6AdzV07qp4s3n1/x5BqtiGaTrPN3nerlSCaC5qNTw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/compat-data': 7.22.20 - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-option': 7.22.15 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6(@babel/core@7.22.11) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7(@babel/core@7.22.11) - '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.22.11) - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.11) - '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.22.11) - '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.22.11) - '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.22.11) - '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.22.11) - '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.22.11) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.11) - '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.22.11) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.22.11) - '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.22.11) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.11) - '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.22.11) - '@babel/plugin-proposal-private-property-in-object': 7.21.0(@babel/core@7.22.11) - '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.22.11) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.11) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.11) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.11) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.11) - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.11) - '@babel/plugin-syntax-import-assertions': 7.20.0(@babel/core@7.22.11) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.11) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.11) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.11) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.11) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.11) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.11) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.11) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.11) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.22.11) - '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.22.11) - '@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.22.11) - '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.22.11) - '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.22.11) - '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.22.11) - '@babel/plugin-transform-computed-properties': 7.20.7(@babel/core@7.22.11) - '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.22.11) - '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.22.11) - '@babel/plugin-transform-duplicate-keys': 7.18.9(@babel/core@7.22.11) - '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.22.11) - '@babel/plugin-transform-for-of': 7.21.0(@babel/core@7.22.11) - '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.22.11) - '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.22.11) - '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.22.11) - '@babel/plugin-transform-modules-amd': 7.20.11(@babel/core@7.22.11) - '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.22.11) - '@babel/plugin-transform-modules-systemjs': 7.20.11(@babel/core@7.22.11) - '@babel/plugin-transform-modules-umd': 7.18.6(@babel/core@7.22.11) - '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.22.11) - '@babel/plugin-transform-new-target': 7.18.6(@babel/core@7.22.11) - '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.22.11) - '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.22.11) - '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.22.11) - '@babel/plugin-transform-regenerator': 7.20.5(@babel/core@7.22.11) - '@babel/plugin-transform-reserved-words': 7.18.6(@babel/core@7.22.11) - '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.22.11) - '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.22.11) - '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.22.11) - '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.22.11) - '@babel/plugin-transform-typeof-symbol': 7.18.9(@babel/core@7.22.11) - '@babel/plugin-transform-unicode-escapes': 7.18.10(@babel/core@7.22.11) - '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.22.11) - '@babel/preset-modules': 0.1.5(@babel/core@7.22.11) + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6(@babel/core@7.23.2) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7(@babel/core@7.23.2) + '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.23.2) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.2) + '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.23.2) + '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.23.2) + '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.23.2) + '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.23.2) + '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.23.2) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.23.2) + '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.23.2) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.23.2) + '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.23.2) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.23.2) + '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.23.2) + '@babel/plugin-proposal-private-property-in-object': 7.21.0(@babel/core@7.23.2) + '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.23.2) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.2) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.2) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.2) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-import-assertions': 7.20.0(@babel/core@7.23.2) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.2) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.2) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.2) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.2) + '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.23.2) + '@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.23.2) + '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.23.2) + '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.23.2) + '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.23.2) + '@babel/plugin-transform-computed-properties': 7.20.7(@babel/core@7.23.2) + '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.23.2) + '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.23.2) + '@babel/plugin-transform-duplicate-keys': 7.18.9(@babel/core@7.23.2) + '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.23.2) + '@babel/plugin-transform-for-of': 7.21.0(@babel/core@7.23.2) + '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.23.2) + '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.23.2) + '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.23.2) + '@babel/plugin-transform-modules-amd': 7.20.11(@babel/core@7.23.2) + '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.23.2) + '@babel/plugin-transform-modules-systemjs': 7.20.11(@babel/core@7.23.2) + '@babel/plugin-transform-modules-umd': 7.18.6(@babel/core@7.23.2) + '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.23.2) + '@babel/plugin-transform-new-target': 7.18.6(@babel/core@7.23.2) + '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.23.2) + '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.23.2) + '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.23.2) + '@babel/plugin-transform-regenerator': 7.20.5(@babel/core@7.23.2) + '@babel/plugin-transform-reserved-words': 7.18.6(@babel/core@7.23.2) + '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.23.2) + '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.23.2) + '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.23.2) + '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.23.2) + '@babel/plugin-transform-typeof-symbol': 7.18.9(@babel/core@7.23.2) + '@babel/plugin-transform-unicode-escapes': 7.18.10(@babel/core@7.23.2) + '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.23.2) + '@babel/preset-modules': 0.1.5(@babel/core@7.23.2) '@babel/types': 7.22.19 - babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.22.11) - babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.22.11) - babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.22.11) + babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.23.2) + babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.23.2) + babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.23.2) core-js-compat: 3.30.0 semver: 6.3.1 transitivePeerDependencies: @@ -10116,6 +11210,97 @@ packages: transitivePeerDependencies: - supports-color + /@babel/preset-env@7.22.20(@babel/core@7.23.2): + resolution: {integrity: sha512-11MY04gGC4kSzlPHRfvVkNAZhUxOvm7DCJ37hPDnUENwe06npjIRAfInEMTGSb4LZK5ZgDFkv5hw0lGebHeTyg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.22.20 + '@babel/core': 7.23.2 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-validator-option': 7.22.15 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.2) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.2) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.2) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.2) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-import-assertions': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-syntax-import-attributes': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.2) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.2) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.2) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.2) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.2) + '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.2) + '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-async-generator-functions': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-block-scoping': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-class-static-block': 7.22.11(@babel/core@7.23.2) + '@babel/plugin-transform-classes': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-destructuring': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-dynamic-import': 7.22.11(@babel/core@7.23.2) + '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-export-namespace-from': 7.22.11(@babel/core@7.23.2) + '@babel/plugin-transform-for-of': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-json-strings': 7.22.11(@babel/core@7.23.2) + '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-logical-assignment-operators': 7.22.11(@babel/core@7.23.2) + '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-modules-amd': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-modules-commonjs': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-transform-modules-systemjs': 7.22.11(@babel/core@7.23.2) + '@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-nullish-coalescing-operator': 7.22.11(@babel/core@7.23.2) + '@babel/plugin-transform-numeric-separator': 7.22.11(@babel/core@7.23.2) + '@babel/plugin-transform-object-rest-spread': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-optional-catch-binding': 7.22.11(@babel/core@7.23.2) + '@babel/plugin-transform-optional-chaining': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-transform-private-methods': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-private-property-in-object': 7.22.11(@babel/core@7.23.2) + '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-regenerator': 7.22.10(@babel/core@7.23.2) + '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-unicode-escapes': 7.22.10(@babel/core@7.23.2) + '@babel/plugin-transform-unicode-property-regex': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-unicode-sets-regex': 7.22.5(@babel/core@7.23.2) + '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.23.2) + '@babel/types': 7.22.19 + babel-plugin-polyfill-corejs2: 0.4.5(@babel/core@7.23.2) + babel-plugin-polyfill-corejs3: 0.8.3(@babel/core@7.23.2) + babel-plugin-polyfill-regenerator: 0.5.2(@babel/core@7.23.2) + core-js-compat: 3.32.2 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/preset-flow@7.22.15(@babel/core@7.22.11): resolution: {integrity: sha512-dB5aIMqpkgbTfN5vDdTRPzjqtWiZcRESNR88QYnoPR+bmdYoluOzMX9tQerTv0XzSgZYctPfO1oc0N5zdog1ew==} engines: {node: '>=6.9.0'} @@ -10128,6 +11313,18 @@ packages: '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.22.11) dev: true + /@babel/preset-flow@7.22.15(@babel/core@7.23.2): + resolution: {integrity: sha512-dB5aIMqpkgbTfN5vDdTRPzjqtWiZcRESNR88QYnoPR+bmdYoluOzMX9tQerTv0XzSgZYctPfO1oc0N5zdog1ew==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-validator-option': 7.22.15 + '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.23.2) + dev: true + /@babel/preset-modules@0.1.5(@babel/core@7.20.12): resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} peerDependencies: @@ -10141,15 +11338,15 @@ packages: esutils: 2.0.3 dev: true - /@babel/preset-modules@0.1.5(@babel/core@7.22.11): + /@babel/preset-modules@0.1.5(@babel/core@7.23.2): resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.22.11) - '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.22.11) + '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.23.2) + '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.23.2) '@babel/types': 7.22.19 esutils: 2.0.3 dev: true @@ -10164,19 +11361,30 @@ packages: '@babel/types': 7.22.19 esutils: 2.0.3 - /@babel/preset-react@7.18.6(@babel/core@7.22.11): + /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.23.2): + resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==} + peerDependencies: + '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/types': 7.22.19 + esutils: 2.0.3 + dev: true + + /@babel/preset-react@7.18.6(@babel/core@7.23.2): resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-validator-option': 7.21.0 - '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.22.11) - '@babel/plugin-transform-react-jsx': 7.21.0(@babel/core@7.22.11) - '@babel/plugin-transform-react-jsx-development': 7.18.6(@babel/core@7.22.11) - '@babel/plugin-transform-react-pure-annotations': 7.18.6(@babel/core@7.22.11) + '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.23.2) + '@babel/plugin-transform-react-jsx': 7.21.0(@babel/core@7.23.2) + '@babel/plugin-transform-react-jsx-development': 7.18.6(@babel/core@7.23.2) + '@babel/plugin-transform-react-pure-annotations': 7.18.6(@babel/core@7.23.2) dev: true /@babel/preset-react@7.22.15(@babel/core@7.22.11): @@ -10193,6 +11401,21 @@ packages: '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.22.11) '@babel/plugin-transform-react-pure-annotations': 7.22.5(@babel/core@7.22.11) + /@babel/preset-react@7.22.15(@babel/core@7.23.2): + resolution: {integrity: sha512-Csy1IJ2uEh/PecCBXXoZGAZBeCATTuePzCSB7dLYWS0vOEj6CNpjxIhW4duWwZodBNueH7QO14WbGn8YyeuN9w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-validator-option': 7.22.15 + '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-react-pure-annotations': 7.22.5(@babel/core@7.23.2) + dev: true + /@babel/preset-typescript@7.21.4(@babel/core@7.22.11): resolution: {integrity: sha512-sMLNWY37TCdRH/bJ6ZeeOH1nPuanED7Ai9Y/vH31IPqalioJ6ZNFUWONsakhv4r4n+I6gm5lmoE0olkgib/j/A==} engines: {node: '>=6.9.0'} @@ -10206,6 +11429,20 @@ packages: '@babel/plugin-transform-modules-commonjs': 7.22.15(@babel/core@7.22.11) '@babel/plugin-transform-typescript': 7.21.3(@babel/core@7.22.11) + /@babel/preset-typescript@7.21.4(@babel/core@7.23.2): + resolution: {integrity: sha512-sMLNWY37TCdRH/bJ6ZeeOH1nPuanED7Ai9Y/vH31IPqalioJ6ZNFUWONsakhv4r4n+I6gm5lmoE0olkgib/j/A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-validator-option': 7.22.15 + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-modules-commonjs': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-transform-typescript': 7.21.3(@babel/core@7.23.2) + dev: true + /@babel/register@7.21.0(@babel/core@7.22.11): resolution: {integrity: sha512-9nKsPmYDi5DidAqJaQooxIhsLJiNMkGr8ypQ8Uic7cIox7UCDsM7HuUGxdGT7mSDTYbqzIdsOWzfBton/YJrMw==} engines: {node: '>=6.9.0'} @@ -10243,6 +11480,13 @@ packages: dependencies: regenerator-runtime: 0.13.11 + /@babel/runtime@7.23.2: + resolution: {integrity: sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==} + engines: {node: '>=6.9.0'} + dependencies: + regenerator-runtime: 0.14.0 + dev: false + /@babel/template@7.20.7: resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==} engines: {node: '>=6.9.0'} @@ -10277,6 +11521,23 @@ packages: transitivePeerDependencies: - supports-color + /@babel/traverse@7.23.2: + resolution: {integrity: sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.22.13 + '@babel/generator': 7.23.0 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-hoist-variables': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + '@babel/parser': 7.23.0 + '@babel/types': 7.23.0 + debug: 4.3.4(supports-color@8.1.1) + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + /@babel/types@7.22.19: resolution: {integrity: sha512-P7LAw/LbojPzkgp5oznjE6tQEIWbp4PkkfrZDINTro9zgBRtI324/EYsiSI7lhPbpIQ+DCeR2NNmMWANGGfZsg==} engines: {node: '>=6.9.0'} @@ -10285,6 +11546,14 @@ packages: '@babel/helper-validator-identifier': 7.22.20 to-fast-properties: 2.0.0 + /@babel/types@7.23.0: + resolution: {integrity: sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-string-parser': 7.22.5 + '@babel/helper-validator-identifier': 7.22.20 + to-fast-properties: 2.0.0 + /@base2/pretty-print-object@1.0.1: resolution: {integrity: sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==} dev: true @@ -10464,8 +11733,8 @@ packages: - '@swc/wasm' dev: true - /@commitlint/load@17.7.1(@swc/core@1.3.49): - resolution: {integrity: sha512-S/QSOjE1ztdogYj61p6n3UbkUvweR17FQ0zDbNtoTLc+Hz7vvfS7ehoTMQ27hPSjVBpp7SzEcOQu081RLjKHJQ==} + /@commitlint/load@17.8.0(@swc/core@1.3.49): + resolution: {integrity: sha512-9VnGXYJCP4tXmR4YrwP8n5oX6T5ZsHfPQq6WuUQOvAI+QsDQMaTGgTRXr7us+xsjz+b+mMBSagogqfUx2aixyw==} engines: {node: '>=v14'} requiresBuild: true dependencies: @@ -10473,15 +11742,15 @@ packages: '@commitlint/execute-rule': 17.4.0 '@commitlint/resolve-extends': 17.6.7 '@commitlint/types': 17.4.4 - '@types/node': 20.4.7 + '@types/node': 20.5.1 chalk: 4.1.2 cosmiconfig: 8.2.0 - cosmiconfig-typescript-loader: 4.3.0(@types/node@20.4.7)(cosmiconfig@8.2.0)(ts-node@10.9.1)(typescript@4.9.5) + cosmiconfig-typescript-loader: 4.3.0(@types/node@20.5.1)(cosmiconfig@8.2.0)(ts-node@10.9.1)(typescript@4.9.5) lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 lodash.uniq: 4.5.0 resolve-from: 5.0.0 - ts-node: 10.9.1(@swc/core@1.3.49)(@types/node@20.4.7)(typescript@4.9.5) + ts-node: 10.9.1(@swc/core@1.3.49)(@types/node@20.5.1)(typescript@4.9.5) typescript: 4.9.5 transitivePeerDependencies: - '@swc/core' @@ -10570,8 +11839,8 @@ packages: chalk: 4.1.2 dev: true - /@contrast/fn-inspect@3.3.0: - resolution: {integrity: sha512-iulijoAuhfamXZNWsEy4ORNd8TxqD6aKeMiukDpWSwuRJ3sB+4lOmY2DkP2WwlBpYMmh3k4/7LHP2I925Y2xKQ==} + /@contrast/fn-inspect@3.4.0: + resolution: {integrity: sha512-Jw6dMFEIt/FXF1ihJri2GFNayeEKQ6r+WRjjWl7MdgMup2D4vCPu99ZV8eHSMqNNkj3BEzUNC91ZaJVB1XJmfg==} engines: {node: '>=12.13.0'} requiresBuild: true dependencies: @@ -11435,7 +12704,7 @@ packages: react: 17.0.2 dev: false - /@emotion/react@11.7.1(@babel/core@7.22.11)(@types/react@17.0.62)(react@17.0.2): + /@emotion/react@11.7.1(@babel/core@7.23.2)(@types/react@17.0.62)(react@17.0.2): resolution: {integrity: sha512-DV2Xe3yhkF1yT4uAUoJcYL1AmrnO5SVsdfvu+fBuS7IbByDeTVx9+wFmvx9Idzv7/78+9Mgx2Hcmr7Fex3tIyw==} peerDependencies: '@babel/core': ^7.0.0 @@ -11447,7 +12716,7 @@ packages: '@types/react': optional: true dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@babel/runtime': 7.21.0 '@emotion/cache': 11.7.1 '@emotion/serialize': 1.0.2 @@ -11563,13 +12832,13 @@ packages: lodash.get: 4.4.2 make-error: 1.3.6 ts-node: 9.1.1(typescript@4.9.5) - tslib: 2.6.2 + tslib: 2.5.0 transitivePeerDependencies: - typescript dev: true - /@esbuild/android-arm64@0.17.16: - resolution: {integrity: sha512-QX48qmsEZW+gcHgTmAj+x21mwTz8MlYQBnzF6861cNdQGvj2jzzFjqH0EBabrIa/WVZ2CHolwMoqxVryqKt8+Q==} + /@esbuild/android-arm64@0.17.19: + resolution: {integrity: sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA==} engines: {node: '>=12'} cpu: [arm64] os: [android] @@ -11594,8 +12863,8 @@ packages: requiresBuild: true optional: true - /@esbuild/android-arm@0.17.16: - resolution: {integrity: sha512-baLqRpLe4JnKrUXLJChoTN0iXZH7El/mu58GE3WIA6/H834k0XWvLRmGLG8y8arTRS9hJJibPnF0tiGhmWeZgw==} + /@esbuild/android-arm@0.17.19: + resolution: {integrity: sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A==} engines: {node: '>=12'} cpu: [arm] os: [android] @@ -11620,8 +12889,8 @@ packages: requiresBuild: true optional: true - /@esbuild/android-x64@0.17.16: - resolution: {integrity: sha512-G4wfHhrrz99XJgHnzFvB4UwwPxAWZaZBOFXh+JH1Duf1I4vIVfuYY9uVLpx4eiV2D/Jix8LJY+TAdZ3i40tDow==} + /@esbuild/android-x64@0.17.19: + resolution: {integrity: sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww==} engines: {node: '>=12'} cpu: [x64] os: [android] @@ -11646,8 +12915,8 @@ packages: requiresBuild: true optional: true - /@esbuild/darwin-arm64@0.17.16: - resolution: {integrity: sha512-/Ofw8UXZxuzTLsNFmz1+lmarQI6ztMZ9XktvXedTbt3SNWDn0+ODTwxExLYQ/Hod91EZB4vZPQJLoqLF0jvEzA==} + /@esbuild/darwin-arm64@0.17.19: + resolution: {integrity: sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg==} engines: {node: '>=12'} cpu: [arm64] os: [darwin] @@ -11672,8 +12941,8 @@ packages: requiresBuild: true optional: true - /@esbuild/darwin-x64@0.17.16: - resolution: {integrity: sha512-SzBQtCV3Pdc9kyizh36Ol+dNVhkDyIrGb/JXZqFq8WL37LIyrXU0gUpADcNV311sCOhvY+f2ivMhb5Tuv8nMOQ==} + /@esbuild/darwin-x64@0.17.19: + resolution: {integrity: sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw==} engines: {node: '>=12'} cpu: [x64] os: [darwin] @@ -11698,8 +12967,8 @@ packages: requiresBuild: true optional: true - /@esbuild/freebsd-arm64@0.17.16: - resolution: {integrity: sha512-ZqftdfS1UlLiH1DnS2u3It7l4Bc3AskKeu+paJSfk7RNOMrOxmeFDhLTMQqMxycP1C3oj8vgkAT6xfAuq7ZPRA==} + /@esbuild/freebsd-arm64@0.17.19: + resolution: {integrity: sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ==} engines: {node: '>=12'} cpu: [arm64] os: [freebsd] @@ -11724,8 +12993,8 @@ packages: requiresBuild: true optional: true - /@esbuild/freebsd-x64@0.17.16: - resolution: {integrity: sha512-rHV6zNWW1tjgsu0dKQTX9L0ByiJHHLvQKrWtnz8r0YYJI27FU3Xu48gpK2IBj1uCSYhJ+pEk6Y0Um7U3rIvV8g==} + /@esbuild/freebsd-x64@0.17.19: + resolution: {integrity: sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ==} engines: {node: '>=12'} cpu: [x64] os: [freebsd] @@ -11750,8 +13019,8 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-arm64@0.17.16: - resolution: {integrity: sha512-8yoZhGkU6aHu38WpaM4HrRLTFc7/VVD9Q2SvPcmIQIipQt2I/GMTZNdEHXoypbbGao5kggLcxg0iBKjo0SQYKA==} + /@esbuild/linux-arm64@0.17.19: + resolution: {integrity: sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg==} engines: {node: '>=12'} cpu: [arm64] os: [linux] @@ -11776,8 +13045,8 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-arm@0.17.16: - resolution: {integrity: sha512-n4O8oVxbn7nl4+m+ISb0a68/lcJClIbaGAoXwqeubj/D1/oMMuaAXmJVfFlRjJLu/ZvHkxoiFJnmbfp4n8cdSw==} + /@esbuild/linux-arm@0.17.19: + resolution: {integrity: sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA==} engines: {node: '>=12'} cpu: [arm] os: [linux] @@ -11802,8 +13071,8 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-ia32@0.17.16: - resolution: {integrity: sha512-9ZBjlkdaVYxPNO8a7OmzDbOH9FMQ1a58j7Xb21UfRU29KcEEU3VTHk+Cvrft/BNv0gpWJMiiZ/f4w0TqSP0gLA==} + /@esbuild/linux-ia32@0.17.19: + resolution: {integrity: sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ==} engines: {node: '>=12'} cpu: [ia32] os: [linux] @@ -11828,8 +13097,8 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-loong64@0.17.16: - resolution: {integrity: sha512-TIZTRojVBBzdgChY3UOG7BlPhqJz08AL7jdgeeu+kiObWMFzGnQD7BgBBkWRwOtKR1i2TNlO7YK6m4zxVjjPRQ==} + /@esbuild/linux-loong64@0.17.19: + resolution: {integrity: sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ==} engines: {node: '>=12'} cpu: [loong64] os: [linux] @@ -11854,8 +13123,8 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-mips64el@0.17.16: - resolution: {integrity: sha512-UPeRuFKCCJYpBbIdczKyHLAIU31GEm0dZl1eMrdYeXDH+SJZh/i+2cAmD3A1Wip9pIc5Sc6Kc5cFUrPXtR0XHA==} + /@esbuild/linux-mips64el@0.17.19: + resolution: {integrity: sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A==} engines: {node: '>=12'} cpu: [mips64el] os: [linux] @@ -11880,8 +13149,8 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-ppc64@0.17.16: - resolution: {integrity: sha512-io6yShgIEgVUhExJejJ21xvO5QtrbiSeI7vYUnr7l+v/O9t6IowyhdiYnyivX2X5ysOVHAuyHW+Wyi7DNhdw6Q==} + /@esbuild/linux-ppc64@0.17.19: + resolution: {integrity: sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg==} engines: {node: '>=12'} cpu: [ppc64] os: [linux] @@ -11906,8 +13175,8 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-riscv64@0.17.16: - resolution: {integrity: sha512-WhlGeAHNbSdG/I2gqX2RK2gfgSNwyJuCiFHMc8s3GNEMMHUI109+VMBfhVqRb0ZGzEeRiibi8dItR3ws3Lk+cA==} + /@esbuild/linux-riscv64@0.17.19: + resolution: {integrity: sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA==} engines: {node: '>=12'} cpu: [riscv64] os: [linux] @@ -11932,8 +13201,8 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-s390x@0.17.16: - resolution: {integrity: sha512-gHRReYsJtViir63bXKoFaQ4pgTyah4ruiMRQ6im9YZuv+gp3UFJkNTY4sFA73YDynmXZA6hi45en4BGhNOJUsw==} + /@esbuild/linux-s390x@0.17.19: + resolution: {integrity: sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q==} engines: {node: '>=12'} cpu: [s390x] os: [linux] @@ -11958,8 +13227,8 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-x64@0.17.16: - resolution: {integrity: sha512-mfiiBkxEbUHvi+v0P+TS7UnA9TeGXR48aK4XHkTj0ZwOijxexgMF01UDFaBX7Q6CQsB0d+MFNv9IiXbIHTNd4g==} + /@esbuild/linux-x64@0.17.19: + resolution: {integrity: sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw==} engines: {node: '>=12'} cpu: [x64] os: [linux] @@ -11984,8 +13253,8 @@ packages: requiresBuild: true optional: true - /@esbuild/netbsd-x64@0.17.16: - resolution: {integrity: sha512-n8zK1YRDGLRZfVcswcDMDM0j2xKYLNXqei217a4GyBxHIuPMGrrVuJ+Ijfpr0Kufcm7C1k/qaIrGy6eG7wvgmA==} + /@esbuild/netbsd-x64@0.17.19: + resolution: {integrity: sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q==} engines: {node: '>=12'} cpu: [x64] os: [netbsd] @@ -12010,8 +13279,8 @@ packages: requiresBuild: true optional: true - /@esbuild/openbsd-x64@0.17.16: - resolution: {integrity: sha512-lEEfkfsUbo0xC47eSTBqsItXDSzwzwhKUSsVaVjVji07t8+6KA5INp2rN890dHZeueXJAI8q0tEIfbwVRYf6Ew==} + /@esbuild/openbsd-x64@0.17.19: + resolution: {integrity: sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g==} engines: {node: '>=12'} cpu: [x64] os: [openbsd] @@ -12036,8 +13305,8 @@ packages: requiresBuild: true optional: true - /@esbuild/sunos-x64@0.17.16: - resolution: {integrity: sha512-jlRjsuvG1fgGwnE8Afs7xYDnGz0dBgTNZfgCK6TlvPH3Z13/P5pi6I57vyLE8qZYLrGVtwcm9UbUx1/mZ8Ukag==} + /@esbuild/sunos-x64@0.17.19: + resolution: {integrity: sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg==} engines: {node: '>=12'} cpu: [x64] os: [sunos] @@ -12062,8 +13331,8 @@ packages: requiresBuild: true optional: true - /@esbuild/win32-arm64@0.17.16: - resolution: {integrity: sha512-TzoU2qwVe2boOHl/3KNBUv2PNUc38U0TNnzqOAcgPiD/EZxT2s736xfC2dYQbszAwo4MKzzwBV0iHjhfjxMimg==} + /@esbuild/win32-arm64@0.17.19: + resolution: {integrity: sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag==} engines: {node: '>=12'} cpu: [arm64] os: [win32] @@ -12088,8 +13357,8 @@ packages: requiresBuild: true optional: true - /@esbuild/win32-ia32@0.17.16: - resolution: {integrity: sha512-B8b7W+oo2yb/3xmwk9Vc99hC9bNolvqjaTZYEfMQhzdpBsjTvZBlXQ/teUE55Ww6sg//wlcDjOaqldOKyigWdA==} + /@esbuild/win32-ia32@0.17.19: + resolution: {integrity: sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw==} engines: {node: '>=12'} cpu: [ia32] os: [win32] @@ -12114,8 +13383,8 @@ packages: requiresBuild: true optional: true - /@esbuild/win32-x64@0.17.16: - resolution: {integrity: sha512-xJ7OH/nanouJO9pf03YsL9NAFQBHd8AqfrQd7Pf5laGyyTt/gToul6QYOA/i5i/q8y9iaM5DQFNTgpi995VkOg==} + /@esbuild/win32-x64@0.17.19: + resolution: {integrity: sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA==} engines: {node: '>=12'} cpu: [x64] os: [win32] @@ -12149,21 +13418,21 @@ packages: eslint: 8.38.0 eslint-visitor-keys: 3.4.3 - /@eslint-community/eslint-utils@4.4.0(eslint@8.48.0): + /@eslint-community/eslint-utils@4.4.0(eslint@8.51.0): resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 dependencies: - eslint: 8.48.0 + eslint: 8.51.0 eslint-visitor-keys: 3.4.3 /@eslint-community/regexpp@4.5.0: resolution: {integrity: sha512-vITaYzIcNmjn5tF5uxcZ/ft7/RXGrMUIS9HalWckEOF6ESiwXKoMzAQf2UW0aVd6rnOeExTJVd5hmWXucBKGXQ==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} - /@eslint-community/regexpp@4.8.0: - resolution: {integrity: sha512-JylOEEzDiOryeUnFbQz+oViCXS0KsvR1mvHkoMiu5+UiBvy+RYX7tzlIIIEstF/gVa2tj9AQXk3dgnxv6KxhFg==} + /@eslint-community/regexpp@4.9.1: + resolution: {integrity: sha512-Y27x+MBLjXa+0JWDhykM3+JE+il3kHKAEqabfEWq3SDhZjLYb6/BHL/JKFnH3fe207JaXkyDo685Oc2Glt6ifA==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} /@eslint/eslintrc@0.4.3: @@ -12206,7 +13475,7 @@ packages: ajv: 6.12.6 debug: 4.3.4(supports-color@8.1.1) espree: 9.6.1 - globals: 13.21.0 + globals: 13.23.0 ignore: 5.2.4 import-fresh: 3.3.0 js-yaml: 4.1.0 @@ -12219,8 +13488,8 @@ packages: resolution: {integrity: sha512-IoD2MfUnOV58ghIHCiil01PcohxjbYR/qCxsoC+xNgUwh1EY8jOOrYmu3d3a71+tJJ23uscEV4X2HJWMsPJu4g==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - /@eslint/js@8.48.0: - resolution: {integrity: sha512-ZSjtmelB7IJfWD2Fvb7+Z+ChTIKWq6kjda95fLcQKNS5aheVHn4IkfgRQE3sIIzTcSLwLcLZUD9UBt+V7+h+Pw==} + /@eslint/js@8.51.0: + resolution: {integrity: sha512-HxjQ8Qn+4SI3/AFv6sOrDB+g6PpUTDwSJiQqOrnneEk8L71161srI9gjzzZvYVbzHiVg/BvcH95+cK/zfIt4pg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} /@faker-js/faker@6.3.1: @@ -12423,8 +13692,8 @@ packages: stoppable: 1.1.0 dev: false - /@google-cloud/firestore@6.7.0: - resolution: {integrity: sha512-bkH2jb5KkQSUa+NAvpip9HQ+rpYhi77IaqHovWuN07adVmvNXX08gPpvPWEzoXYa/wDjEVI7LiAtCWkJJEYTNg==} + /@google-cloud/firestore@6.8.0: + resolution: {integrity: sha512-JRpk06SmZXLGz0pNx1x7yU3YhkUXheKgH5hbDZ4kMsdhtfV5qPLJLRI4wv69K0cZorIk+zTMOwptue7hizo0eA==} engines: {node: '>=12.0.0'} requiresBuild: true dependencies: @@ -12511,54 +13780,55 @@ packages: - supports-color dev: false - /@graphql-tools/merge@9.0.0(graphql@16.8.0): + /@graphql-tools/merge@9.0.0(graphql@16.8.1): resolution: {integrity: sha512-J7/xqjkGTTwOJmaJQJ2C+VDBDOWJL3lKrHJN4yMaRLAJH3PosB7GiPRaSDZdErs0+F77sH2MKs2haMMkywzx7Q==} engines: {node: '>=16.0.0'} requiresBuild: true peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 10.0.1(graphql@16.8.0) - graphql: 16.8.0 + '@graphql-tools/utils': 10.0.6(graphql@16.8.1) + graphql: 16.8.1 tslib: 2.6.2 dev: false optional: true - /@graphql-tools/schema@10.0.0(graphql@16.8.0): + /@graphql-tools/schema@10.0.0(graphql@16.8.1): resolution: {integrity: sha512-kf3qOXMFcMs2f/S8Y3A8fm/2w+GaHAkfr3Gnhh2LOug/JgpY/ywgFVxO3jOeSpSEdoYcDKLcXVjMigNbY4AdQg==} engines: {node: '>=16.0.0'} requiresBuild: true peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/merge': 9.0.0(graphql@16.8.0) - '@graphql-tools/utils': 10.0.1(graphql@16.8.0) - graphql: 16.8.0 + '@graphql-tools/merge': 9.0.0(graphql@16.8.1) + '@graphql-tools/utils': 10.0.6(graphql@16.8.1) + graphql: 16.8.1 tslib: 2.6.2 value-or-promise: 1.0.12 dev: false optional: true - /@graphql-tools/utils@10.0.1(graphql@16.8.0): - resolution: {integrity: sha512-i1FozbDGHgdsFA47V/JvQZ0FE8NAy0Eiz7HGCJO2MkNdZAKNnwei66gOq0JWYVFztwpwbVQ09GkKhq7Kjcq5Cw==} + /@graphql-tools/utils@10.0.6(graphql@16.8.1): + resolution: {integrity: sha512-hZMjl/BbX10iagovakgf3IiqArx8TPsotq5pwBld37uIX1JiZoSbgbCIFol7u55bh32o6cfDEiiJgfAD5fbeyQ==} engines: {node: '>=16.0.0'} requiresBuild: true peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.0) - graphql: 16.8.0 + '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1) + dset: 3.1.2 + graphql: 16.8.1 tslib: 2.6.2 dev: false optional: true - /@graphql-typed-document-node/core@3.2.0(graphql@16.8.0): + /@graphql-typed-document-node/core@3.2.0(graphql@16.8.1): resolution: {integrity: sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==} requiresBuild: 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 || ^17.0.0 dependencies: - graphql: 16.8.0 + graphql: 16.8.1 dev: false optional: true @@ -12726,7 +13996,7 @@ packages: dependencies: string-width: 5.1.2 string-width-cjs: /string-width@4.2.3 - strip-ansi: 7.0.1 + strip-ansi: 7.1.0 strip-ansi-cjs: /strip-ansi@6.0.1 wrap-ansi: 8.1.0 wrap-ansi-cjs: /wrap-ansi@7.0.0 @@ -12764,7 +14034,7 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@jest/types': 27.5.1 - '@types/node': 14.18.42 + '@types/node': 12.20.55 chalk: 4.1.2 jest-message-util: 27.5.1 jest-util: 27.5.1 @@ -12775,7 +14045,7 @@ packages: engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: '@jest/types': 28.1.3 - '@types/node': 14.18.42 + '@types/node': 12.20.55 chalk: 4.1.2 jest-message-util: 28.1.3 jest-util: 28.1.3 @@ -12786,7 +14056,7 @@ packages: engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/types': 29.5.0 - '@types/node': 14.18.42 + '@types/node': 16.11.7 chalk: 4.1.2 jest-message-util: 29.5.0 jest-util: 29.5.0 @@ -12885,7 +14155,7 @@ packages: dependencies: '@jest/fake-timers': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 14.18.42 + '@types/node': 12.20.55 jest-mock: 27.5.1 /@jest/environment@29.5.0: @@ -12920,7 +14190,7 @@ packages: dependencies: '@jest/types': 27.5.1 '@sinonjs/fake-timers': 8.1.0 - '@types/node': 14.18.42 + '@types/node': 12.20.55 jest-message-util: 27.5.1 jest-mock: 27.5.1 jest-util: 27.5.1 @@ -12974,7 +14244,7 @@ packages: chalk: 4.1.2 collect-v8-coverage: 1.0.1 exit: 0.1.2 - glob: 7.2.3 + glob: 7.1.4 graceful-fs: 4.2.11 istanbul-lib-coverage: 3.2.0 istanbul-lib-instrument: 4.0.3 @@ -13008,7 +14278,7 @@ packages: '@jest/test-result': 27.5.1 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 14.18.42 + '@types/node': 12.20.55 chalk: 4.1.2 collect-v8-coverage: 1.0.1 exit: 0.1.2 @@ -13046,7 +14316,7 @@ packages: '@jest/transform': 29.5.0 '@jest/types': 29.5.0 '@jridgewell/trace-mapping': 0.3.19 - '@types/node': 14.18.42 + '@types/node': 16.11.7 chalk: 4.1.2 collect-v8-coverage: 1.0.1 exit: 0.1.2 @@ -13215,7 +14485,7 @@ packages: dependencies: '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 - '@types/node': 14.18.42 + '@types/node': 12.20.55 '@types/yargs': 15.0.15 chalk: 4.1.2 @@ -13236,7 +14506,7 @@ packages: '@jest/schemas': 28.1.3 '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 - '@types/node': 14.18.42 + '@types/node': 12.20.55 '@types/yargs': 17.0.24 chalk: 4.1.2 @@ -14066,7 +15336,7 @@ packages: - debug dev: false - /@mantine/core@4.2.12(@babel/core@7.22.11)(@mantine/hooks@4.2.12)(@types/react@17.0.62)(react-dom@17.0.2)(react@17.0.2): + /@mantine/core@4.2.12(@babel/core@7.23.2)(@mantine/hooks@4.2.12)(@types/react@17.0.62)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-PZcVUvcSZiZmLR1moKBJFdFIh6a4C+TE2ao91kzTAlH5Qb8t/V3ONbfPk3swHoYr7OSLJQM8vZ7UD5sFDiq0/g==} peerDependencies: '@mantine/hooks': 4.2.12 @@ -14074,7 +15344,7 @@ packages: react-dom: '>=16.8.0' dependencies: '@mantine/hooks': 4.2.12(react@17.0.2) - '@mantine/styles': 4.2.12(@babel/core@7.22.11)(@types/react@17.0.62)(react-dom@17.0.2)(react@17.0.2) + '@mantine/styles': 4.2.12(@babel/core@7.23.2)(@types/react@17.0.62)(react-dom@17.0.2)(react@17.0.2) '@popperjs/core': 2.11.7 '@radix-ui/react-scroll-area': 0.1.4(react@17.0.2) react: 17.0.2 @@ -14195,14 +15465,14 @@ packages: react-dom: 17.0.2(react@17.0.2) dev: false - /@mantine/styles@4.2.12(@babel/core@7.22.11)(@types/react@17.0.62)(react-dom@17.0.2)(react@17.0.2): + /@mantine/styles@4.2.12(@babel/core@7.23.2)(@types/react@17.0.62)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-9q1DzW0UNW/ORMGLHfN2XABOSEm0ZQebhNlLD757R6OQouoLuUf9elUwgGOXSyogMlsAYoy84XbJ3ZbbTm4YCA==} peerDependencies: react: '>=16.8.0' react-dom: '>=16.8.0' dependencies: '@emotion/cache': 11.7.1 - '@emotion/react': 11.7.1(@babel/core@7.22.11)(@types/react@17.0.62)(react@17.0.2) + '@emotion/react': 11.7.1(@babel/core@7.23.2)(@types/react@17.0.62)(react@17.0.2) '@emotion/serialize': 1.0.2 '@emotion/utils': 1.0.0 clsx: 1.2.1 @@ -14462,8 +15732,8 @@ packages: transitivePeerDependencies: - encoding - /@nestjs/graphql@12.0.8(@nestjs/common@10.2.2)(@nestjs/core@10.2.2)(class-transformer@0.5.1)(class-validator@0.14.0)(graphql@16.8.0)(reflect-metadata@0.1.13): - resolution: {integrity: sha512-odYDHUdLOMCxjC5VSEmF/23r8cY40N1KCwBkWaCmI1IF76Ffe3srWRDv8HS9tcai9eSmOeSWuyLBEg2OSru0cQ==} + /@nestjs/graphql@12.0.9(@nestjs/common@10.2.2)(@nestjs/core@10.2.2)(class-transformer@0.5.1)(class-validator@0.14.0)(graphql@16.8.1)(reflect-metadata@0.1.13): + resolution: {integrity: sha512-A5oRD5GMwzaNZum06KSxKtqhC7LvS4p7v0hLGzvNWPuLrBjAjAnm/2NV8IV8lYiJXpPHNtSnnekZH9uvy/hZlw==} requiresBuild: true peerDependencies: '@apollo/subgraph': ^2.0.0 @@ -14484,24 +15754,24 @@ packages: ts-morph: optional: true dependencies: - '@graphql-tools/merge': 9.0.0(graphql@16.8.0) - '@graphql-tools/schema': 10.0.0(graphql@16.8.0) - '@graphql-tools/utils': 10.0.1(graphql@16.8.0) + '@graphql-tools/merge': 9.0.0(graphql@16.8.1) + '@graphql-tools/schema': 10.0.0(graphql@16.8.1) + '@graphql-tools/utils': 10.0.6(graphql@16.8.1) '@nestjs/common': 10.2.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.1.13)(rxjs@7.8.1) '@nestjs/core': 10.2.2(@nestjs/common@10.2.2)(@nestjs/platform-express@10.2.2)(@nestjs/websockets@10.2.2)(reflect-metadata@0.1.13)(rxjs@7.8.1) '@nestjs/mapped-types': 2.0.2(@nestjs/common@10.2.2)(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.1.13) chokidar: 3.5.3 class-transformer: 0.5.1 class-validator: 0.14.0 - fast-glob: 3.2.12 - graphql: 16.8.0 - graphql-tag: 2.12.6(graphql@16.8.0) - graphql-ws: 5.14.0(graphql@16.8.0) + fast-glob: 3.3.1 + graphql: 16.8.1 + graphql-tag: 2.12.6(graphql@16.8.1) + graphql-ws: 5.14.0(graphql@16.8.1) lodash: 4.17.21 normalize-path: 3.0.0 reflect-metadata: 0.1.13 - subscriptions-transport-ws: 0.11.0(graphql@16.8.0) - tslib: 2.6.0 + subscriptions-transport-ws: 0.11.0(graphql@16.8.1) + tslib: 2.6.2 uuid: 9.0.0 ws: 8.13.0 transitivePeerDependencies: @@ -14911,7 +16181,7 @@ packages: engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: '@gar/promisify': 1.1.3 - semver: 7.5.4 + semver: 7.3.8 dev: true /@npmcli/fs@3.1.0: @@ -14948,7 +16218,7 @@ packages: proc-log: 3.0.0 promise-inflight: 1.0.1 promise-retry: 2.0.1 - semver: 7.5.4 + semver: 7.3.8 which: 3.0.0 transitivePeerDependencies: - bluebird @@ -15116,7 +16386,7 @@ packages: nx: 13.10.6(typescript@4.9.5) rxjs: 6.6.7 semver: 7.3.4 - tslib: 2.6.2 + tslib: 2.5.0 dev: true /@nrwl/devkit@15.9.2(nx@15.9.2): @@ -15129,7 +16399,7 @@ packages: nx: 15.9.2(@swc/core@1.3.49) semver: 7.3.4 tmp: 0.2.1 - tslib: 2.6.2 + tslib: 2.5.0 dev: true /@nrwl/devkit@15.9.4(nx@15.9.2): @@ -15142,7 +16412,7 @@ packages: nx: 15.9.2(@swc/core@1.3.49) semver: 7.3.4 tmp: 0.2.1 - tslib: 2.6.2 + tslib: 2.5.0 dev: true /@nrwl/devkit@15.9.4(nx@15.9.4): @@ -15155,7 +16425,7 @@ packages: nx: 15.9.4(@swc/core@1.3.49) semver: 7.3.4 tmp: 0.2.1 - tslib: 2.6.2 + tslib: 2.5.0 dev: true /@nrwl/eslint-plugin-nx@15.9.4(@typescript-eslint/parser@5.58.0)(eslint-config-prettier@8.8.0)(eslint@8.38.0)(nx@15.9.2)(typescript@4.9.5): @@ -15194,7 +16464,7 @@ packages: jest-util: 27.2.0 resolve.exports: 1.1.0 rxjs: 6.6.7 - tslib: 2.6.2 + tslib: 2.5.0 transitivePeerDependencies: - bufferutil - canvas @@ -15258,7 +16528,7 @@ packages: minimatch: 3.0.5 source-map-support: 0.5.19 tree-kill: 1.2.2 - tslib: 2.6.2 + tslib: 2.5.0 transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -15282,7 +16552,7 @@ packages: '@phenomnomnominal/tsquery': 4.1.1(typescript@4.9.5) eslint: 8.38.0 tmp: 0.2.1 - tslib: 2.6.2 + tslib: 2.5.0 transitivePeerDependencies: - bufferutil - canvas @@ -15677,7 +16947,7 @@ packages: open: 8.4.2 rxjs: 6.6.7 tmp: 0.2.1 - tslib: 2.6.2 + tslib: 2.5.0 yargs: 17.7.2 yargs-parser: 21.1.1 transitivePeerDependencies: @@ -15997,7 +17267,7 @@ packages: open: 8.4.2 picocolors: 1.0.0 tiny-glob: 0.2.9 - tslib: 2.6.2 + tslib: 2.5.0 dev: true /@plunk/node@2.0.0: @@ -16044,9 +17314,48 @@ packages: react-refresh: 0.11.0 schema-utils: 3.3.0 source-map: 0.7.4 - webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) + webpack: 5.78.0(@swc/core@1.3.49) webpack-dev-server: 4.11.1(webpack@5.78.0) + /@pmmmwh/react-refresh-webpack-plugin@0.5.10(react-refresh@0.11.0)(webpack@5.78.0): + resolution: {integrity: sha512-j0Ya0hCFZPd4x40qLzbhGsh9TMtdb+CJQiso+WxLOPNasohq9cc5SNUcwsZaRH6++Xh91Xkm/xHCkuIiIu0LUA==} + engines: {node: '>= 10.13'} + peerDependencies: + '@types/webpack': 4.x || 5.x + react-refresh: '>=0.10.0 <1.0.0' + sockjs-client: ^1.4.0 + type-fest: '>=0.17.0 <4.0.0' + webpack: '>=4.43.0 <6.0.0' + webpack-dev-server: 3.x || 4.x + webpack-hot-middleware: 2.x + webpack-plugin-serve: 0.x || 1.x + peerDependenciesMeta: + '@types/webpack': + optional: true + sockjs-client: + optional: true + type-fest: + optional: true + webpack-dev-server: + optional: true + webpack-hot-middleware: + optional: true + webpack-plugin-serve: + optional: true + dependencies: + ansi-html-community: 0.0.8 + common-path-prefix: 3.0.0 + core-js-pure: 3.30.0 + error-stack-parser: 2.1.4 + find-up: 5.0.0 + html-entities: 2.3.3 + loader-utils: 2.0.4 + react-refresh: 0.11.0 + schema-utils: 3.3.0 + source-map: 0.7.4 + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) + dev: true + /@pmmmwh/react-refresh-webpack-plugin@0.5.10(react-refresh@0.14.0)(webpack-dev-server@4.11.1)(webpack@5.78.0): resolution: {integrity: sha512-j0Ya0hCFZPd4x40qLzbhGsh9TMtdb+CJQiso+WxLOPNasohq9cc5SNUcwsZaRH6++Xh91Xkm/xHCkuIiIu0LUA==} engines: {node: '>= 10.13'} @@ -16260,7 +17569,7 @@ packages: '@pnpm/read-project-manifest': 5.0.0 '@pnpm/types': 9.0.0 '@pnpm/util.lex-comparator': 1.0.0 - fast-glob: 3.3.0 + fast-glob: 3.3.1 p-filter: 2.1.0 dev: true @@ -17627,7 +18936,7 @@ packages: read-pkg: 5.2.0 registry-auth-token: 5.0.2 semantic-release: 19.0.5 - semver: 7.5.4 + semver: 7.4.0 tempy: 1.0.1 dev: true @@ -17887,20 +19196,20 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@smithy/chunked-blob-reader-native@2.0.0: resolution: {integrity: sha512-HM8V2Rp1y8+1343tkZUKZllFhEQPNmpNdgFAncbTsxkZ18/gqjk23XXv3qGyXWp412f3o43ZZ1UZHVcHrpRnCQ==} dependencies: '@smithy/util-base64': 2.0.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@smithy/chunked-blob-reader@2.0.0: resolution: {integrity: sha512-k+J4GHJsMSAIQPChGBrjEmGS+WbPonCXesoqP9fynIqjn7rdOThdH8FAeCmokP9mxTYKQAKoHCLPzNlm6gh7Wg==} dependencies: - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@smithy/config-resolver@2.0.3: @@ -17910,7 +19219,7 @@ packages: '@smithy/types': 2.2.0 '@smithy/util-config-provider': 2.0.0 '@smithy/util-middleware': 2.0.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@smithy/credential-provider-imds@2.0.3: @@ -17921,7 +19230,7 @@ packages: '@smithy/property-provider': 2.0.3 '@smithy/types': 2.2.2 '@smithy/url-parser': 2.0.5 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@smithy/eventstream-codec@2.0.3: @@ -17930,7 +19239,7 @@ packages: '@aws-crypto/crc32': 3.0.0 '@smithy/types': 2.2.2 '@smithy/util-hex-encoding': 2.0.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@smithy/eventstream-serde-browser@2.0.3: @@ -17939,7 +19248,7 @@ packages: dependencies: '@smithy/eventstream-serde-universal': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@smithy/eventstream-serde-config-resolver@2.0.3: @@ -17947,7 +19256,7 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@smithy/eventstream-serde-node@2.0.3: @@ -17956,7 +19265,7 @@ packages: dependencies: '@smithy/eventstream-serde-universal': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@smithy/eventstream-serde-universal@2.0.3: @@ -17965,7 +19274,7 @@ packages: dependencies: '@smithy/eventstream-codec': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@smithy/fetch-http-handler@2.0.3: @@ -17975,7 +19284,7 @@ packages: '@smithy/querystring-builder': 2.0.3 '@smithy/types': 2.2.0 '@smithy/util-base64': 2.0.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@smithy/hash-blob-browser@2.0.3: @@ -17984,7 +19293,7 @@ packages: '@smithy/chunked-blob-reader': 2.0.0 '@smithy/chunked-blob-reader-native': 2.0.0 '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@smithy/hash-node@2.0.3: @@ -17994,7 +19303,7 @@ packages: '@smithy/types': 2.2.0 '@smithy/util-buffer-from': 2.0.0 '@smithy/util-utf8': 2.0.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@smithy/hash-stream-node@2.0.3: @@ -18003,21 +19312,21 @@ packages: dependencies: '@smithy/types': 2.2.0 '@smithy/util-utf8': 2.0.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@smithy/invalid-dependency@2.0.3: resolution: {integrity: sha512-GtmVXD/s+OZlFG1o3HfUI55aBJZXX5/iznAQkgjRGf8prYoO8GvSZLDWHXJp91arybaJxYd133oJORGf4YxGAg==} dependencies: '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@smithy/is-array-buffer@2.0.0: resolution: {integrity: sha512-z3PjFjMyZNI98JFRJi/U0nGoLWMSJlDjAW4QUX2WNZLas5C0CmVV6LJ01JI0k90l7FvpmixjWxPFmENSClQ7ug==} engines: {node: '>=14.0.0'} dependencies: - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@smithy/md5-js@2.0.3: @@ -18025,7 +19334,7 @@ packages: dependencies: '@smithy/types': 2.2.0 '@smithy/util-utf8': 2.0.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@smithy/middleware-content-length@2.0.3: @@ -18034,7 +19343,7 @@ packages: dependencies: '@smithy/protocol-http': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@smithy/middleware-endpoint@2.0.3: @@ -18045,7 +19354,7 @@ packages: '@smithy/types': 2.2.0 '@smithy/url-parser': 2.0.3 '@smithy/util-middleware': 2.0.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@smithy/middleware-retry@2.0.3: @@ -18057,7 +19366,7 @@ packages: '@smithy/types': 2.2.0 '@smithy/util-middleware': 2.0.0 '@smithy/util-retry': 2.0.0 - tslib: 2.6.2 + tslib: 2.5.0 uuid: 8.3.2 dev: false @@ -18066,14 +19375,14 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@smithy/middleware-stack@2.0.0: resolution: {integrity: sha512-31XC1xNF65nlbc16yuh3wwTudmqs6qy4EseQUGF8A/p2m/5wdd/cnXJqpniy/XvXVwkHPz/GwV36HqzHtIKATQ==} engines: {node: '>=14.0.0'} dependencies: - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@smithy/node-config-provider@2.0.3: @@ -18083,7 +19392,7 @@ packages: '@smithy/property-provider': 2.0.3 '@smithy/shared-ini-file-loader': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@smithy/node-http-handler@2.0.3: @@ -18094,7 +19403,7 @@ packages: '@smithy/protocol-http': 2.0.3 '@smithy/querystring-builder': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@smithy/property-provider@2.0.3: @@ -18102,7 +19411,7 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@smithy/types': 2.2.2 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@smithy/protocol-http@2.0.3: @@ -18110,7 +19419,7 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@smithy/querystring-builder@2.0.3: @@ -18119,7 +19428,7 @@ packages: dependencies: '@smithy/types': 2.2.0 '@smithy/util-uri-escape': 2.0.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@smithy/querystring-parser@2.0.3: @@ -18127,7 +19436,7 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@smithy/querystring-parser@2.0.5: @@ -18135,7 +19444,7 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@smithy/types': 2.2.2 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@smithy/service-error-classification@2.0.0: @@ -18148,7 +19457,7 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@smithy/types': 2.2.2 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@smithy/signature-v4@2.0.3: @@ -18162,7 +19471,7 @@ packages: '@smithy/util-middleware': 2.0.0 '@smithy/util-uri-escape': 2.0.0 '@smithy/util-utf8': 2.0.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@smithy/smithy-client@2.0.3: @@ -18172,21 +19481,21 @@ packages: '@smithy/middleware-stack': 2.0.0 '@smithy/types': 2.2.0 '@smithy/util-stream': 2.0.3 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@smithy/types@2.2.0: resolution: {integrity: sha512-Ahpt9KvD0mWeWiyaGo5EBE7KOByLl3jl4CD9Ps/r8qySgzVzo/4qsa+vvstOU3ZEriALmrPqUKIhqHt0Rn+m6g==} engines: {node: '>=14.0.0'} dependencies: - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@smithy/types@2.2.2: resolution: {integrity: sha512-4PS0y1VxDnELGHGgBWlDksB2LJK8TG8lcvlWxIsgR+8vROI7Ms8h1P4FQUx+ftAX2QZv5g1CJCdhdRmQKyonyw==} engines: {node: '>=14.0.0'} dependencies: - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@smithy/url-parser@2.0.3: @@ -18194,7 +19503,7 @@ packages: dependencies: '@smithy/querystring-parser': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@smithy/url-parser@2.0.5: @@ -18202,7 +19511,7 @@ packages: dependencies: '@smithy/querystring-parser': 2.0.5 '@smithy/types': 2.2.2 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@smithy/util-base64@2.0.0: @@ -18210,20 +19519,20 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@smithy/util-buffer-from': 2.0.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@smithy/util-body-length-browser@2.0.0: resolution: {integrity: sha512-JdDuS4ircJt+FDnaQj88TzZY3+njZ6O+D3uakS32f2VNnDo3vyEuNdBOh/oFd8Df1zSZOuH1HEChk2AOYDezZg==} dependencies: - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@smithy/util-body-length-node@2.0.0: resolution: {integrity: sha512-ZV7Z/WHTMxHJe/xL/56qZwSUcl63/5aaPAGjkfynJm4poILjdD4GmFI+V+YWabh2WJIjwTKZ5PNsuvPQKt93Mg==} engines: {node: '>=14.0.0'} dependencies: - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@smithy/util-buffer-from@2.0.0: @@ -18231,14 +19540,14 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@smithy/is-array-buffer': 2.0.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@smithy/util-config-provider@2.0.0: resolution: {integrity: sha512-xCQ6UapcIWKxXHEU4Mcs2s7LcFQRiU3XEluM2WcCjjBtQkUN71Tb+ydGmJFPxMUrW/GWMgQEEGipLym4XG0jZg==} engines: {node: '>=14.0.0'} dependencies: - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@smithy/util-defaults-mode-browser@2.0.3: @@ -18248,7 +19557,7 @@ packages: '@smithy/property-provider': 2.0.3 '@smithy/types': 2.2.0 bowser: 2.11.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@smithy/util-defaults-mode-node@2.0.3: @@ -18260,21 +19569,21 @@ packages: '@smithy/node-config-provider': 2.0.3 '@smithy/property-provider': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@smithy/util-hex-encoding@2.0.0: resolution: {integrity: sha512-c5xY+NUnFqG6d7HFh1IFfrm3mGl29lC+vF+geHv4ToiuJCBmIfzx6IeHLg+OgRdPFKDXIw6pvi+p3CsscaMcMA==} engines: {node: '>=14.0.0'} dependencies: - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@smithy/util-middleware@2.0.0: resolution: {integrity: sha512-eCWX4ECuDHn1wuyyDdGdUWnT4OGyIzV0LN1xRttBFMPI9Ff/4heSHVxneyiMtOB//zpXWCha1/SWHJOZstG7kA==} engines: {node: '>=14.0.0'} dependencies: - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@smithy/util-retry@2.0.0: @@ -18282,7 +19591,7 @@ packages: engines: {node: '>= 14.0.0'} dependencies: '@smithy/service-error-classification': 2.0.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@smithy/util-stream@2.0.3: @@ -18296,14 +19605,14 @@ packages: '@smithy/util-buffer-from': 2.0.0 '@smithy/util-hex-encoding': 2.0.0 '@smithy/util-utf8': 2.0.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@smithy/util-uri-escape@2.0.0: resolution: {integrity: sha512-ebkxsqinSdEooQduuk9CbKcI+wheijxEb3utGXkCoYQkJnwTnLbH1JXGimJtUkQwNQbsbuYwG2+aFVyZf5TLaw==} engines: {node: '>=14.0.0'} dependencies: - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@smithy/util-utf8@2.0.0: @@ -18311,7 +19620,7 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@smithy/util-buffer-from': 2.0.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@smithy/util-waiter@2.0.3: @@ -18320,7 +19629,7 @@ packages: dependencies: '@smithy/abort-controller': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false /@socket.io/component-emitter@3.1.0: @@ -20004,7 +21313,7 @@ packages: find-cache-dir: 3.3.2 find-up: 5.0.0 fs-extra: 11.1.1 - glob: 10.3.4 + glob: 10.3.10 handlebars: 4.7.7 lazy-universal-dotenv: 4.0.0 node-fetch: 2.7.0 @@ -20041,7 +21350,7 @@ packages: '@storybook/telemetry': 7.4.2 '@storybook/types': 7.4.2 '@types/detect-port': 1.3.3 - '@types/node': 16.11.7 + '@types/node': 16.18.58 '@types/pretty-hrtime': 1.0.1 '@types/semver': 7.3.13 better-opn: 3.0.2 @@ -20188,20 +21497,20 @@ packages: /@storybook/postinstall@7.4.2: resolution: {integrity: sha512-L9r14KqS87HPyXw0S3pK2X29ckel/4sdBSmy9nVF8n/ADafKE0pSLKB935VL0+88eMx06aT32SMcQoqjubGKWw==} - /@storybook/preset-create-react-app@7.4.2(@babel/core@7.22.11)(react-refresh@0.14.0)(react-scripts@5.0.1)(typescript@4.9.5)(webpack-dev-server@4.11.1)(webpack@5.78.0): + /@storybook/preset-create-react-app@7.4.2(@babel/core@7.23.2)(react-refresh@0.14.0)(react-scripts@5.0.1)(typescript@4.9.5)(webpack-dev-server@4.11.1)(webpack@5.78.0): resolution: {integrity: sha512-rHRaiWmNAFXVHlRBG4iQE0Vsg3n4ZUyRWqddV2NuqZnHYQYUP07Rp0c3TFigGeTqF/gNbj8rTBDawcwpc8VkqQ==} peerDependencies: '@babel/core': '*' react-scripts: '>=5.0.0' dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@pmmmwh/react-refresh-webpack-plugin': 0.5.10(react-refresh@0.14.0)(webpack-dev-server@4.11.1)(webpack@5.78.0) '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(typescript@4.9.5)(webpack@5.78.0) '@storybook/types': 7.4.2 '@types/babel__core': 7.20.0 babel-plugin-react-docgen: 4.2.1 pnp-webpack-plugin: 1.7.0(typescript@4.9.5) - react-scripts: 5.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(@swc/core@1.3.49)(esbuild@0.18.20)(eslint-import-resolver-webpack@0.13.7)(eslint@8.48.0)(react@17.0.2)(ts-node@10.9.1)(typescript@4.9.5) + react-scripts: 5.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(@swc/core@1.3.49)(esbuild@0.18.20)(eslint-import-resolver-webpack@0.13.7)(eslint@8.51.0)(react@17.0.2)(ts-node@10.9.1)(typescript@4.9.5) semver: 7.5.4 transitivePeerDependencies: - '@types/webpack' @@ -20216,7 +21525,7 @@ packages: - webpack-plugin-serve dev: true - /@storybook/preset-react-webpack@7.4.2(@babel/core@7.22.11)(@swc/core@1.3.49)(esbuild@0.18.20)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack-cli@5.1.4): + /@storybook/preset-react-webpack@7.4.2(@babel/core@7.23.2)(@swc/core@1.3.49)(esbuild@0.18.20)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack-cli@5.1.4): resolution: {integrity: sha512-CWWiwZa3/0zHnc6zLvI9Sgj12gJDTktZO87/gfwq2VfbWqAEUYsKs6NE4Pm0Yg9O4/IG8DHoHIB+bTNlLp/lCA==} engines: {node: '>=16.0.0'} peerDependencies: @@ -20230,10 +21539,10 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.22.11 - '@babel/preset-flow': 7.22.15(@babel/core@7.22.11) - '@babel/preset-react': 7.22.15(@babel/core@7.22.11) - '@pmmmwh/react-refresh-webpack-plugin': 0.5.10(react-refresh@0.11.0)(webpack-dev-server@4.11.1)(webpack@5.78.0) + '@babel/core': 7.23.2 + '@babel/preset-flow': 7.22.15(@babel/core@7.23.2) + '@babel/preset-react': 7.22.15(@babel/core@7.23.2) + '@pmmmwh/react-refresh-webpack-plugin': 0.5.10(react-refresh@0.11.0)(webpack@5.78.0) '@storybook/core-webpack': 7.4.2 '@storybook/docs-tools': 7.4.2 '@storybook/node-logger': 7.4.2 @@ -20265,7 +21574,7 @@ packages: - webpack-plugin-serve dev: true - /@storybook/preset-react-webpack@7.4.2(@babel/core@7.22.11)(@swc/core@1.3.49)(esbuild@0.18.20)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack-dev-server@4.11.1): + /@storybook/preset-react-webpack@7.4.2(@babel/core@7.23.2)(@swc/core@1.3.49)(esbuild@0.18.20)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack-dev-server@4.11.1): resolution: {integrity: sha512-CWWiwZa3/0zHnc6zLvI9Sgj12gJDTktZO87/gfwq2VfbWqAEUYsKs6NE4Pm0Yg9O4/IG8DHoHIB+bTNlLp/lCA==} engines: {node: '>=16.0.0'} peerDependencies: @@ -20279,9 +21588,9 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.22.11 - '@babel/preset-flow': 7.22.15(@babel/core@7.22.11) - '@babel/preset-react': 7.22.15(@babel/core@7.22.11) + '@babel/core': 7.23.2 + '@babel/preset-flow': 7.22.15(@babel/core@7.23.2) + '@babel/preset-react': 7.22.15(@babel/core@7.23.2) '@pmmmwh/react-refresh-webpack-plugin': 0.5.10(react-refresh@0.11.0)(webpack-dev-server@4.11.1)(webpack@5.78.0) '@storybook/core-webpack': 7.4.2 '@storybook/docs-tools': 7.4.2 @@ -20364,7 +21673,7 @@ packages: react: 17.0.2 react-dom: 17.0.2(react@17.0.2) - /@storybook/react-webpack5@7.4.2(@babel/core@7.22.11)(@swc/core@1.3.49)(@types/react-dom@17.0.19)(@types/react@17.0.53)(esbuild@0.18.20)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack-cli@5.1.4): + /@storybook/react-webpack5@7.4.2(@babel/core@7.23.2)(@swc/core@1.3.49)(@types/react-dom@17.0.19)(@types/react@17.0.53)(esbuild@0.18.20)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack-cli@5.1.4): resolution: {integrity: sha512-pnl11MYKM3jRmHQz2dSnEDfDiApdH7ys3zH/FjImsTK6S8etMKlxGnZ58Puxj05qvrBRgpxnQSL+ZazfrEX/6w==} engines: {node: '>=16.0.0'} peerDependencies: @@ -20378,9 +21687,9 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@storybook/builder-webpack5': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(esbuild@0.18.20)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack-cli@5.1.4) - '@storybook/preset-react-webpack': 7.4.2(@babel/core@7.22.11)(@swc/core@1.3.49)(esbuild@0.18.20)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack-cli@5.1.4) + '@storybook/preset-react-webpack': 7.4.2(@babel/core@7.23.2)(@swc/core@1.3.49)(esbuild@0.18.20)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack-cli@5.1.4) '@storybook/react': 7.4.2(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5) '@types/node': 16.11.7 react: 17.0.2 @@ -20404,7 +21713,7 @@ packages: - webpack-plugin-serve dev: true - /@storybook/react-webpack5@7.4.2(@babel/core@7.22.11)(@swc/core@1.3.49)(@types/react-dom@17.0.19)(@types/react@17.0.53)(esbuild@0.18.20)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack-dev-server@4.11.1): + /@storybook/react-webpack5@7.4.2(@babel/core@7.23.2)(@swc/core@1.3.49)(@types/react-dom@17.0.19)(@types/react@17.0.53)(esbuild@0.18.20)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack-dev-server@4.11.1): resolution: {integrity: sha512-pnl11MYKM3jRmHQz2dSnEDfDiApdH7ys3zH/FjImsTK6S8etMKlxGnZ58Puxj05qvrBRgpxnQSL+ZazfrEX/6w==} engines: {node: '>=16.0.0'} peerDependencies: @@ -20418,9 +21727,9 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@storybook/builder-webpack5': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(esbuild@0.18.20)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack-cli@5.1.4) - '@storybook/preset-react-webpack': 7.4.2(@babel/core@7.22.11)(@swc/core@1.3.49)(esbuild@0.18.20)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack-dev-server@4.11.1) + '@storybook/preset-react-webpack': 7.4.2(@babel/core@7.23.2)(@swc/core@1.3.49)(esbuild@0.18.20)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack-dev-server@4.11.1) '@storybook/react': 7.4.2(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5) '@types/node': 16.11.7 react: 17.0.2 @@ -20664,7 +21973,7 @@ packages: colorette: 2.0.19 debug: 4.3.4(supports-color@8.1.1) pirates: 4.0.5 - tslib: 2.6.2 + tslib: 2.5.0 typescript: 4.9.5 transitivePeerDependencies: - supports-color @@ -20674,7 +21983,7 @@ packages: resolution: {integrity: sha512-gqBJSmJMWomZFxlppaKea7NeAqFrDrrS0RMt24No92M3nJWcyI9YKGEQKl+EyJqZ5gh6w1s0cTklMHMzRwA1NA==} dependencies: source-map-support: 0.5.21 - tslib: 2.6.2 + tslib: 2.5.0 dev: true /@swc/core-darwin-arm64@1.3.49: @@ -20864,13 +22173,13 @@ packages: pretty-format: 27.5.1 dev: true - /@testing-library/dom@9.3.1: - resolution: {integrity: sha512-0DGPd9AR3+iDTjGoMpxIkAsUihHZ3Ai6CneU6bRRrffXMgzCdlNk43jTrD2/5LT6CBb3MWTP8v510JzYtahD2w==} + /@testing-library/dom@9.3.3: + resolution: {integrity: sha512-fB0R+fa3AUqbLHWyxXa2kGVtf1Fe1ZZFr0Zp6AIbIAzXb2mKbEXl+PCQNUOaq5lbTab5tfctfXRNsWXxa2f7Aw==} engines: {node: '>=14'} dependencies: '@babel/code-frame': 7.22.13 - '@babel/runtime': 7.21.0 - '@types/aria-query': 5.0.1 + '@babel/runtime': 7.23.2 + '@types/aria-query': 5.0.2 aria-query: 5.1.3 chalk: 4.1.2 dom-accessibility-api: 0.5.16 @@ -20938,14 +22247,14 @@ packages: '@testing-library/dom': 9.3.0 dev: true - /@testing-library/user-event@12.8.3(@testing-library/dom@9.3.1): + /@testing-library/user-event@12.8.3(@testing-library/dom@9.3.3): resolution: {integrity: sha512-IR0iWbFkgd56Bu5ZI/ej8yQwrkCv8Qydx6RzwbKz9faXazR/+5tvYKsZQgyXJiwgpcva127YO6JcWy7YlCfofQ==} engines: {node: '>=10', npm: '>=6'} peerDependencies: '@testing-library/dom': '>=7.21.4' dependencies: '@babel/runtime': 7.21.0 - '@testing-library/dom': 9.3.1 + '@testing-library/dom': 9.3.3 dev: false /@tokenizer/token@0.1.1: @@ -21000,6 +22309,11 @@ packages: /@types/aria-query@5.0.1: resolution: {integrity: sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q==} + dev: true + + /@types/aria-query@5.0.2: + resolution: {integrity: sha512-PHKZuMN+K5qgKIWhBodXzQslTo5P+K/6LqeKXS6O/4liIDdZqaX5RXrCK++LAw+y/nptN48YmUMFiQHRSWYwtQ==} + dev: false /@types/async@3.2.18: resolution: {integrity: sha512-/IsuXp3B9R//uRLi40VlIYoMp7OzhkunPe2fDu7jGfQXI9y3CDCx6FC4juRLSqrpmLst3vgsiK536AAGJFl4Ww==} @@ -21080,7 +22394,7 @@ packages: resolution: {integrity: sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==} dependencies: '@types/express-serve-static-core': 4.17.33 - '@types/node': 14.18.42 + '@types/node': 20.8.6 /@types/connect@3.4.35: resolution: {integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==} @@ -21097,12 +22411,12 @@ packages: /@types/cors@2.8.13: resolution: {integrity: sha512-RG8AStHlUiV5ysZQKq97copd2UmVYw3/pRMLefISZ3S1hK104Cwm7iLQ3fTKx+lsUH2CE8FlLaYeEA2LSeqYUA==} dependencies: - '@types/node': 14.18.42 + '@types/node': 20.8.6 /@types/cross-spawn@6.0.3: resolution: {integrity: sha512-BDAkU7WHHRHnvBf5z89lcvACsvkz/n7Tv+HyD/uW76O29HoH1Tk/W6iQrepaZVbisvlEek4ygwT8IW7ow9XLAA==} dependencies: - '@types/node': 14.18.42 + '@types/node': 12.20.55 dev: true /@types/d3-array@3.0.4: @@ -21315,12 +22629,24 @@ packages: '@types/eslint': 8.44.2 '@types/estree': 1.0.1 + /@types/eslint-scope@3.7.5: + resolution: {integrity: sha512-JNvhIEyxVW6EoMIFIvj93ZOywYFatlpu9deeH6eSx6PE3WHYvHaQtmHmQeNw7aA81bYGBPPQqdtBm6b1SsQMmA==} + dependencies: + '@types/eslint': 8.44.4 + '@types/estree': 1.0.2 + /@types/eslint@8.44.2: resolution: {integrity: sha512-sdPRb9K6iL5XZOmBubg8yiFp5yS/JdUDQsq5e6h95km91MCYMuvp7mh1fjPEYUhvHepKpZOjnEaMBR4PxjWDzg==} dependencies: '@types/estree': 1.0.1 '@types/json-schema': 7.0.12 + /@types/eslint@8.44.4: + resolution: {integrity: sha512-lOzjyfY/D9QR4hY9oblZ76B90MYTB3RrQ4z2vBIJKj9ROCRqdkYl2gSUx1x1a4IWPjKJZLL4Aw1Zfay7eMnmnA==} + dependencies: + '@types/estree': 1.0.2 + '@types/json-schema': 7.0.13 + /@types/estree@0.0.39: resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==} @@ -21333,6 +22659,9 @@ packages: /@types/estree@1.0.1: resolution: {integrity: sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==} + /@types/estree@1.0.2: + resolution: {integrity: sha512-VeiPZ9MMwXjO32/Xu7+OwflfmeoRwkE/qzndw42gGtgJwZopBnzy2gD//NN1+go1mADzkDcqf/KnFRSjTJ8xJA==} + /@types/express-serve-static-core@4.17.33: resolution: {integrity: sha512-TPBqmR/HRYI3eC2E5hmiivIzv+bidAfXofM+sbonAGvyDhySGw9/PQZFt2BLOrjUUR++4eJVpx6KnLQK1Fk9tA==} dependencies: @@ -21367,7 +22696,7 @@ packages: /@types/graceful-fs@4.1.6: resolution: {integrity: sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==} dependencies: - '@types/node': 14.18.42 + '@types/node': 12.20.55 /@types/hast@2.3.4: resolution: {integrity: sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==} @@ -21393,7 +22722,7 @@ packages: /@types/http-proxy@1.17.10: resolution: {integrity: sha512-Qs5aULi+zV1bwKAg5z1PWnDXWmsn+LxIvUGv6E2+OOMYhclZMO+OXd9pYVf2gLykf2I7IV2u7oTHwChPNsvJ7g==} dependencies: - '@types/node': 14.18.42 + '@types/node': 12.20.55 /@types/iframe-resizer@3.5.9: resolution: {integrity: sha512-RQUBI75F+uXruB95BFpC/8V8lPgJg4MQ6HxOCtAZYBB/h0FNCfrFfb4I+u2pZJIV7sKeszZbFqy1UnGeBMrvsA==} @@ -21477,6 +22806,9 @@ packages: /@types/json-schema@7.0.12: resolution: {integrity: sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==} + /@types/json-schema@7.0.13: + resolution: {integrity: sha512-RbSSoHliUbnXj3ny0CNFOoxrIDV6SUGyStHsvDqosw6CkdPV8TtWGlfecuK4ToyMEAql6pzNxgCFKanovUzlgQ==} + /@types/json5@0.0.29: resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} @@ -21587,14 +22919,14 @@ packages: /@types/node-fetch@2.6.3: resolution: {integrity: sha512-ETTL1mOEdq/sxUtgtOhKjyB2Irra4cjxksvcMUR5Zr4n+PxVhsCD9WS46oPbHL3et9Zde7CNRr+WUNlcHvsX+w==} dependencies: - '@types/node': 14.18.42 + '@types/node': 20.8.6 form-data: 3.0.1 dev: false /@types/node-fetch@2.6.5: resolution: {integrity: sha512-OZsUlr2nxvkqUFLSaY2ZbA+P1q22q+KrlxWOn/38RX+u5kTkYL2mTujEpzUhGkS+K/QCYp9oagfXG39XOzyySg==} dependencies: - '@types/node': 14.18.42 + '@types/node': 18.15.11 form-data: 4.0.0 /@types/node-mailjet@3.3.9: @@ -21610,23 +22942,31 @@ packages: /@types/node@16.11.7: resolution: {integrity: sha512-QB5D2sqfSjCmTuWcBWyJ+/44bcjO7VbjSbOE0ucoVbAsSNQc4Lt6QkgkVXkTDwkL4z/beecZNDvVX15D4P8Jbw==} + /@types/node@16.18.58: + resolution: {integrity: sha512-YGncyA25/MaVtQkjWW9r0EFBukZ+JulsLcVZBlGUfIb96OBMjkoRWwQo5IEWJ8Fj06Go3GHw+bjYDitv6BaGsA==} + dev: true + /@types/node@17.0.45: resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==} dev: true /@types/node@18.15.11: resolution: {integrity: sha512-E5Kwq2n4SbMzQOn6wnmBjuK9ouqlURrcZDVfbo9ftDDTFt3nk7ZKK4GMOzoYgnpQJKcxwQw+lGaBvvlMo0qN/Q==} - dev: true /@types/node@18.18.5: resolution: {integrity: sha512-4slmbtwV59ZxitY4ixUZdy1uRLf9eSIvBWPQxNjhHYWEtn0FryfKpyS2cvADYXTayWdKEIsJengncrVvkI4I6A==} - /@types/node@20.4.7: - resolution: {integrity: sha512-bUBrPjEry2QUTsnuEjzjbS7voGWCc30W0qzgMf90GPeDGFRakvrz47ju+oqDAKCXLUCe39u57/ORMl/O/04/9g==} + /@types/node@20.5.1: + resolution: {integrity: sha512-4tT2UrL5LBqDwoed9wZ6N3umC4Yhz3W3FloMmiiG4JwmUJWpie0c7lcnUNd4gtMKuDEO4wRVS8B6Xa0uMRsMKg==} requiresBuild: true dev: true optional: true + /@types/node@20.8.6: + resolution: {integrity: sha512-eWO4K2Ji70QzKUqRy6oyJWUeB7+g2cRagT3T/nxYibYcT4y2BDL8lqolRXjTHmkZCdJfIPaY73KbJAZmcryxTQ==} + dependencies: + undici-types: 5.25.3 + /@types/nodemailer@6.4.11: resolution: {integrity: sha512-Ld2c0frwpGT4VseuoeboCXQ7UJIkK3X7Lx/4YsZEiUHtHsthWAOCYtf6PAiLhMtfwV0cWJRabLBS3+LD8x6Nrw==} dependencies: @@ -21763,7 +23103,7 @@ packages: resolution: {integrity: sha512-whjk1EDJPcAR2kYHRbFl/lKeeKYTi05A15K9bnLInCVroNDCtXce57xKdI0/rQaA3K+6q0eFyUBPmqfSndUZdQ==} dependencies: '@types/caseless': 0.12.2 - '@types/node': 14.18.42 + '@types/node': 20.8.6 '@types/tough-cookie': 4.0.2 form-data: 2.5.1 @@ -21780,7 +23120,7 @@ packages: /@types/resolve@1.17.1: resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==} dependencies: - '@types/node': 14.18.42 + '@types/node': 12.20.55 /@types/resolve@1.20.2: resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} @@ -21813,7 +23153,7 @@ packages: resolution: {integrity: sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ==} dependencies: '@types/mime': 3.0.1 - '@types/node': 14.18.42 + '@types/node': 20.8.6 /@types/sinon@9.0.11: resolution: {integrity: sha512-PwP4UY33SeeVKodNE37ZlOsR9cReypbMJOhZ7BVE0lB+Hix3efCOxiJWiE5Ia+yL9Cn2Ch72EjFTRze8RZsNtg==} @@ -21855,8 +23195,8 @@ packages: dependencies: '@types/node': 14.18.42 - /@types/source-list-map@0.1.2: - resolution: {integrity: sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==} + /@types/source-list-map@0.1.3: + resolution: {integrity: sha512-I9R/7fUjzUOyDy6AFkehCK711wWoAXEaBi80AfjZt1lIkbe6AcXKd3ckQc3liMvQExWvfOeh/8CtKzrfUFN5gA==} dev: false /@types/sparkpost@2.1.5: @@ -21869,7 +23209,7 @@ packages: /@types/ssri@7.1.1: resolution: {integrity: sha512-DPP/jkDaqGiyU75MyMURxLWyYLwKSjnAuGe9ZCsLp9QZOpXmDfuevk769F0BS86TmRuD5krnp06qw9nSoNO+0g==} dependencies: - '@types/node': 14.18.42 + '@types/node': 16.11.7 dev: true /@types/stack-utils@2.0.1: @@ -21888,8 +23228,8 @@ packages: '@types/superagent': 4.1.16 dev: true - /@types/tapable@1.0.8: - resolution: {integrity: sha512-ipixuVrh2OdNmauvtT51o3d8z12p6LtFW9in7U79der/kwejjdNchQC5UMn5u/KxNoM7VHHOs/l8KS8uHxhODQ==} + /@types/tapable@1.0.9: + resolution: {integrity: sha512-fOHIwZua0sRltqWzODGUM6b4ffZrf/vzGUmNXdR+4DzuJP42PMbM5dLKcdzlYvv8bMJ3GALOzkk1q7cDm2zPyA==} dev: false /@types/testing-library__jest-dom@5.14.5: @@ -21901,7 +23241,7 @@ packages: /@types/through@0.0.30: resolution: {integrity: sha512-FvnCJljyxhPM3gkRgWmxmDZyAQSiBQQWLI0A0VFL0K7W1oRUrPJSqNO0NvTnLkBcotdlp3lKvaT0JrnyRDkzOg==} dependencies: - '@types/node': 14.18.42 + '@types/node': 20.8.6 dev: true /@types/tinycolor2@1.4.3: @@ -21920,7 +23260,7 @@ packages: /@types/tunnel@0.0.3: resolution: {integrity: sha512-sOUTGn6h1SfQ+gbgqC364jLFBw2lnFqkgF3q0WovEHRLMrVD1sd5aufqi/aJObLekJO+Aq5z646U4Oxy6shXMA==} dependencies: - '@types/node': 14.18.42 + '@types/node': 20.8.6 dev: false /@types/uglify-js@3.17.2: @@ -21943,21 +23283,21 @@ packages: resolution: {integrity: sha512-xTE1E+YF4aWPJJeUzaZI5DRntlkY3+BCVJi0axFptnjGmAoWxkyREIh/XMrfxVLejwQxMCfDXdICo0VLxThrog==} dev: false - /@types/webpack-sources@3.2.0: - resolution: {integrity: sha512-Ft7YH3lEVRQ6ls8k4Ff1oB4jN6oy/XmU6tQISKdhfh+1mR+viZFphS6WL0IrtDOzvefmJg5a0s7ZQoRXwqTEFg==} + /@types/webpack-sources@3.2.1: + resolution: {integrity: sha512-iLC3Fsx62ejm3ST3PQ8vBMC54Rb3EoCprZjeJGI5q+9QjfDLGt9jeg/k245qz1G9AQnORGk0vqPicJFPT1QODQ==} dependencies: - '@types/node': 14.18.42 - '@types/source-list-map': 0.1.2 + '@types/node': 12.20.55 + '@types/source-list-map': 0.1.3 source-map: 0.7.4 dev: false - /@types/webpack@4.41.33: - resolution: {integrity: sha512-PPajH64Ft2vWevkerISMtnZ8rTs4YmRbs+23c402J0INmxDKCrhZNvwZYtzx96gY2wAtXdrK1BS2fiC8MlLr3g==} + /@types/webpack@4.41.34: + resolution: {integrity: sha512-CN2aOGrR3zbMc2v+cKqzaClYP1ldkpPOgtdNvgX+RmlWCSWxHxpzz6WSCVQZRkF8D60ROlkRzAoEpgjWQ+bd2g==} dependencies: - '@types/node': 14.18.42 - '@types/tapable': 1.0.8 + '@types/node': 12.20.55 + '@types/tapable': 1.0.9 '@types/uglify-js': 3.17.2 - '@types/webpack-sources': 3.2.0 + '@types/webpack-sources': 3.2.1 anymatch: 3.1.3 source-map: 0.6.1 dev: false @@ -21998,11 +23338,11 @@ packages: dependencies: '@types/yargs-parser': 21.0.0 - /@types/yauzl@2.10.0: - resolution: {integrity: sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==} + /@types/yauzl@2.10.1: + resolution: {integrity: sha512-CHzgNU3qYBnp/O4S3yv2tXPlvMTq0YWSTVg2/JYLqWZGHwwgJGAwd00poay/11asPq8wLFwHzubyInqHIFmmiw==} requiresBuild: true dependencies: - '@types/node': 14.18.42 + '@types/node': 12.20.55 optional: true /@types/zen-observable@0.8.3: @@ -22037,7 +23377,7 @@ packages: - supports-color dev: true - /@typescript-eslint/eslint-plugin@5.58.0(@typescript-eslint/parser@5.58.0)(eslint@8.48.0)(typescript@4.9.5): + /@typescript-eslint/eslint-plugin@5.58.0(@typescript-eslint/parser@5.58.0)(eslint@8.51.0)(typescript@4.9.5): resolution: {integrity: sha512-vxHvLhH0qgBd3/tW6/VccptSfc8FxPQIkmNTVLWcCOVqSBvqpnKkBTYrhcGlXfSnd78azwe+PsjYFj0X34/njA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -22049,12 +23389,12 @@ packages: optional: true dependencies: '@eslint-community/regexpp': 4.5.0 - '@typescript-eslint/parser': 5.58.0(eslint@8.48.0)(typescript@4.9.5) + '@typescript-eslint/parser': 5.58.0(eslint@8.51.0)(typescript@4.9.5) '@typescript-eslint/scope-manager': 5.58.0 - '@typescript-eslint/type-utils': 5.58.0(eslint@8.48.0)(typescript@4.9.5) - '@typescript-eslint/utils': 5.58.0(eslint@8.48.0)(typescript@4.9.5) + '@typescript-eslint/type-utils': 5.58.0(eslint@8.51.0)(typescript@4.9.5) + '@typescript-eslint/utils': 5.58.0(eslint@8.51.0)(typescript@4.9.5) debug: 4.3.4(supports-color@8.1.1) - eslint: 8.48.0 + eslint: 8.51.0 grapheme-splitter: 1.0.4 ignore: 5.2.4 natural-compare-lite: 1.4.0 @@ -22082,14 +23422,14 @@ packages: - typescript dev: true - /@typescript-eslint/experimental-utils@5.58.0(eslint@8.48.0)(typescript@4.9.5): + /@typescript-eslint/experimental-utils@5.58.0(eslint@8.51.0)(typescript@4.9.5): resolution: {integrity: sha512-LA/sRPaynZlrlYxdefrZbMx8dqs/1Kc0yNG+XOk5CwwZx7tTv263ix3AJNioF0YBVt7hADpAUR20owl6pv4MIQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: - '@typescript-eslint/utils': 5.58.0(eslint@8.48.0)(typescript@4.9.5) - eslint: 8.48.0 + '@typescript-eslint/utils': 5.58.0(eslint@8.51.0)(typescript@4.9.5) + eslint: 8.51.0 transitivePeerDependencies: - supports-color - typescript @@ -22133,7 +23473,7 @@ packages: transitivePeerDependencies: - supports-color - /@typescript-eslint/parser@5.58.0(eslint@8.48.0)(typescript@4.9.5): + /@typescript-eslint/parser@5.58.0(eslint@8.51.0)(typescript@4.9.5): resolution: {integrity: sha512-ixaM3gRtlfrKzP8N6lRhBbjTow1t6ztfBvQNGuRM8qH1bjFFXIJ35XY+FC0RRBKn3C6cT+7VW1y8tNm7DwPHDQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -22147,7 +23487,7 @@ packages: '@typescript-eslint/types': 5.58.0 '@typescript-eslint/typescript-estree': 5.58.0(typescript@4.9.5) debug: 4.3.4(supports-color@8.1.1) - eslint: 8.48.0 + eslint: 8.51.0 typescript: 4.9.5 transitivePeerDependencies: - supports-color @@ -22187,7 +23527,7 @@ packages: - supports-color dev: true - /@typescript-eslint/type-utils@5.58.0(eslint@8.48.0)(typescript@4.9.5): + /@typescript-eslint/type-utils@5.58.0(eslint@8.51.0)(typescript@4.9.5): resolution: {integrity: sha512-FF5vP/SKAFJ+LmR9PENql7fQVVgGDOS+dq3j+cKl9iW/9VuZC/8CFmzIP0DLKXfWKpRHawJiG70rVH+xZZbp8w==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -22198,9 +23538,9 @@ packages: optional: true dependencies: '@typescript-eslint/typescript-estree': 5.58.0(typescript@4.9.5) - '@typescript-eslint/utils': 5.58.0(eslint@8.48.0)(typescript@4.9.5) + '@typescript-eslint/utils': 5.58.0(eslint@8.51.0)(typescript@4.9.5) debug: 4.3.4(supports-color@8.1.1) - eslint: 8.48.0 + eslint: 8.51.0 tsutils: 3.21.0(typescript@4.9.5) typescript: 4.9.5 transitivePeerDependencies: @@ -22276,19 +23616,19 @@ packages: - typescript dev: true - /@typescript-eslint/utils@5.58.0(eslint@8.48.0)(typescript@4.9.5): + /@typescript-eslint/utils@5.58.0(eslint@8.51.0)(typescript@4.9.5): resolution: {integrity: sha512-gAmLOTFXMXOC+zP1fsqm3VceKSBQJNzV385Ok3+yzlavNHZoedajjS4UyS21gabJYcobuigQPs/z71A9MdJFqQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.48.0) + '@eslint-community/eslint-utils': 4.4.0(eslint@8.51.0) '@types/json-schema': 7.0.12 '@types/semver': 7.3.13 '@typescript-eslint/scope-manager': 5.58.0 '@typescript-eslint/types': 5.58.0 '@typescript-eslint/typescript-estree': 5.58.0(typescript@4.9.5) - eslint: 8.48.0 + eslint: 8.51.0 eslint-scope: 5.1.1 semver: 7.5.4 transitivePeerDependencies: @@ -22543,24 +23883,39 @@ packages: '@webassemblyjs/helper-numbers': 1.11.5 '@webassemblyjs/helper-wasm-bytecode': 1.11.5 + /@webassemblyjs/ast@1.11.6: + resolution: {integrity: sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==} + dependencies: + '@webassemblyjs/helper-numbers': 1.11.6 + '@webassemblyjs/helper-wasm-bytecode': 1.11.6 + /@webassemblyjs/floating-point-hex-parser@1.11.1: resolution: {integrity: sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==} /@webassemblyjs/floating-point-hex-parser@1.11.5: resolution: {integrity: sha512-1j1zTIC5EZOtCplMBG/IEwLtUojtwFVwdyVMbL/hwWqbzlQoJsWCOavrdnLkemwNoC/EOwtUFch3fuo+cbcXYQ==} + /@webassemblyjs/floating-point-hex-parser@1.11.6: + resolution: {integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==} + /@webassemblyjs/helper-api-error@1.11.1: resolution: {integrity: sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==} /@webassemblyjs/helper-api-error@1.11.5: resolution: {integrity: sha512-L65bDPmfpY0+yFrsgz8b6LhXmbbs38OnwDCf6NpnMUYqa+ENfE5Dq9E42ny0qz/PdR0LJyq/T5YijPnU8AXEpA==} + /@webassemblyjs/helper-api-error@1.11.6: + resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==} + /@webassemblyjs/helper-buffer@1.11.1: resolution: {integrity: sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==} /@webassemblyjs/helper-buffer@1.11.5: resolution: {integrity: sha512-fDKo1gstwFFSfacIeH5KfwzjykIE6ldh1iH9Y/8YkAZrhmu4TctqYjSh7t0K2VyDSXOZJ1MLhht/k9IvYGcIxg==} + /@webassemblyjs/helper-buffer@1.11.6: + resolution: {integrity: sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==} + /@webassemblyjs/helper-numbers@1.11.1: resolution: {integrity: sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==} dependencies: @@ -22575,12 +23930,22 @@ packages: '@webassemblyjs/helper-api-error': 1.11.5 '@xtuc/long': 4.2.2 + /@webassemblyjs/helper-numbers@1.11.6: + resolution: {integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==} + dependencies: + '@webassemblyjs/floating-point-hex-parser': 1.11.6 + '@webassemblyjs/helper-api-error': 1.11.6 + '@xtuc/long': 4.2.2 + /@webassemblyjs/helper-wasm-bytecode@1.11.1: resolution: {integrity: sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==} /@webassemblyjs/helper-wasm-bytecode@1.11.5: resolution: {integrity: sha512-oC4Qa0bNcqnjAowFn7MPCETQgDYytpsfvz4ujZz63Zu/a/v71HeCAAmZsgZ3YVKec3zSPYytG3/PrRCqbtcAvA==} + /@webassemblyjs/helper-wasm-bytecode@1.11.6: + resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==} + /@webassemblyjs/helper-wasm-section@1.11.1: resolution: {integrity: sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==} dependencies: @@ -22597,6 +23962,14 @@ packages: '@webassemblyjs/helper-wasm-bytecode': 1.11.5 '@webassemblyjs/wasm-gen': 1.11.5 + /@webassemblyjs/helper-wasm-section@1.11.6: + resolution: {integrity: sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==} + dependencies: + '@webassemblyjs/ast': 1.11.6 + '@webassemblyjs/helper-buffer': 1.11.6 + '@webassemblyjs/helper-wasm-bytecode': 1.11.6 + '@webassemblyjs/wasm-gen': 1.11.6 + /@webassemblyjs/ieee754@1.11.1: resolution: {integrity: sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==} dependencies: @@ -22607,6 +23980,11 @@ packages: dependencies: '@xtuc/ieee754': 1.2.0 + /@webassemblyjs/ieee754@1.11.6: + resolution: {integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==} + dependencies: + '@xtuc/ieee754': 1.2.0 + /@webassemblyjs/leb128@1.11.1: resolution: {integrity: sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==} dependencies: @@ -22617,12 +23995,20 @@ packages: dependencies: '@xtuc/long': 4.2.2 + /@webassemblyjs/leb128@1.11.6: + resolution: {integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==} + dependencies: + '@xtuc/long': 4.2.2 + /@webassemblyjs/utf8@1.11.1: resolution: {integrity: sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==} /@webassemblyjs/utf8@1.11.5: resolution: {integrity: sha512-WiOhulHKTZU5UPlRl53gHR8OxdGsSOxqfpqWeA2FmcwBMaoEdz6b2x2si3IwC9/fSPLfe8pBMRTHVMk5nlwnFQ==} + /@webassemblyjs/utf8@1.11.6: + resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==} + /@webassemblyjs/wasm-edit@1.11.1: resolution: {integrity: sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==} dependencies: @@ -22647,6 +24033,18 @@ packages: '@webassemblyjs/wasm-parser': 1.11.5 '@webassemblyjs/wast-printer': 1.11.5 + /@webassemblyjs/wasm-edit@1.11.6: + resolution: {integrity: sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==} + dependencies: + '@webassemblyjs/ast': 1.11.6 + '@webassemblyjs/helper-buffer': 1.11.6 + '@webassemblyjs/helper-wasm-bytecode': 1.11.6 + '@webassemblyjs/helper-wasm-section': 1.11.6 + '@webassemblyjs/wasm-gen': 1.11.6 + '@webassemblyjs/wasm-opt': 1.11.6 + '@webassemblyjs/wasm-parser': 1.11.6 + '@webassemblyjs/wast-printer': 1.11.6 + /@webassemblyjs/wasm-gen@1.11.1: resolution: {integrity: sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==} dependencies: @@ -22665,6 +24063,15 @@ packages: '@webassemblyjs/leb128': 1.11.5 '@webassemblyjs/utf8': 1.11.5 + /@webassemblyjs/wasm-gen@1.11.6: + resolution: {integrity: sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==} + dependencies: + '@webassemblyjs/ast': 1.11.6 + '@webassemblyjs/helper-wasm-bytecode': 1.11.6 + '@webassemblyjs/ieee754': 1.11.6 + '@webassemblyjs/leb128': 1.11.6 + '@webassemblyjs/utf8': 1.11.6 + /@webassemblyjs/wasm-opt@1.11.1: resolution: {integrity: sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==} dependencies: @@ -22681,6 +24088,14 @@ packages: '@webassemblyjs/wasm-gen': 1.11.5 '@webassemblyjs/wasm-parser': 1.11.5 + /@webassemblyjs/wasm-opt@1.11.6: + resolution: {integrity: sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==} + dependencies: + '@webassemblyjs/ast': 1.11.6 + '@webassemblyjs/helper-buffer': 1.11.6 + '@webassemblyjs/wasm-gen': 1.11.6 + '@webassemblyjs/wasm-parser': 1.11.6 + /@webassemblyjs/wasm-parser@1.11.1: resolution: {integrity: sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==} dependencies: @@ -22701,6 +24116,16 @@ packages: '@webassemblyjs/leb128': 1.11.5 '@webassemblyjs/utf8': 1.11.5 + /@webassemblyjs/wasm-parser@1.11.6: + resolution: {integrity: sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==} + dependencies: + '@webassemblyjs/ast': 1.11.6 + '@webassemblyjs/helper-api-error': 1.11.6 + '@webassemblyjs/helper-wasm-bytecode': 1.11.6 + '@webassemblyjs/ieee754': 1.11.6 + '@webassemblyjs/leb128': 1.11.6 + '@webassemblyjs/utf8': 1.11.6 + /@webassemblyjs/wast-printer@1.11.1: resolution: {integrity: sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==} dependencies: @@ -22713,6 +24138,12 @@ packages: '@webassemblyjs/ast': 1.11.5 '@xtuc/long': 4.2.2 + /@webassemblyjs/wast-printer@1.11.6: + resolution: {integrity: sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==} + dependencies: + '@webassemblyjs/ast': 1.11.6 + '@xtuc/long': 4.2.2 + /@webpack-cli/configtest@2.1.1(webpack-cli@5.1.4)(webpack@5.82.1): resolution: {integrity: sha512-wy0mglZpDSiSS0XHrVR+BAdId2+yxPSoJW8fsna3ZpYSlufjvxnP4YbKTCBZnNIcGN4r6ZPXV55X4mYExOfLmw==} engines: {node: '>=14.15.0'} @@ -22800,7 +24231,7 @@ packages: engines: {node: '>=14.15.0'} dependencies: js-yaml: 3.14.1 - tslib: 2.6.2 + tslib: 2.5.0 /@zkochan/js-yaml@0.0.6: resolution: {integrity: sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==} @@ -22874,6 +24305,13 @@ packages: dependencies: acorn: 8.10.0 + /acorn-import-assertions@1.9.0(acorn@8.8.2): + resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==} + peerDependencies: + acorn: ^8 + dependencies: + acorn: 8.8.2 + /acorn-jsx@5.3.2(acorn@7.4.1): resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} peerDependencies: @@ -23530,8 +24968,8 @@ packages: engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 + define-properties: 1.2.1 + es-abstract: 1.22.2 get-intrinsic: 1.2.1 is-string: 1.0.7 @@ -23578,8 +25016,8 @@ packages: resolution: {integrity: sha512-DRumkfW97iZGOfn+lIXbkVrXL04sfYKX+EfOodo8XboR5sxPDVvOjZTF/rysusa9lmhmSOeD6Vp6RKQP+eP4Tg==} dependencies: call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 + define-properties: 1.2.1 + es-abstract: 1.22.2 es-shim-unscopables: 1.0.0 /array.prototype.findlastindex@1.2.3: @@ -23587,8 +25025,8 @@ packages: engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 + define-properties: 1.2.1 + es-abstract: 1.22.2 es-shim-unscopables: 1.0.0 get-intrinsic: 1.2.1 @@ -23597,8 +25035,8 @@ packages: engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 + define-properties: 1.2.1 + es-abstract: 1.22.2 es-shim-unscopables: 1.0.0 /array.prototype.flatmap@1.3.1: @@ -23606,8 +25044,8 @@ packages: engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 + define-properties: 1.2.1 + es-abstract: 1.22.2 es-shim-unscopables: 1.0.0 /array.prototype.reduce@1.0.6: @@ -23615,8 +25053,8 @@ packages: engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 + define-properties: 1.2.1 + es-abstract: 1.22.2 es-array-method-boxes-properly: 1.0.0 is-string: 1.0.7 @@ -23624,18 +25062,19 @@ packages: resolution: {integrity: sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==} dependencies: call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 + define-properties: 1.2.1 + es-abstract: 1.22.2 es-shim-unscopables: 1.0.0 get-intrinsic: 1.2.1 - /arraybuffer.prototype.slice@1.0.1: - resolution: {integrity: sha512-09x0ZWFEjj4WD8PDbykUwo3t9arLn8NIzmmYEJFpYekOAQjpkGSyrQhNoRTcwwcFRu+ycWF78QZ63oWTqSjBcw==} + /arraybuffer.prototype.slice@1.0.2: + resolution: {integrity: sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==} engines: {node: '>= 0.4'} dependencies: array-buffer-byte-length: 1.0.0 call-bind: 1.0.2 - define-properties: 1.2.0 + define-properties: 1.2.1 + es-abstract: 1.22.2 get-intrinsic: 1.2.1 is-array-buffer: 3.0.2 is-shared-array-buffer: 1.0.2 @@ -23706,14 +25145,14 @@ packages: resolution: {integrity: sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==} engines: {node: '>=4'} dependencies: - tslib: 2.6.2 + tslib: 2.5.0 dev: true /ast-types@0.16.1: resolution: {integrity: sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==} engines: {node: '>=4'} dependencies: - tslib: 2.6.2 + tslib: 2.5.0 /astral-regex@2.0.0: resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} @@ -24018,16 +25457,16 @@ packages: loader-utils: 2.0.4 make-dir: 3.1.0 schema-utils: 2.7.1 - webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) + webpack: 5.78.0(@swc/core@1.3.49) - /babel-loader@8.3.0(@babel/core@7.22.11)(webpack@5.82.1): + /babel-loader@8.3.0(@babel/core@7.23.2)(webpack@5.82.1): resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==} engines: {node: '>= 8.9'} peerDependencies: '@babel/core': ^7.0.0 webpack: '>=2' dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 find-cache-dir: 3.3.2 loader-utils: 2.0.4 make-dir: 3.1.0 @@ -24167,6 +25606,18 @@ packages: transitivePeerDependencies: - supports-color + /babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.23.2): + resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.22.20 + '@babel/core': 7.23.2 + '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.23.2) + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + /babel-plugin-polyfill-corejs2@0.4.5(@babel/core@7.22.11): resolution: {integrity: sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg==} peerDependencies: @@ -24179,6 +25630,19 @@ packages: transitivePeerDependencies: - supports-color + /babel-plugin-polyfill-corejs2@0.4.5(@babel/core@7.23.2): + resolution: {integrity: sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + dependencies: + '@babel/compat-data': 7.22.20 + '@babel/core': 7.23.2 + '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.23.2) + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + dev: true + /babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.20.12): resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==} peerDependencies: @@ -24202,6 +25666,17 @@ packages: transitivePeerDependencies: - supports-color + /babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.23.2): + resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.23.2) + core-js-compat: 3.32.2 + transitivePeerDependencies: + - supports-color + /babel-plugin-polyfill-corejs3@0.8.3(@babel/core@7.22.11): resolution: {integrity: sha512-z41XaniZL26WLrvjy7soabMXrfPWARN25PZoriDEiLMxAp50AUW3t35BGQUMg5xK3UrpVTtagIDklxYa+MhiNA==} peerDependencies: @@ -24213,6 +25688,18 @@ packages: transitivePeerDependencies: - supports-color + /babel-plugin-polyfill-corejs3@0.8.3(@babel/core@7.23.2): + resolution: {integrity: sha512-z41XaniZL26WLrvjy7soabMXrfPWARN25PZoriDEiLMxAp50AUW3t35BGQUMg5xK3UrpVTtagIDklxYa+MhiNA==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.23.2) + core-js-compat: 3.32.2 + transitivePeerDependencies: + - supports-color + dev: true + /babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.20.12): resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==} peerDependencies: @@ -24234,6 +25721,16 @@ packages: transitivePeerDependencies: - supports-color + /babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.23.2): + resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.23.2) + transitivePeerDependencies: + - supports-color + /babel-plugin-polyfill-regenerator@0.5.2(@babel/core@7.22.11): resolution: {integrity: sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA==} peerDependencies: @@ -24244,6 +25741,17 @@ packages: transitivePeerDependencies: - supports-color + /babel-plugin-polyfill-regenerator@0.5.2(@babel/core@7.23.2): + resolution: {integrity: sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.23.2) + transitivePeerDependencies: + - supports-color + dev: true + /babel-plugin-react-docgen@4.2.1: resolution: {integrity: sha512-UQ0NmGHj/HAqi5Bew8WvNfCk8wSsmdgNd8ZdMjBCICtyCJCq9LiqgqvjCYe570/Wg7AQArSq1VQ60Dd/CHN7mQ==} dependencies: @@ -24695,6 +26203,16 @@ packages: node-releases: 2.0.13 update-browserslist-db: 1.0.11(browserslist@4.21.5) + /browserslist@4.22.1: + resolution: {integrity: sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + dependencies: + caniuse-lite: 1.0.30001549 + electron-to-chromium: 1.4.554 + node-releases: 2.0.13 + update-browserslist-db: 1.0.13(browserslist@4.22.1) + /bs-logger@0.2.6: resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==} engines: {node: '>= 6'} @@ -24947,7 +26465,7 @@ packages: /call-bind@1.0.2: resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} dependencies: - function-bind: 1.1.1 + function-bind: 1.1.2 get-intrinsic: 1.2.1 /caller-callsite@2.0.0: @@ -25053,6 +26571,9 @@ packages: /caniuse-lite@1.0.30001525: resolution: {integrity: sha512-/3z+wB4icFt3r0USMwxujAqRvaD/B7rvGTsKhbhSQErVrJvkZCLhgNLJxU8MevahQVH6hCU9FsHdNUFbiwmE7Q==} + /caniuse-lite@1.0.30001549: + resolution: {integrity: sha512-qRp48dPYSCYaP+KurZLhDYdVE+yEyht/3NlmcJgVQ2VMGt6JL36ndQ/7rgspdZsJuxDPFIo/OzBT2+GmIJ53BA==} + /cardinal@2.1.1: resolution: {integrity: sha512-JSr5eOgoEymtYHBjNWyjrMqet9Am2miJhlfKNdqLp6zoeAh0KN5dRAcxlecj5mAJrmQomgiOBj35xHLrFjqBpw==} hasBin: true @@ -25146,8 +26667,8 @@ packages: ansi-styles: 4.3.0 supports-color: 7.2.0 - /chalk@5.2.0: - resolution: {integrity: sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==} + /chalk@5.3.0: + resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==} engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} dev: true @@ -26141,7 +27662,7 @@ packages: typescript: 4.9.5 dev: true - /cosmiconfig-typescript-loader@4.3.0(@types/node@20.4.7)(cosmiconfig@8.2.0)(ts-node@10.9.1)(typescript@4.9.5): + /cosmiconfig-typescript-loader@4.3.0(@types/node@20.5.1)(cosmiconfig@8.2.0)(ts-node@10.9.1)(typescript@4.9.5): resolution: {integrity: sha512-NTxV1MFfZDLPiBMjxbHRwSh5LaLcPMwNdCutmnHJCKoVnlvldPWlllonKwrsRJ5pYZBIBGRWWU2tfvzxgeSW5Q==} engines: {node: '>=12', npm: '>=6'} peerDependencies: @@ -26150,9 +27671,9 @@ packages: ts-node: '>=10' typescript: '>=3' dependencies: - '@types/node': 20.4.7 + '@types/node': 20.5.1 cosmiconfig: 8.2.0 - ts-node: 10.9.1(@swc/core@1.3.49)(@types/node@20.4.7)(typescript@4.9.5) + ts-node: 10.9.1(@swc/core@1.3.49)(@types/node@20.5.1)(typescript@4.9.5) typescript: 4.9.5 dev: true optional: true @@ -26663,7 +28184,7 @@ packages: postcss-modules-scope: 3.0.0(postcss@8.4.29) postcss-modules-values: 4.0.0(postcss@8.4.29) postcss-value-parser: 4.2.0 - semver: 7.5.4 + semver: 7.3.8 webpack: 5.76.1(@swc/core@1.3.49)(esbuild@0.17.8) dev: true @@ -26681,7 +28202,7 @@ packages: postcss-modules-values: 4.0.0(postcss@8.4.29) postcss-value-parser: 4.2.0 semver: 7.5.4 - webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) + webpack: 5.78.0(@swc/core@1.3.49) /css-minimizer-webpack-plugin@3.4.1(esbuild@0.18.20)(webpack@5.78.0): resolution: {integrity: sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==} @@ -26737,7 +28258,6 @@ packages: serialize-javascript: 6.0.1 source-map: 0.6.1 webpack: 5.78.0(@swc/core@1.3.49) - dev: false /css-prefers-color-scheme@6.0.3(postcss@8.4.21): resolution: {integrity: sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==} @@ -27027,7 +28547,7 @@ packages: longest: 2.0.1 word-wrap: 1.2.5 optionalDependencies: - '@commitlint/load': 17.7.1(@swc/core@1.3.49) + '@commitlint/load': 17.8.0(@swc/core@1.3.49) transitivePeerDependencies: - '@swc/core' - '@swc/wasm' @@ -27190,7 +28710,6 @@ packages: dependencies: ms: 2.1.3 supports-color: 5.5.0 - dev: true /debug@3.2.7(supports-color@8.1.1): resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} @@ -27304,7 +28823,7 @@ packages: object-is: 1.1.5 object-keys: 1.1.1 object.assign: 4.1.4 - regexp.prototype.flags: 1.5.0 + regexp.prototype.flags: 1.5.1 side-channel: 1.0.4 which-boxed-primitive: 1.0.2 which-collection: 1.0.1 @@ -27348,14 +28867,23 @@ packages: dependencies: clone: 1.0.4 + /define-data-property@1.1.1: + resolution: {integrity: sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==} + engines: {node: '>= 0.4'} + dependencies: + get-intrinsic: 1.2.1 + gopd: 1.0.1 + has-property-descriptors: 1.0.0 + /define-lazy-prop@2.0.0: resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} engines: {node: '>=8'} - /define-properties@1.2.0: - resolution: {integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==} + /define-properties@1.2.1: + resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} engines: {node: '>= 0.4'} dependencies: + define-data-property: 1.1.1 has-property-descriptors: 1.0.0 object-keys: 1.1.1 @@ -27545,6 +29073,11 @@ packages: engines: {node: '>=0.3.1'} dev: true + /diff@5.1.0: + resolution: {integrity: sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==} + engines: {node: '>=0.3.1'} + dev: true + /dir-glob@2.2.2: resolution: {integrity: sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==} engines: {node: '>=4'} @@ -27805,6 +29338,9 @@ packages: /electron-to-chromium@1.4.508: resolution: {integrity: sha512-FFa8QKjQK/A5QuFr2167myhMesGrhlOBD+3cYNxO9/S4XzHEXesyTD/1/xF644gC8buFPz3ca6G1LOQD0tZrrg==} + /electron-to-chromium@1.4.554: + resolution: {integrity: sha512-Q0umzPJjfBrrj8unkONTgbKQXzXRrH7sVV7D9ea2yBV3Oaogz991yhbpfvo2LMNkJItmruXTEzVpP9cp7vaIiQ==} + /elegant-spinner@1.0.1: resolution: {integrity: sha512-B+ZM+RXvRqQaAmkMlO/oSe5nMUOaUnyfGYCEHoR8wrXsZR2mA0XVibsxV1bvTwxdRWah1PkQqso2EzhILGHtEQ==} engines: {node: '>=0.10.0'} @@ -27909,7 +29445,7 @@ packages: dependencies: '@types/cookie': 0.4.1 '@types/cors': 2.8.13 - '@types/node': 14.18.42 + '@types/node': 20.8.6 accepts: 1.3.8 base64id: 2.0.0 cookie: 0.4.2 @@ -27963,6 +29499,11 @@ packages: /entities@4.4.0: resolution: {integrity: sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==} engines: {node: '>=0.12'} + dev: false + + /entities@4.5.0: + resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} + engines: {node: '>=0.12'} /env-ci@5.5.0: resolution: {integrity: sha512-o0JdWIbOLP+WJKIUt36hz1ImQQFuN92nhsfTkHHap+J8CiI8WgGpH/a9jEGHh4/TU5BUUGjlnKXNoDb57+ne+A==} @@ -28021,12 +29562,12 @@ packages: dependencies: stackframe: 1.3.4 - /es-abstract@1.22.1: - resolution: {integrity: sha512-ioRRcXMO6OFyRpyzV3kE1IIBd4WG5/kltnzdxSCqoP8CMGs/Li+M1uF5o7lOkZVFjDs+NLesthnF66Pg/0q0Lw==} + /es-abstract@1.22.2: + resolution: {integrity: sha512-YoxfFcDmhjOgWPWsV13+2RNjq1F6UQnfs+8TftwNqtzlmFzEXvlUwdrNrYeaizfjQzRMxkZ6ElWMOJIFKdVqwA==} engines: {node: '>= 0.4'} dependencies: array-buffer-byte-length: 1.0.0 - arraybuffer.prototype.slice: 1.0.1 + arraybuffer.prototype.slice: 1.0.2 available-typed-arrays: 1.0.5 call-bind: 1.0.2 es-set-tostringtag: 2.0.1 @@ -28036,7 +29577,7 @@ packages: get-symbol-description: 1.0.0 globalthis: 1.0.3 gopd: 1.0.1 - has: 1.0.3 + has: 1.0.4 has-property-descriptors: 1.0.0 has-proto: 1.0.1 has-symbols: 1.0.3 @@ -28049,15 +29590,15 @@ packages: is-string: 1.0.7 is-typed-array: 1.1.12 is-weakref: 1.0.2 - object-inspect: 1.12.3 + object-inspect: 1.13.0 object-keys: 1.1.1 object.assign: 4.1.4 - regexp.prototype.flags: 1.5.0 - safe-array-concat: 1.0.0 + regexp.prototype.flags: 1.5.1 + safe-array-concat: 1.0.1 safe-regex-test: 1.0.0 - string.prototype.trim: 1.2.7 - string.prototype.trimend: 1.0.6 - string.prototype.trimstart: 1.0.6 + string.prototype.trim: 1.2.8 + string.prototype.trimend: 1.0.7 + string.prototype.trimstart: 1.0.7 typed-array-buffer: 1.0.0 typed-array-byte-length: 1.0.0 typed-array-byte-offset: 1.0.0 @@ -28087,12 +29628,15 @@ packages: /es-module-lexer@1.2.1: resolution: {integrity: sha512-9978wrXM50Y4rTMmW5kXIC09ZdXQZqkE4mxhwkd8VbzsGkXGPgV4zWuqQJgCEzYngdo2dYDa0l8xhX4fkSwJSg==} + /es-module-lexer@1.3.1: + resolution: {integrity: sha512-JUFAyicQV9mXc3YRxPnDlrfBKpqt6hUYzz9/boprUJHs4e4KVr3XwOF70doO6gwXUor6EWZJAyWAfKki84t20Q==} + /es-set-tostringtag@2.0.1: resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==} engines: {node: '>= 0.4'} dependencies: get-intrinsic: 1.2.1 - has: 1.0.3 + has: 1.0.4 has-tostringtag: 1.0.0 /es-shim-unscopables@1.0.0: @@ -28138,34 +29682,34 @@ packages: hasBin: true dev: true - /esbuild@0.17.16: - resolution: {integrity: sha512-aeSuUKr9aFVY9Dc8ETVELGgkj4urg5isYx8pLf4wlGgB0vTFjxJQdHnNH6Shmx4vYYrOTLCHtRI5i1XZ9l2Zcg==} + /esbuild@0.17.19: + resolution: {integrity: sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw==} engines: {node: '>=12'} hasBin: true requiresBuild: true optionalDependencies: - '@esbuild/android-arm': 0.17.16 - '@esbuild/android-arm64': 0.17.16 - '@esbuild/android-x64': 0.17.16 - '@esbuild/darwin-arm64': 0.17.16 - '@esbuild/darwin-x64': 0.17.16 - '@esbuild/freebsd-arm64': 0.17.16 - '@esbuild/freebsd-x64': 0.17.16 - '@esbuild/linux-arm': 0.17.16 - '@esbuild/linux-arm64': 0.17.16 - '@esbuild/linux-ia32': 0.17.16 - '@esbuild/linux-loong64': 0.17.16 - '@esbuild/linux-mips64el': 0.17.16 - '@esbuild/linux-ppc64': 0.17.16 - '@esbuild/linux-riscv64': 0.17.16 - '@esbuild/linux-s390x': 0.17.16 - '@esbuild/linux-x64': 0.17.16 - '@esbuild/netbsd-x64': 0.17.16 - '@esbuild/openbsd-x64': 0.17.16 - '@esbuild/sunos-x64': 0.17.16 - '@esbuild/win32-arm64': 0.17.16 - '@esbuild/win32-ia32': 0.17.16 - '@esbuild/win32-x64': 0.17.16 + '@esbuild/android-arm': 0.17.19 + '@esbuild/android-arm64': 0.17.19 + '@esbuild/android-x64': 0.17.19 + '@esbuild/darwin-arm64': 0.17.19 + '@esbuild/darwin-x64': 0.17.19 + '@esbuild/freebsd-arm64': 0.17.19 + '@esbuild/freebsd-x64': 0.17.19 + '@esbuild/linux-arm': 0.17.19 + '@esbuild/linux-arm64': 0.17.19 + '@esbuild/linux-ia32': 0.17.19 + '@esbuild/linux-loong64': 0.17.19 + '@esbuild/linux-mips64el': 0.17.19 + '@esbuild/linux-ppc64': 0.17.19 + '@esbuild/linux-riscv64': 0.17.19 + '@esbuild/linux-s390x': 0.17.19 + '@esbuild/linux-x64': 0.17.19 + '@esbuild/netbsd-x64': 0.17.19 + '@esbuild/openbsd-x64': 0.17.19 + '@esbuild/sunos-x64': 0.17.19 + '@esbuild/win32-arm64': 0.17.19 + '@esbuild/win32-ia32': 0.17.19 + '@esbuild/win32-x64': 0.17.19 dev: true optional: true @@ -28317,7 +29861,7 @@ packages: eslint: 8.38.0 dev: true - /eslint-config-react-app@7.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint-import-resolver-webpack@0.13.7)(eslint@8.48.0)(jest@27.5.1)(typescript@4.9.5): + /eslint-config-react-app@7.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint-import-resolver-webpack@0.13.7)(eslint@8.51.0)(jest@27.5.1)(typescript@4.9.5): resolution: {integrity: sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==} engines: {node: '>=14.0.0'} peerDependencies: @@ -28328,20 +29872,20 @@ packages: optional: true dependencies: '@babel/core': 7.22.11 - '@babel/eslint-parser': 7.21.3(@babel/core@7.22.11)(eslint@8.48.0) + '@babel/eslint-parser': 7.21.3(@babel/core@7.22.11)(eslint@8.51.0) '@rushstack/eslint-patch': 1.2.0 - '@typescript-eslint/eslint-plugin': 5.58.0(@typescript-eslint/parser@5.58.0)(eslint@8.48.0)(typescript@4.9.5) - '@typescript-eslint/parser': 5.58.0(eslint@8.48.0)(typescript@4.9.5) + '@typescript-eslint/eslint-plugin': 5.58.0(@typescript-eslint/parser@5.58.0)(eslint@8.51.0)(typescript@4.9.5) + '@typescript-eslint/parser': 5.58.0(eslint@8.51.0)(typescript@4.9.5) babel-preset-react-app: 10.0.1 confusing-browser-globals: 1.0.11 - eslint: 8.48.0 - eslint-plugin-flowtype: 8.0.3(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint@8.48.0) - eslint-plugin-import: 2.28.1(@typescript-eslint/parser@5.58.0)(eslint-import-resolver-webpack@0.13.7)(eslint@8.48.0) - eslint-plugin-jest: 25.7.0(@typescript-eslint/eslint-plugin@5.58.0)(eslint@8.48.0)(jest@27.5.1)(typescript@4.9.5) - eslint-plugin-jsx-a11y: 6.7.1(eslint@8.48.0) - eslint-plugin-react: 7.32.2(eslint@8.48.0) - eslint-plugin-react-hooks: 4.6.0(eslint@8.48.0) - eslint-plugin-testing-library: 5.10.2(eslint@8.48.0)(typescript@4.9.5) + eslint: 8.51.0 + eslint-plugin-flowtype: 8.0.3(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint@8.51.0) + eslint-plugin-import: 2.28.1(@typescript-eslint/parser@5.58.0)(eslint-import-resolver-webpack@0.13.7)(eslint@8.51.0) + eslint-plugin-jest: 25.7.0(@typescript-eslint/eslint-plugin@5.58.0)(eslint@8.51.0)(jest@27.5.1)(typescript@4.9.5) + eslint-plugin-jsx-a11y: 6.7.1(eslint@8.51.0) + eslint-plugin-react: 7.32.2(eslint@8.51.0) + eslint-plugin-react-hooks: 4.6.0(eslint@8.51.0) + eslint-plugin-testing-library: 5.10.2(eslint@8.51.0)(typescript@4.9.5) typescript: 4.9.5 transitivePeerDependencies: - '@babel/plugin-syntax-flow' @@ -28354,13 +29898,13 @@ packages: /eslint-import-resolver-node@0.3.7: resolution: {integrity: sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==} dependencies: - debug: 3.2.7(supports-color@8.1.1) + debug: 3.2.7(supports-color@5.5.0) is-core-module: 2.13.0 resolve: 1.22.2 transitivePeerDependencies: - supports-color - /eslint-import-resolver-webpack@0.13.7(eslint-plugin-import@2.28.1)(webpack@5.78.0): + /eslint-import-resolver-webpack@0.13.7(eslint-plugin-import@2.28.1)(webpack@5.89.0): resolution: {integrity: sha512-2a+meyMeABBRO4K53Oj1ygkmt5lhQS79Lmx2f684Qnv6gjvD4RLOM5jfPGTXwQ0A2K03WSoKt3HRQu/uBgxF7w==} engines: {node: '>= 6'} peerDependencies: @@ -28368,7 +29912,7 @@ packages: webpack: '>=1.11.0' dependencies: array.prototype.find: 2.2.2 - debug: 3.2.7(supports-color@8.1.1) + debug: 3.2.7(supports-color@5.5.0) enhanced-resolve: 0.9.1 eslint-plugin-import: 2.28.1(@typescript-eslint/parser@5.58.0)(eslint-import-resolver-webpack@0.13.7)(eslint@8.38.0) find-root: 1.1.0 @@ -28379,7 +29923,7 @@ packages: lodash: 4.17.21 resolve: 2.0.0-next.4 semver: 5.7.2 - webpack: 5.78.0(@swc/core@1.3.49) + webpack: 5.89.0(@swc/core@1.3.49) transitivePeerDependencies: - supports-color @@ -28405,14 +29949,14 @@ packages: optional: true dependencies: '@typescript-eslint/parser': 5.58.0(eslint@8.38.0)(typescript@4.9.5) - debug: 3.2.7(supports-color@8.1.1) + debug: 3.2.7(supports-color@5.5.0) eslint: 8.38.0 eslint-import-resolver-node: 0.3.7 - eslint-import-resolver-webpack: 0.13.7(eslint-plugin-import@2.28.1)(webpack@5.78.0) + eslint-import-resolver-webpack: 0.13.7(eslint-plugin-import@2.28.1)(webpack@5.89.0) transitivePeerDependencies: - supports-color - /eslint-module-utils@2.8.0(@typescript-eslint/parser@5.58.0)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-webpack@0.13.7)(eslint@8.48.0): + /eslint-module-utils@2.8.0(@typescript-eslint/parser@5.58.0)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-webpack@0.13.7)(eslint@8.51.0): resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} engines: {node: '>=4'} peerDependencies: @@ -28433,20 +29977,20 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 5.58.0(eslint@8.48.0)(typescript@4.9.5) - debug: 3.2.7(supports-color@8.1.1) - eslint: 8.48.0 + '@typescript-eslint/parser': 5.58.0(eslint@8.51.0)(typescript@4.9.5) + debug: 3.2.7(supports-color@5.5.0) + eslint: 8.51.0 eslint-import-resolver-node: 0.3.7 - eslint-import-resolver-webpack: 0.13.7(eslint-plugin-import@2.28.1)(webpack@5.78.0) + eslint-import-resolver-webpack: 0.13.7(eslint-plugin-import@2.28.1)(webpack@5.89.0) transitivePeerDependencies: - supports-color - /eslint-plugin-cypress@2.15.1(eslint@8.48.0): + /eslint-plugin-cypress@2.15.1(eslint@8.51.0): resolution: {integrity: sha512-eLHLWP5Q+I4j2AWepYq0PgFEei9/s5LvjuSqWrxurkg1YZ8ltxdvMNmdSf0drnsNo57CTgYY/NIHHLRSWejR7w==} peerDependencies: eslint: '>= 3.2.1' dependencies: - eslint: 8.48.0 + eslint: 8.51.0 globals: 13.21.0 /eslint-plugin-eslint-comments@3.2.0(eslint@8.38.0): @@ -28460,7 +30004,7 @@ packages: ignore: 5.2.4 dev: true - /eslint-plugin-flowtype@8.0.3(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint@8.48.0): + /eslint-plugin-flowtype@8.0.3(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint@8.51.0): resolution: {integrity: sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==} engines: {node: '>=12.0.0'} peerDependencies: @@ -28468,9 +30012,9 @@ packages: '@babel/plugin-transform-react-jsx': ^7.14.9 eslint: ^8.1.0 dependencies: - '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.22.11) - '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.22.11) - eslint: 8.48.0 + '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.2) + eslint: 8.51.0 lodash: 4.17.21 string-natural-compare: 3.0.1 @@ -28513,7 +30057,7 @@ packages: array.prototype.findlastindex: 1.2.3 array.prototype.flat: 1.3.1 array.prototype.flatmap: 1.3.1 - debug: 3.2.7(supports-color@8.1.1) + debug: 3.2.7(supports-color@5.5.0) doctrine: 2.1.0 eslint: 8.38.0 eslint-import-resolver-node: 0.3.7 @@ -28532,7 +30076,7 @@ packages: - eslint-import-resolver-webpack - supports-color - /eslint-plugin-import@2.28.1(@typescript-eslint/parser@5.58.0)(eslint-import-resolver-webpack@0.13.7)(eslint@8.48.0): + /eslint-plugin-import@2.28.1(@typescript-eslint/parser@5.58.0)(eslint-import-resolver-webpack@0.13.7)(eslint@8.51.0): resolution: {integrity: sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A==} engines: {node: '>=4'} peerDependencies: @@ -28542,16 +30086,16 @@ packages: '@typescript-eslint/parser': optional: true dependencies: - '@typescript-eslint/parser': 5.58.0(eslint@8.48.0)(typescript@4.9.5) + '@typescript-eslint/parser': 5.58.0(eslint@8.51.0)(typescript@4.9.5) array-includes: 3.1.6 array.prototype.findlastindex: 1.2.3 array.prototype.flat: 1.3.1 array.prototype.flatmap: 1.3.1 - debug: 3.2.7(supports-color@8.1.1) + debug: 3.2.7(supports-color@5.5.0) doctrine: 2.1.0 - eslint: 8.48.0 + eslint: 8.51.0 eslint-import-resolver-node: 0.3.7 - eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.58.0)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-webpack@0.13.7)(eslint@8.48.0) + eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.58.0)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-webpack@0.13.7)(eslint@8.51.0) has: 1.0.3 is-core-module: 2.13.0 is-glob: 4.0.3 @@ -28566,7 +30110,7 @@ packages: - eslint-import-resolver-webpack - supports-color - /eslint-plugin-jest@25.7.0(@typescript-eslint/eslint-plugin@5.58.0)(eslint@8.48.0)(jest@27.5.1)(typescript@4.9.5): + /eslint-plugin-jest@25.7.0(@typescript-eslint/eslint-plugin@5.58.0)(eslint@8.51.0)(jest@27.5.1)(typescript@4.9.5): resolution: {integrity: sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} peerDependencies: @@ -28579,9 +30123,9 @@ packages: jest: optional: true dependencies: - '@typescript-eslint/eslint-plugin': 5.58.0(@typescript-eslint/parser@5.58.0)(eslint@8.48.0)(typescript@4.9.5) - '@typescript-eslint/experimental-utils': 5.58.0(eslint@8.48.0)(typescript@4.9.5) - eslint: 8.48.0 + '@typescript-eslint/eslint-plugin': 5.58.0(@typescript-eslint/parser@5.58.0)(eslint@8.51.0)(typescript@4.9.5) + '@typescript-eslint/experimental-utils': 5.58.0(eslint@8.51.0)(typescript@4.9.5) + eslint: 8.51.0 jest: 27.5.1(ts-node@10.9.1) transitivePeerDependencies: - supports-color @@ -28612,7 +30156,7 @@ packages: semver: 6.3.1 dev: true - /eslint-plugin-jsx-a11y@6.7.1(eslint@8.48.0): + /eslint-plugin-jsx-a11y@6.7.1(eslint@8.51.0): resolution: {integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==} engines: {node: '>=4.0'} peerDependencies: @@ -28627,8 +30171,8 @@ packages: axobject-query: 3.1.1 damerau-levenshtein: 1.0.8 emoji-regex: 9.2.2 - eslint: 8.48.0 - has: 1.0.3 + eslint: 8.51.0 + has: 1.0.4 jsx-ast-utils: 3.3.3 language-tags: 1.0.5 minimatch: 3.1.2 @@ -28636,7 +30180,7 @@ packages: object.fromentries: 2.0.6 semver: 6.3.1 - /eslint-plugin-prettier@4.2.1(eslint-config-prettier@8.8.0)(eslint@7.32.0)(prettier@2.8.7): + /eslint-plugin-prettier@4.2.1(eslint-config-prettier@8.8.0)(eslint@7.32.0)(prettier@3.0.3): resolution: {integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==} engines: {node: '>=12.0.0'} peerDependencies: @@ -28649,7 +30193,7 @@ packages: dependencies: eslint: 7.32.0 eslint-config-prettier: 8.8.0(eslint@8.38.0) - prettier: 2.8.7 + prettier: 3.0.3 prettier-linter-helpers: 1.0.0 dev: true @@ -28684,13 +30228,13 @@ packages: eslint: 8.38.0 dev: true - /eslint-plugin-react-hooks@4.6.0(eslint@8.48.0): + /eslint-plugin-react-hooks@4.6.0(eslint@8.51.0): resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} engines: {node: '>=10'} peerDependencies: eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 dependencies: - eslint: 8.48.0 + eslint: 8.51.0 /eslint-plugin-react@7.32.2(eslint@8.38.0): resolution: {integrity: sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==} @@ -28716,7 +30260,7 @@ packages: string.prototype.matchall: 4.0.8 dev: true - /eslint-plugin-react@7.32.2(eslint@8.48.0): + /eslint-plugin-react@7.32.2(eslint@8.51.0): resolution: {integrity: sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==} engines: {node: '>=4'} peerDependencies: @@ -28726,7 +30270,7 @@ packages: array.prototype.flatmap: 1.3.1 array.prototype.tosorted: 1.1.1 doctrine: 2.1.0 - eslint: 8.48.0 + eslint: 8.51.0 estraverse: 5.3.0 jsx-ast-utils: 3.3.3 minimatch: 3.1.2 @@ -28750,15 +30294,15 @@ packages: lodash: 4.17.21 dev: true - /eslint-plugin-storybook@0.6.13(eslint@8.48.0)(typescript@4.9.5): + /eslint-plugin-storybook@0.6.13(eslint@8.51.0)(typescript@4.9.5): resolution: {integrity: sha512-smd+CS0WH1jBqUEJ3znGS7DU4ayBE9z6lkQAK2yrSUv1+rq8BT/tiI5C/rKE7rmiqiAfojtNYZRhzo5HrulccQ==} engines: {node: 12.x || 14.x || >= 16} peerDependencies: eslint: '>=6' dependencies: '@storybook/csf': 0.0.1 - '@typescript-eslint/utils': 5.58.0(eslint@8.48.0)(typescript@4.9.5) - eslint: 8.48.0 + '@typescript-eslint/utils': 5.58.0(eslint@8.51.0)(typescript@4.9.5) + eslint: 8.51.0 requireindex: 1.2.0 ts-dedent: 2.2.0 transitivePeerDependencies: @@ -28766,14 +30310,14 @@ packages: - typescript dev: true - /eslint-plugin-testing-library@5.10.2(eslint@8.48.0)(typescript@4.9.5): + /eslint-plugin-testing-library@5.10.2(eslint@8.51.0)(typescript@4.9.5): resolution: {integrity: sha512-f1DmDWcz5SDM+IpCkEX0lbFqrrTs8HRsEElzDEqN/EBI0hpRj8Cns5+IVANXswE8/LeybIJqPAOQIFu2j5Y5sw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: '>=6'} peerDependencies: eslint: ^7.5.0 || ^8.0.0 dependencies: - '@typescript-eslint/utils': 5.58.0(eslint@8.48.0)(typescript@4.9.5) - eslint: 8.48.0 + '@typescript-eslint/utils': 5.58.0(eslint@8.51.0)(typescript@4.9.5) + eslint: 8.51.0 transitivePeerDependencies: - supports-color - typescript @@ -28851,7 +30395,7 @@ packages: resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - /eslint-webpack-plugin@3.2.0(eslint@8.48.0)(webpack@5.78.0): + /eslint-webpack-plugin@3.2.0(eslint@8.51.0)(webpack@5.78.0): resolution: {integrity: sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==} engines: {node: '>= 12.13.0'} peerDependencies: @@ -28859,12 +30403,12 @@ packages: webpack: ^5.0.0 dependencies: '@types/eslint': 8.44.2 - eslint: 8.48.0 + eslint: 8.51.0 jest-worker: 28.1.3 micromatch: 4.0.5 normalize-path: 3.0.0 schema-utils: 4.0.0 - webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) + webpack: 5.78.0(@swc/core@1.3.49) /eslint@7.32.0: resolution: {integrity: sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==} @@ -28963,15 +30507,15 @@ packages: transitivePeerDependencies: - supports-color - /eslint@8.48.0: - resolution: {integrity: sha512-sb6DLeIuRXxeM1YljSe1KEx9/YYeZFQWcV8Rq9HfigmdDEugjLEVEa1ozDjL6YDjBpQHPJxJzze+alxi4T3OLg==} + /eslint@8.51.0: + resolution: {integrity: sha512-2WuxRZBrlwnXi+/vFSJyjMqrNjtJqiasMzehF0shoLaW7DzS3/9Yvrmq5JiT66+pNjiX4UBnLDiKHcWAr/OInA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.48.0) - '@eslint-community/regexpp': 4.8.0 + '@eslint-community/eslint-utils': 4.4.0(eslint@8.51.0) + '@eslint-community/regexpp': 4.9.1 '@eslint/eslintrc': 2.1.2 - '@eslint/js': 8.48.0 + '@eslint/js': 8.51.0 '@humanwhocodes/config-array': 0.11.11 '@humanwhocodes/module-importer': 1.0.1 '@nodelib/fs.walk': 1.2.8 @@ -28990,7 +30534,7 @@ packages: file-entry-cache: 6.0.1 find-up: 5.0.0 glob-parent: 6.0.2 - globals: 13.21.0 + globals: 13.23.0 graphemer: 1.4.0 ignore: 5.2.4 imurmurhash: 0.1.4 @@ -29405,7 +30949,7 @@ packages: get-stream: 5.2.0 yauzl: 2.10.0 optionalDependencies: - '@types/yauzl': 2.10.0 + '@types/yauzl': 2.10.1 transitivePeerDependencies: - supports-color @@ -29450,6 +30994,7 @@ packages: glob-parent: 5.1.2 merge2: 1.4.1 micromatch: 4.0.5 + dev: true /fast-glob@3.2.7: resolution: {integrity: sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==} @@ -29471,6 +31016,16 @@ packages: merge2: 1.4.1 micromatch: 4.0.5 + /fast-glob@3.3.1: + resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==} + engines: {node: '>=8.6.0'} + dependencies: + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 + glob-parent: 5.1.2 + merge2: 1.4.1 + micromatch: 4.0.5 + /fast-json-parse@1.0.3: resolution: {integrity: sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==} dev: true @@ -29620,7 +31175,7 @@ packages: dependencies: loader-utils: 2.0.4 schema-utils: 3.3.0 - webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) + webpack: 5.78.0(@swc/core@1.3.49) /file-selector@0.6.0: resolution: {integrity: sha512-QlZ5yJC0VxHxQQsQhXvBaC7VRJ2uaxTf+Tfpu4Z/OcVQJVpZO+DGU0rkoVW5ce2SccxugvpBJoMvUs59iILYdw==} @@ -29843,7 +31398,7 @@ packages: node-forge: 1.3.1 uuid: 9.0.0 optionalDependencies: - '@google-cloud/firestore': 6.7.0 + '@google-cloud/firestore': 6.8.0 '@google-cloud/storage': 6.12.0 transitivePeerDependencies: - encoding @@ -29929,7 +31484,7 @@ packages: /forever-agent@0.6.1: resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==} - /fork-ts-checker-webpack-plugin@6.5.3(eslint@8.48.0)(typescript@4.9.5)(webpack@5.78.0): + /fork-ts-checker-webpack-plugin@6.5.3(eslint@8.51.0)(typescript@4.9.5)(webpack@5.78.0): resolution: {integrity: sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==} engines: {node: '>=10', yarn: '>=1.0.0'} peerDependencies: @@ -29949,7 +31504,7 @@ packages: chokidar: 3.5.3 cosmiconfig: 6.0.0 deepmerge: 4.3.1 - eslint: 8.48.0 + eslint: 8.51.0 fs-extra: 9.1.0 glob: 7.2.3 memfs: 3.5.0 @@ -29958,7 +31513,7 @@ packages: semver: 7.5.4 tapable: 1.1.3 typescript: 4.9.5 - webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) + webpack: 5.78.0(@swc/core@1.3.49) /fork-ts-checker-webpack-plugin@8.0.0(typescript@4.9.5)(webpack@5.78.0): resolution: {integrity: sha512-mX3qW3idpueT2klaQXBzrIM/pHw+T0B/V9KHEvNrqijTq9NFnMZU6oreVxDYcf33P8a5cW+67PjodNHthGnNVg==} @@ -30190,16 +31745,16 @@ packages: requiresBuild: true optional: true - /function-bind@1.1.1: - resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} + /function-bind@1.1.2: + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} /function.prototype.name@1.1.6: resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 + define-properties: 1.2.1 + es-abstract: 1.22.2 functions-have-names: 1.2.3 /functional-red-black-tree@1.0.1: @@ -30344,8 +31899,8 @@ packages: /get-intrinsic@1.2.1: resolution: {integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==} dependencies: - function-bind: 1.1.1 - has: 1.0.3 + function-bind: 1.1.2 + has: 1.0.4 has-proto: 1.0.1 has-symbols: 1.0.3 @@ -30602,13 +32157,13 @@ packages: find-index: 0.1.1 dev: true - /glob@10.3.4: - resolution: {integrity: sha512-6LFElP3A+i/Q8XQKEvZjkEWEOTgAIALR9AO2rwT8bgPhDd1anmqDJDZ6lLddI4ehxxxR1S5RIqKe1uapMQfYaQ==} + /glob@10.3.10: + resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==} engines: {node: '>=16 || 14 >=14.17'} hasBin: true dependencies: foreground-child: 3.1.1 - jackspeak: 2.3.3 + jackspeak: 2.3.6 minimatch: 9.0.3 minipass: 5.0.0 path-scurry: 1.10.1 @@ -30619,7 +32174,7 @@ packages: fs.realpath: 1.0.0 inflight: 1.0.6 inherits: 2.0.4 - minimatch: 3.1.2 + minimatch: 3.0.4 once: 1.4.0 path-is-absolute: 1.0.1 @@ -30629,7 +32184,7 @@ packages: fs.realpath: 1.0.0 inflight: 1.0.6 inherits: 2.0.4 - minimatch: 3.1.2 + minimatch: 3.0.4 once: 1.4.0 path-is-absolute: 1.0.1 @@ -30748,11 +32303,17 @@ packages: dependencies: type-fest: 0.20.2 + /globals@13.23.0: + resolution: {integrity: sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==} + engines: {node: '>=8'} + dependencies: + type-fest: 0.20.2 + /globalthis@1.0.3: resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} engines: {node: '>= 0.4'} dependencies: - define-properties: 1.2.0 + define-properties: 1.2.1 /globalyzer@0.1.0: resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==} @@ -30764,7 +32325,7 @@ packages: dependencies: array-union: 2.1.0 dir-glob: 3.0.1 - fast-glob: 3.3.0 + fast-glob: 3.3.1 ignore: 5.2.4 merge2: 1.4.1 slash: 3.0.0 @@ -30987,25 +32548,25 @@ packages: tslib: 2.6.2 dev: true - /graphql-tag@2.12.6(graphql@16.8.0): + /graphql-tag@2.12.6(graphql@16.8.1): resolution: {integrity: sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==} engines: {node: '>=10'} peerDependencies: graphql: ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - graphql: 16.8.0 + graphql: 16.8.1 tslib: 2.6.2 dev: false optional: true - /graphql-ws@5.14.0(graphql@16.8.0): + /graphql-ws@5.14.0(graphql@16.8.1): resolution: {integrity: sha512-itrUTQZP/TgswR4GSSYuwWUzrE/w5GhbwM2GX3ic2U7aw33jgEsayfIlvaj7/GcIvZgNMzsPTrE5hqPuFUiE5g==} engines: {node: '>=10'} requiresBuild: true peerDependencies: graphql: '>=0.11 <=16' dependencies: - graphql: 16.8.0 + graphql: 16.8.1 dev: false optional: true @@ -31014,8 +32575,8 @@ packages: engines: {node: '>= 10.x'} dev: true - /graphql@16.8.0: - resolution: {integrity: sha512-0oKGaR+y3qcS5mCu1vb7KG+a89vjn06C7Ihq/dDl3jA+A8B3TKomvi3CiEcVLJQGalbu8F52LxkOym7U5sSfbg==} + /graphql@16.8.1: + resolution: {integrity: sha512-59LZHPdGZVh695Ud9lRzPBVTtlX9ZCV150Er2W43ro37wVof0ctenSaskPPjN7lVTIN8mSZt8PHUNKZuNQUuxw==} engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0} dev: false optional: true @@ -31182,7 +32743,11 @@ packages: resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} engines: {node: '>= 0.4.0'} dependencies: - function-bind: 1.1.1 + function-bind: 1.1.2 + + /has@1.0.4: + resolution: {integrity: sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==} + engines: {node: '>= 0.4.0'} /hasha@5.2.2: resolution: {integrity: sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==} @@ -31377,7 +32942,7 @@ packages: he: 1.2.0 param-case: 3.0.4 relateurl: 0.2.7 - terser: 5.19.3 + terser: 5.21.0 /html-tags@3.3.1: resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==} @@ -31413,8 +32978,8 @@ packages: webpack: ^4.0.0 || ^5.0.0 dependencies: '@types/html-minifier-terser': 5.1.2 - '@types/tapable': 1.0.8 - '@types/webpack': 4.41.33 + '@types/tapable': 1.0.9 + '@types/webpack': 4.41.34 html-minifier-terser: 5.1.1 loader-utils: 1.4.2 lodash: 4.17.21 @@ -31435,7 +33000,7 @@ packages: lodash: 4.17.21 pretty-error: 4.0.0 tapable: 2.2.1 - webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) + webpack: 5.78.0(@swc/core@1.3.49) /htmlencode@0.0.4: resolution: {integrity: sha512-0uDvNVpzj/E2TfvLLyyXhKBRvF1y84aZsyRxRXFsQobnHaL4pcaXk+Y9cnFlvnxrBLeXDNq/VJBD+ngdBgQG1w==} @@ -31911,7 +33476,7 @@ packages: /injection-js@2.4.0: resolution: {integrity: sha512-6jiJt0tCAo9zjHbcwLiPL+IuNe9SQ6a9g0PEzafThW3fOQi0mrmiJGBJvDD6tmhPh8cQHIQtCOrJuBfQME4kPA==} dependencies: - tslib: 2.6.2 + tslib: 2.5.0 dev: true /inline-css@4.0.2: @@ -32006,7 +33571,7 @@ packages: engines: {node: '>= 0.4'} dependencies: get-intrinsic: 1.2.1 - has: 1.0.3 + has: 1.0.4 side-channel: 1.0.4 /interpret@1.4.0: @@ -32200,7 +33765,7 @@ packages: /is-core-module@2.12.0: resolution: {integrity: sha512-RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ==} dependencies: - has: 1.0.3 + has: 1.0.4 /is-core-module@2.13.0: resolution: {integrity: sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==} @@ -32383,7 +33948,7 @@ packages: engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 - define-properties: 1.2.0 + define-properties: 1.2.1 /is-negative-zero@2.0.2: resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} @@ -32777,8 +34342,8 @@ packages: resolution: {integrity: sha512-RKYVTCjAnRthyJes037NX/IiqeidgN1xc3j1RjFfECFp28A1GVwK9nA+i0rJPaHqSZwygLzRnFlzUuHFoWWy+Q==} engines: {node: '>=6'} - /jackspeak@2.3.3: - resolution: {integrity: sha512-R2bUw+kVZFS/h1AZqBKrSgDmdmjApzgY0AlCPumopFiAlbUxE2gf+SCuBzQ0cP5hHmUmFYF5yw55T97Th5Kstg==} + /jackspeak@2.3.6: + resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==} engines: {node: '>=14'} dependencies: '@isaacs/cliui': 8.0.2 @@ -32854,7 +34419,7 @@ packages: '@jest/expect': 29.5.0 '@jest/test-result': 29.5.0 '@jest/types': 29.5.0 - '@types/node': 14.18.42 + '@types/node': 16.11.7 chalk: 4.1.2 co: 4.6.0 dedent: 0.7.0 @@ -32974,7 +34539,7 @@ packages: babel-jest: 27.5.1(@babel/core@7.22.11) chalk: 4.1.2 deepmerge: 4.3.1 - glob: 7.2.3 + glob: 7.1.4 graceful-fs: 4.2.11 is-ci: 3.0.1 jest-circus: 27.5.1 @@ -33030,7 +34595,7 @@ packages: pretty-format: 27.5.1 slash: 3.0.0 strip-json-comments: 3.1.1 - ts-node: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) + ts-node: 10.9.1(@swc/core@1.3.49)(@types/node@16.11.7)(typescript@4.9.5) transitivePeerDependencies: - bufferutil - canvas @@ -33226,7 +34791,7 @@ packages: '@jest/environment': 27.5.1 '@jest/fake-timers': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 14.18.42 + '@types/node': 12.20.55 jest-mock: 27.5.1 jest-util: 27.5.1 jsdom: 16.7.0 @@ -33266,7 +34831,7 @@ packages: '@jest/environment': 27.5.1 '@jest/fake-timers': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 14.18.42 + '@types/node': 12.20.55 jest-mock: 27.5.1 jest-util: 27.5.1 @@ -33277,7 +34842,7 @@ packages: '@jest/environment': 29.5.0 '@jest/fake-timers': 29.5.0 '@jest/types': 29.5.0 - '@types/node': 14.18.42 + '@types/node': 16.11.7 jest-mock: 29.5.0 jest-util: 29.5.0 dev: true @@ -33301,7 +34866,7 @@ packages: dependencies: '@jest/types': 27.5.1 '@types/graceful-fs': 4.1.6 - '@types/node': 14.18.42 + '@types/node': 12.20.55 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -33320,7 +34885,7 @@ packages: dependencies: '@jest/types': 29.5.0 '@types/graceful-fs': 4.1.6 - '@types/node': 14.18.42 + '@types/node': 16.11.7 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -33446,7 +35011,7 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@jest/types': 27.5.1 - '@types/node': 14.18.42 + '@types/node': 18.15.11 /jest-mock@29.5.0: resolution: {integrity: sha512-GqOzvdWDE4fAV2bWQLQCkujxYWL7RxjCnj71b5VhDAGOevB3qj3Ovg26A5NI84ZpODxyzaozXLOh2NCgkbvyaw==} @@ -33583,7 +35148,7 @@ packages: '@jest/test-result': 27.5.1 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 14.18.42 + '@types/node': 12.20.55 chalk: 4.1.2 emittery: 0.8.1 graceful-fs: 4.2.11 @@ -33614,7 +35179,7 @@ packages: '@jest/test-result': 29.5.0 '@jest/transform': 29.5.0 '@jest/types': 29.5.0 - '@types/node': 14.18.42 + '@types/node': 16.11.7 chalk: 4.1.2 emittery: 0.13.1 graceful-fs: 4.2.11 @@ -33674,7 +35239,7 @@ packages: '@jest/test-result': 29.5.0 '@jest/transform': 29.5.0 '@jest/types': 29.5.0 - '@types/node': 14.18.42 + '@types/node': 18.15.11 chalk: 4.1.2 cjs-module-lexer: 1.2.2 collect-v8-coverage: 1.0.1 @@ -33697,7 +35262,7 @@ packages: resolution: {integrity: sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - '@types/node': 14.18.42 + '@types/node': 12.20.55 graceful-fs: 4.2.11 /jest-snapshot@27.5.1: @@ -33769,7 +35334,7 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@jest/types': 27.5.1 - '@types/node': 14.18.42 + '@types/node': 16.11.7 chalk: 4.1.2 graceful-fs: 4.2.11 is-ci: 3.0.1 @@ -33792,7 +35357,7 @@ packages: engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: '@jest/types': 28.1.3 - '@types/node': 14.18.42 + '@types/node': 12.20.55 chalk: 4.1.2 ci-info: 3.8.0 graceful-fs: 4.2.11 @@ -33853,7 +35418,7 @@ packages: dependencies: '@jest/test-result': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 14.18.42 + '@types/node': 12.20.55 ansi-escapes: 4.3.2 chalk: 4.1.2 jest-util: 27.5.1 @@ -33865,7 +35430,7 @@ packages: dependencies: '@jest/test-result': 28.1.3 '@jest/types': 28.1.3 - '@types/node': 14.18.42 + '@types/node': 12.20.55 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.10.2 @@ -33898,7 +35463,7 @@ packages: resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} engines: {node: '>= 10.13.0'} dependencies: - '@types/node': 14.18.42 + '@types/node': 18.15.11 merge-stream: 2.0.0 supports-color: 8.1.1 @@ -33906,7 +35471,7 @@ packages: resolution: {integrity: sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - '@types/node': 14.18.42 + '@types/node': 12.20.55 merge-stream: 2.0.0 supports-color: 8.1.1 @@ -33914,7 +35479,7 @@ packages: resolution: {integrity: sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@types/node': 14.18.42 + '@types/node': 16.11.7 jest-util: 29.5.0 merge-stream: 2.0.0 supports-color: 8.1.1 @@ -34673,7 +36238,7 @@ packages: less: 4.1.3 loader-utils: 1.4.2 pify: 3.0.0 - webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) + webpack: 5.78.0(@swc/core@1.3.49) dev: true /less@4.1.3: @@ -35589,7 +37154,7 @@ packages: dependencies: ansi-escapes: 5.0.0 cardinal: 2.1.1 - chalk: 5.2.0 + chalk: 5.3.0 cli-table3: 0.6.3 marked: 4.3.0 node-emoji: 1.11.0 @@ -36249,7 +37814,7 @@ packages: webpack: ^5.0.0 dependencies: schema-utils: 4.0.0 - webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) + webpack: 5.78.0(@swc/core@1.3.49) /minimalistic-assert@1.0.1: resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==} @@ -36258,7 +37823,6 @@ packages: resolution: {integrity: sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==} dependencies: brace-expansion: 1.1.11 - dev: true /minimatch@3.0.5: resolution: {integrity: sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==} @@ -36802,7 +38366,7 @@ packages: hasBin: true requiresBuild: true dependencies: - debug: 3.2.7(supports-color@8.1.1) + debug: 3.2.7(supports-color@5.5.0) iconv-lite: 0.6.3 sax: 1.2.4 transitivePeerDependencies: @@ -36820,7 +38384,7 @@ packages: resolution: {integrity: sha512-EZSPZB70jiVsivaBLYDCyntd5eH8NTSMOn3rB+HxwdmKThGELLdYv8qVIMWvZEFy9w8ZZpW9h9OB32l1rGtj7g==} dev: true - /nest-raven@10.0.0(@nestjs/common@10.2.2)(@nestjs/core@10.2.2)(@sentry/node@7.47.0)(class-transformer@0.5.1)(class-validator@0.14.0)(graphql@16.8.0)(reflect-metadata@0.1.13)(rxjs@7.8.1): + /nest-raven@10.0.0(@nestjs/common@10.2.2)(@nestjs/core@10.2.2)(@sentry/node@7.47.0)(class-transformer@0.5.1)(class-validator@0.14.0)(graphql@16.8.1)(reflect-metadata@0.1.13)(rxjs@7.8.1): resolution: {integrity: sha512-MnemxfEjYU1+JFt16epeUx1DwibxhhRinzgfJXNhPPeV7AzlZXHrFlrjpxA1hUkha6tWkFxa444S1wC2j5PpKQ==} peerDependencies: '@nestjs/common': ^10.0.0 @@ -36831,7 +38395,7 @@ packages: '@sentry/node': 7.47.0 rxjs: 7.8.1 optionalDependencies: - '@nestjs/graphql': 12.0.8(@nestjs/common@10.2.2)(@nestjs/core@10.2.2)(class-transformer@0.5.1)(class-validator@0.14.0)(graphql@16.8.0)(reflect-metadata@0.1.13) + '@nestjs/graphql': 12.0.9(@nestjs/common@10.2.2)(@nestjs/core@10.2.2)(class-transformer@0.5.1)(class-validator@0.14.0)(graphql@16.8.1)(reflect-metadata@0.1.13) transitivePeerDependencies: - '@apollo/subgraph' - '@nestjs/core' @@ -36844,7 +38408,7 @@ packages: - utf-8-validate dev: false - /nest-raven@10.0.0(@nestjs/common@10.2.2)(@nestjs/core@10.2.2)(@sentry/node@7.66.0)(class-transformer@0.5.1)(class-validator@0.14.0)(graphql@16.8.0)(reflect-metadata@0.1.13)(rxjs@7.8.1): + /nest-raven@10.0.0(@nestjs/common@10.2.2)(@nestjs/core@10.2.2)(@sentry/node@7.66.0)(class-transformer@0.5.1)(class-validator@0.14.0)(graphql@16.8.1)(reflect-metadata@0.1.13)(rxjs@7.8.1): resolution: {integrity: sha512-MnemxfEjYU1+JFt16epeUx1DwibxhhRinzgfJXNhPPeV7AzlZXHrFlrjpxA1hUkha6tWkFxa444S1wC2j5PpKQ==} peerDependencies: '@nestjs/common': ^10.0.0 @@ -36855,7 +38419,7 @@ packages: '@sentry/node': 7.66.0 rxjs: 7.8.1 optionalDependencies: - '@nestjs/graphql': 12.0.8(@nestjs/common@10.2.2)(@nestjs/core@10.2.2)(class-transformer@0.5.1)(class-validator@0.14.0)(graphql@16.8.0)(reflect-metadata@0.1.13) + '@nestjs/graphql': 12.0.9(@nestjs/common@10.2.2)(@nestjs/core@10.2.2)(class-transformer@0.5.1)(class-validator@0.14.0)(graphql@16.8.1)(reflect-metadata@0.1.13) transitivePeerDependencies: - '@apollo/subgraph' - '@nestjs/core' @@ -36914,7 +38478,7 @@ packages: semver: 5.7.2 winston-transport: 4.5.0 optionalDependencies: - '@contrast/fn-inspect': 3.3.0 + '@contrast/fn-inspect': 3.4.0 '@newrelic/native-metrics': 9.0.1 transitivePeerDependencies: - supports-color @@ -36968,7 +38532,7 @@ packages: tslib: 2.5.0 typescript: 4.9.5 optionalDependencies: - esbuild: 0.17.16 + esbuild: 0.17.19 transitivePeerDependencies: - bluebird - supports-color @@ -37124,7 +38688,7 @@ packages: nopt: 6.0.0 npmlog: 6.0.2 rimraf: 3.0.2 - semver: 7.5.4 + semver: 7.3.8 tar: 6.1.13 which: 2.0.2 transitivePeerDependencies: @@ -37248,7 +38812,7 @@ packages: dependencies: hosted-git-info: 6.1.1 is-core-module: 2.13.0 - semver: 7.5.4 + semver: 7.3.8 validate-npm-package-license: 3.0.4 dev: true @@ -37310,7 +38874,7 @@ packages: resolution: {integrity: sha512-udSGENih/5xKh3Ex+L0PtZcOt0Pa+6ppDLnpG5D49/EhMja3LupaY9E/DtJTxyFBwE09ot7Fc+H4DywnZNWTVA==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: - semver: 7.5.4 + semver: 7.3.8 dev: true /npm-normalize-package-bin@1.0.1: @@ -37333,7 +38897,7 @@ packages: dependencies: hosted-git-info: 6.1.1 proc-log: 3.0.0 - semver: 7.5.4 + semver: 7.3.8 validate-npm-package-name: 5.0.0 dev: true @@ -37391,7 +38955,7 @@ packages: npm-install-checks: 6.1.0 npm-normalize-package-bin: 3.0.0 npm-package-arg: 10.1.0 - semver: 7.5.4 + semver: 7.3.8 dev: true /npm-registry-fetch@13.3.1: @@ -37610,9 +39174,9 @@ packages: tar-stream: 2.2.0 tmp: 0.2.1 tsconfig-paths: 3.14.2 - tslib: 2.6.2 + tslib: 2.5.0 v8-compile-cache: 2.3.0 - yargs: 17.7.2 + yargs: 17.7.1 yargs-parser: 21.0.1 transitivePeerDependencies: - '@swc/helpers' @@ -37727,7 +39291,7 @@ packages: tar-stream: 2.2.0 tmp: 0.2.1 tsconfig-paths: 4.1.2 - tslib: 2.6.2 + tslib: 2.5.0 v8-compile-cache: 2.3.0 yargs: 17.7.2 yargs-parser: 21.1.1 @@ -37790,7 +39354,7 @@ packages: tar-stream: 2.2.0 tmp: 0.2.1 tsconfig-paths: 4.1.2 - tslib: 2.6.2 + tslib: 2.5.0 v8-compile-cache: 2.3.0 yargs: 17.7.2 yargs-parser: 21.1.1 @@ -37872,15 +39436,15 @@ packages: resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} engines: {node: '>= 6'} - /object-inspect@1.12.3: - resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==} + /object-inspect@1.13.0: + resolution: {integrity: sha512-HQ4J+ic8hKrgIt3mqk6cVOVrW2ozL4KdvHlqpBv9vDYWx9ysAgENAdvy4FoGF+KFdhR7nQTNm5J0ctAeOwn+3g==} /object-is@1.1.5: resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 - define-properties: 1.2.0 + define-properties: 1.2.1 /object-keys@1.1.1: resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} @@ -37898,7 +39462,7 @@ packages: engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 - define-properties: 1.2.0 + define-properties: 1.2.1 has-symbols: 1.0.3 object-keys: 1.1.1 @@ -37907,40 +39471,40 @@ packages: engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 + define-properties: 1.2.1 + es-abstract: 1.22.2 /object.fromentries@2.0.6: resolution: {integrity: sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 + define-properties: 1.2.1 + es-abstract: 1.22.2 - /object.getownpropertydescriptors@2.1.6: - resolution: {integrity: sha512-lq+61g26E/BgHv0ZTFgRvi7NMEPuAxLkFU7rukXjc/AlwH4Am5xXVnIXy3un1bg/JPbXHrixRkK1itUzzPiIjQ==} + /object.getownpropertydescriptors@2.1.7: + resolution: {integrity: sha512-PrJz0C2xJ58FNn11XV2lr4Jt5Gzl94qpy9Lu0JlfEj14z88sqbSBJCBEzdlNUCzY2gburhbrwOZ5BHCmuNUy0g==} engines: {node: '>= 0.8'} dependencies: array.prototype.reduce: 1.0.6 call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 - safe-array-concat: 1.0.0 + define-properties: 1.2.1 + es-abstract: 1.22.2 + safe-array-concat: 1.0.1 /object.groupby@1.0.1: resolution: {integrity: sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==} dependencies: call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 + define-properties: 1.2.1 + es-abstract: 1.22.2 get-intrinsic: 1.2.1 /object.hasown@1.1.2: resolution: {integrity: sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==} dependencies: - define-properties: 1.2.0 - es-abstract: 1.22.1 + define-properties: 1.2.1 + es-abstract: 1.22.2 /object.omit@2.0.1: resolution: {integrity: sha512-UiAM5mhmIuKLsOvrL+B0U2d1hXHF3bFYWIuH1LMpuV2EJEHG1Ntz06PgLEHjm6VFd87NpH8rastvPoyv6UW2fA==} @@ -37962,8 +39526,8 @@ packages: engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 + define-properties: 1.2.1 + es-abstract: 1.22.2 /objectorarray@1.0.5: resolution: {integrity: sha512-eJJDYkhJFFbBBAxeh8xW+weHlkI28n2ZdQV/J/DNfWfSKlGEf2xcfAbZTv3riEXHAhL9SVOTs2pRmXiSTf78xg==} @@ -38533,7 +40097,7 @@ packages: /parse5-html-rewriting-stream@7.0.0: resolution: {integrity: sha512-mazCyGWkmCRWDI15Zp+UiCqMp/0dgEmkZRvhlsqqKYr4SsVm/TvnSpD9fCvqCA2zoWJcfRym846ejWBBHRiYEg==} dependencies: - entities: 4.4.0 + entities: 4.5.0 parse5: 7.1.2 parse5-sax-parser: 7.0.0 dev: true @@ -38563,7 +40127,7 @@ packages: /parse5@7.1.2: resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==} dependencies: - entities: 4.4.0 + entities: 4.5.0 /parseley@0.11.0: resolution: {integrity: sha512-VfcwXlBWgTF+unPcr7yu3HSSA6QUdDaDnrHcytVfj5Z8azAyKBDrYnSIfeSxlrEayndNcLmrXzg+Vxbo6DWRXQ==} @@ -39017,7 +40581,7 @@ packages: engines: {node: '>= 0.12.0'} dependencies: async: 2.6.4 - debug: 3.2.7(supports-color@8.1.1) + debug: 3.2.7(supports-color@5.5.0) mkdirp: 0.5.6 transitivePeerDependencies: - supports-color @@ -39315,7 +40879,7 @@ packages: klona: 2.0.6 postcss: 8.4.21 semver: 7.5.4 - webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) + webpack: 5.78.0(@swc/core@1.3.49) /postcss-loader@7.0.2(postcss@8.4.21)(webpack@5.76.1): resolution: {integrity: sha512-fUJzV/QH7NXUAqV8dWJ9Lg4aTkDCezpTS5HgJ2DvqznexTbSTxgi/dTECvTZ15BwKTtk8G/bqI/QTu2HPd3ZCg==} @@ -39327,7 +40891,7 @@ packages: cosmiconfig: 7.1.0 klona: 2.0.6 postcss: 8.4.21 - semver: 7.5.4 + semver: 7.3.8 webpack: 5.76.1(@swc/core@1.3.49)(esbuild@0.17.8) dev: true @@ -39818,6 +41382,12 @@ packages: hasBin: true dev: true + /prettier@3.0.3: + resolution: {integrity: sha512-L/4pUDMxcNa8R/EthV08Zt42WBO4h1rarVtK0K+QJG0X187OLo7l699jWw0GKuwzkPQ//jMFA/8Xm6Fh3J/DAg==} + engines: {node: '>=14'} + hasBin: true + dev: true + /pretty-bytes@5.6.0: resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==} engines: {node: '>=6'} @@ -40234,6 +41804,12 @@ packages: dependencies: side-channel: 1.0.4 + /qs@6.11.2: + resolution: {integrity: sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==} + engines: {node: '>=0.6'} + dependencies: + side-channel: 1.0.4 + /qs@6.5.3: resolution: {integrity: sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==} engines: {node: '>=0.6'} @@ -40895,8 +42471,8 @@ packages: peerDependencies: react-scripts: '>=2.1.3' dependencies: - react-scripts: 5.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(@swc/core@1.3.49)(esbuild@0.18.20)(eslint-import-resolver-webpack@0.13.7)(eslint@8.48.0)(react@17.0.2)(ts-node@10.9.1)(typescript@4.9.5) - semver: 5.7.1 + react-scripts: 5.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(@swc/core@1.3.49)(eslint-import-resolver-webpack@0.13.7)(eslint@8.51.0)(react@17.0.2)(ts-node@10.9.1)(typescript@4.9.5) + semver: 5.7.2 dev: true /react-chartjs-2@4.3.1(chart.js@3.9.1)(react@17.0.2): @@ -40955,7 +42531,7 @@ packages: react-dom: 17.0.2(react@17.0.2) dev: false - /react-dev-utils@12.0.1(eslint@8.48.0)(typescript@4.9.5)(webpack@5.78.0): + /react-dev-utils@12.0.1(eslint@8.51.0)(typescript@4.9.5)(webpack@5.78.0): resolution: {integrity: sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==} engines: {node: '>=14'} peerDependencies: @@ -40974,7 +42550,7 @@ packages: escape-string-regexp: 4.0.0 filesize: 8.0.7 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 6.5.3(eslint@8.48.0)(typescript@4.9.5)(webpack@5.78.0) + fork-ts-checker-webpack-plugin: 6.5.3(eslint@8.51.0)(typescript@4.9.5)(webpack@5.78.0) global-modules: 2.0.0 globby: 11.1.0 gzip-size: 6.0.0 @@ -40990,7 +42566,7 @@ packages: strip-ansi: 6.0.1 text-table: 0.2.0 typescript: 4.9.5 - webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) + webpack: 5.78.0(@swc/core@1.3.49) transitivePeerDependencies: - eslint - supports-color @@ -41339,7 +42915,7 @@ packages: react: 17.0.2 dev: false - /react-scripts@5.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(@swc/core@1.3.49)(esbuild@0.18.20)(eslint-import-resolver-webpack@0.13.7)(eslint@8.48.0)(react@17.0.2)(ts-node@10.9.1)(typescript@4.9.5): + /react-scripts@5.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(@swc/core@1.3.49)(esbuild@0.18.20)(eslint-import-resolver-webpack@0.13.7)(eslint@8.51.0)(react@17.0.2)(ts-node@10.9.1)(typescript@4.9.5): resolution: {integrity: sha512-8VAmEm/ZAwQzJ+GOMLbBsTdDKOpuZh7RPs0UymvBR2vRk4iZWCskjbFnxqjrzoIvlNNRZ3QJFx6/qDSi6zSnaQ==} engines: {node: '>=14.0.0'} hasBin: true @@ -41366,9 +42942,9 @@ packages: css-minimizer-webpack-plugin: 3.4.1(esbuild@0.18.20)(webpack@5.78.0) dotenv: 10.0.0 dotenv-expand: 5.1.0 - eslint: 8.48.0 - eslint-config-react-app: 7.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint-import-resolver-webpack@0.13.7)(eslint@8.48.0)(jest@27.5.1)(typescript@4.9.5) - eslint-webpack-plugin: 3.2.0(eslint@8.48.0)(webpack@5.78.0) + eslint: 8.51.0 + eslint-config-react-app: 7.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint-import-resolver-webpack@0.13.7)(eslint@8.51.0)(jest@27.5.1)(typescript@4.9.5) + eslint-webpack-plugin: 3.2.0(eslint@8.51.0)(webpack@5.78.0) file-loader: 6.2.0(webpack@5.78.0) fs-extra: 10.1.0 html-webpack-plugin: 5.5.3(webpack@5.78.0) @@ -41385,12 +42961,12 @@ packages: prompts: 2.4.2 react: 17.0.2 react-app-polyfill: 3.0.0 - react-dev-utils: 12.0.1(eslint@8.48.0)(typescript@4.9.5)(webpack@5.78.0) + react-dev-utils: 12.0.1(eslint@8.51.0)(typescript@4.9.5)(webpack@5.78.0) react-refresh: 0.11.0 resolve: 1.22.2 resolve-url-loader: 4.0.0 sass-loader: 12.6.0(webpack@5.78.0) - semver: 7.4.0 + semver: 7.5.4 source-map-loader: 3.0.2(webpack@5.78.0) style-loader: 3.3.2(webpack@5.78.0) tailwindcss: 3.3.1(postcss@8.4.21)(ts-node@10.9.1) @@ -41435,7 +43011,7 @@ packages: - webpack-hot-middleware - webpack-plugin-serve - /react-scripts@5.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(@swc/core@1.3.49)(eslint-import-resolver-webpack@0.13.7)(eslint@8.48.0)(react@17.0.2)(ts-node@10.9.1)(typescript@4.9.5): + /react-scripts@5.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(@swc/core@1.3.49)(eslint-import-resolver-webpack@0.13.7)(eslint@8.51.0)(react@17.0.2)(ts-node@10.9.1)(typescript@4.9.5): resolution: {integrity: sha512-8VAmEm/ZAwQzJ+GOMLbBsTdDKOpuZh7RPs0UymvBR2vRk4iZWCskjbFnxqjrzoIvlNNRZ3QJFx6/qDSi6zSnaQ==} engines: {node: '>=14.0.0'} hasBin: true @@ -41462,9 +43038,9 @@ packages: css-minimizer-webpack-plugin: 3.4.1(webpack@5.78.0) dotenv: 10.0.0 dotenv-expand: 5.1.0 - eslint: 8.48.0 - eslint-config-react-app: 7.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint-import-resolver-webpack@0.13.7)(eslint@8.48.0)(jest@27.5.1)(typescript@4.9.5) - eslint-webpack-plugin: 3.2.0(eslint@8.48.0)(webpack@5.78.0) + eslint: 8.51.0 + eslint-config-react-app: 7.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint-import-resolver-webpack@0.13.7)(eslint@8.51.0)(jest@27.5.1)(typescript@4.9.5) + eslint-webpack-plugin: 3.2.0(eslint@8.51.0)(webpack@5.78.0) file-loader: 6.2.0(webpack@5.78.0) fs-extra: 10.1.0 html-webpack-plugin: 5.5.3(webpack@5.78.0) @@ -41481,12 +43057,12 @@ packages: prompts: 2.4.2 react: 17.0.2 react-app-polyfill: 3.0.0 - react-dev-utils: 12.0.1(eslint@8.48.0)(typescript@4.9.5)(webpack@5.78.0) + react-dev-utils: 12.0.1(eslint@8.51.0)(typescript@4.9.5)(webpack@5.78.0) react-refresh: 0.11.0 resolve: 1.22.2 resolve-url-loader: 4.0.0 sass-loader: 12.6.0(webpack@5.78.0) - semver: 7.4.0 + semver: 7.5.4 source-map-loader: 3.0.2(webpack@5.78.0) style-loader: 3.3.2(webpack@5.78.0) tailwindcss: 3.3.1(postcss@8.4.21)(ts-node@10.9.1) @@ -41530,7 +43106,6 @@ packages: - webpack-cli - webpack-hot-middleware - webpack-plugin-serve - dev: false /react-simple-animate@3.5.2(react-dom@17.0.2): resolution: {integrity: sha512-xLE65euP920QMTOmv5haPlml+hmOPDkbIr5WeF7ADIXWBYt5kW/vwpNfWg8EKMab8aeDxIZ6QjffVh8v2dUyhg==} @@ -41554,7 +43129,7 @@ packages: get-nonce: 1.0.1 invariant: 2.2.4 react: 17.0.2 - tslib: 2.6.2 + tslib: 2.5.0 /react-syntax-highlighter@15.5.0(react@17.0.2): resolution: {integrity: sha512-+zq2myprEnQmH5yw6Gqc8lD55QHnpKaU8TOcFeC/Lg/MQSs8UknEA0JC4nTZGFAXC2J2Hyj/ijJ7NlabyPi2gg==} @@ -41876,7 +43451,7 @@ packages: ast-types: 0.15.2 esprima: 4.0.1 source-map: 0.6.1 - tslib: 2.6.2 + tslib: 2.5.0 dev: true /recast@0.23.4: @@ -41887,7 +43462,7 @@ packages: ast-types: 0.16.1 esprima: 4.0.1 source-map: 0.6.1 - tslib: 2.6.2 + tslib: 2.5.0 /rechoir@0.6.2: resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==} @@ -41990,6 +43565,10 @@ packages: /regenerator-runtime@0.13.11: resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} + /regenerator-runtime@0.14.0: + resolution: {integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==} + dev: false + /regenerator-transform@0.15.1: resolution: {integrity: sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==} dependencies: @@ -42019,13 +43598,13 @@ packages: /regex-parser@2.2.11: resolution: {integrity: sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==} - /regexp.prototype.flags@1.5.0: - resolution: {integrity: sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==} + /regexp.prototype.flags@1.5.1: + resolution: {integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 - define-properties: 1.2.0 - functions-have-names: 1.2.3 + define-properties: 1.2.1 + set-function-name: 2.0.1 /regexpp@3.2.0: resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} @@ -42633,8 +44212,8 @@ packages: mri: 1.2.0 dev: true - /safe-array-concat@1.0.0: - resolution: {integrity: sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ==} + /safe-array-concat@1.0.1: + resolution: {integrity: sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==} engines: {node: '>=0.4'} dependencies: call-bind: 1.0.2 @@ -42717,7 +44296,7 @@ packages: dependencies: klona: 2.0.6 neo-async: 2.6.2 - webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) + webpack: 5.78.0(@swc/core@1.3.49) /sass-loader@13.2.0(sass@1.58.1)(webpack@5.76.1): resolution: {integrity: sha512-JWEp48djQA4nbZxmgC02/Wh0eroSUutulROUusYJO9P9zltRbNN80JCBHqRGzjd4cmZCa/r88xgfkjGD0TXsHg==} @@ -42938,11 +44517,6 @@ packages: engines: {node: '>=8'} dev: true - /semver@5.7.1: - resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==} - hasBin: true - dev: true - /semver@5.7.2: resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} hasBin: true @@ -43083,6 +44657,14 @@ packages: /set-blocking@2.0.0: resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} + /set-function-name@2.0.1: + resolution: {integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==} + engines: {node: '>= 0.4'} + dependencies: + define-data-property: 1.1.1 + functions-have-names: 1.2.3 + has-property-descriptors: 1.0.0 + /set-value@2.0.1: resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==} engines: {node: '>=0.10.0'} @@ -43163,7 +44745,7 @@ packages: dependencies: call-bind: 1.0.2 get-intrinsic: 1.2.1 - object-inspect: 1.12.3 + object-inspect: 1.13.0 /sift@16.0.1: resolution: {integrity: sha512-Wv6BjQ5zbhW7VFefWusVP33T/EM0vYikCaQ2qR8yULbsilAT8/wQaXvuQ3ptGLpoKx+lihJE3y2UTgKDyyNHZQ==} @@ -43469,7 +45051,7 @@ packages: abab: 2.0.6 iconv-lite: 0.6.3 source-map-js: 1.0.2 - webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) + webpack: 5.78.0(@swc/core@1.3.49) /source-map-loader@4.0.1(webpack@5.76.1): resolution: {integrity: sha512-oqXpzDIByKONVY8g1NUPOTQhe0UTU5bWUl32GSkqK2LjJj0HmwTMVKxcUip0RgAYhY1mqgOxjbQM48a0mmeNfA==} @@ -43949,18 +45531,18 @@ packages: dependencies: eastasianwidth: 0.2.0 emoji-regex: 9.2.2 - strip-ansi: 7.0.1 + strip-ansi: 7.1.0 /string.prototype.matchall@4.0.8: resolution: {integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==} dependencies: call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 + define-properties: 1.2.1 + es-abstract: 1.22.2 get-intrinsic: 1.2.1 has-symbols: 1.0.3 internal-slot: 1.0.5 - regexp.prototype.flags: 1.5.0 + regexp.prototype.flags: 1.5.1 side-channel: 1.0.4 /string.prototype.padend@3.1.4: @@ -43968,31 +45550,31 @@ packages: engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 + define-properties: 1.2.1 + es-abstract: 1.22.2 dev: true - /string.prototype.trim@1.2.7: - resolution: {integrity: sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==} + /string.prototype.trim@1.2.8: + resolution: {integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 + define-properties: 1.2.1 + es-abstract: 1.22.2 - /string.prototype.trimend@1.0.6: - resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==} + /string.prototype.trimend@1.0.7: + resolution: {integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==} dependencies: call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 + define-properties: 1.2.1 + es-abstract: 1.22.2 - /string.prototype.trimstart@1.0.6: - resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==} + /string.prototype.trimstart@1.0.7: + resolution: {integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==} dependencies: call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 + define-properties: 1.2.1 + es-abstract: 1.22.2 /string_decoder@1.1.1: resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} @@ -44044,6 +45626,12 @@ packages: dependencies: ansi-regex: 6.0.1 + /strip-ansi@7.1.0: + resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} + engines: {node: '>=12'} + dependencies: + ansi-regex: 6.0.1 + /strip-bom@3.0.0: resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} engines: {node: '>=4'} @@ -44147,7 +45735,7 @@ packages: peerDependencies: webpack: ^5.0.0 dependencies: - webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) + webpack: 5.78.0(@swc/core@1.3.49) /stylehacks@5.1.1(postcss@8.4.29): resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==} @@ -44172,7 +45760,7 @@ packages: minimist: 1.2.8 dev: true - /subscriptions-transport-ws@0.11.0(graphql@16.8.0): + /subscriptions-transport-ws@0.11.0(graphql@16.8.1): 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 requiresBuild: true @@ -44181,7 +45769,7 @@ packages: dependencies: backo2: 1.0.2 eventemitter3: 3.1.2 - graphql: 16.8.0 + graphql: 16.8.1 iterall: 1.3.0 symbol-observable: 1.2.0 ws: 7.5.9 @@ -44204,13 +45792,13 @@ packages: pirates: 4.0.5 ts-interface-checker: 0.1.13 - /superagent-defaults@0.1.14(superagent@8.0.9): + /superagent-defaults@0.1.14(superagent@8.1.2): resolution: {integrity: sha512-tC+QBaOj2YgmngNBHozy0KiceMWNldsNkc7UZC9xDLO2GLS0kgnj47mH9JCuG6e9uVGl/UQ0Chdc9I4D+QRiJw==} peerDependencies: superagent: '>=0.10.0' dependencies: emitter-component: 1.0.1 - superagent: 8.0.9 + superagent: 8.1.2 /superagent-proxy@3.0.0(superagent@8.0.9): resolution: {integrity: sha512-wAlRInOeDFyd9pyonrkJspdRAxdLrcsZ6aSnS+8+nu4x1aXbz6FWSTT9M6Ibze+eG60szlL7JA8wEIV7bPWuyQ==} @@ -44261,6 +45849,23 @@ packages: transitivePeerDependencies: - supports-color + /superagent@8.1.2: + resolution: {integrity: sha512-6WTxW1EB6yCxV5VFOIPQruWGHqc3yI7hEmZK6h+pyk69Lk/Ut7rLUY6W/ONF2MjBuGjvmMiIpsrVJ2vjrHlslA==} + engines: {node: '>=6.4.0 <13 || >=14'} + dependencies: + component-emitter: 1.3.0 + cookiejar: 2.1.4 + debug: 4.3.4(supports-color@8.1.1) + fast-safe-stringify: 2.1.1 + form-data: 4.0.0 + formidable: 2.1.2 + methods: 1.1.2 + mime: 2.6.0 + qs: 6.11.2 + semver: 7.5.4 + transitivePeerDependencies: + - supports-color + /superjson@1.12.2: resolution: {integrity: sha512-ugvUo9/WmvWOjstornQhsN/sR9mnGtWGYeTxFuqLb4AiT4QdUavjGFRALCPKWWnAiUJ4HTpytj5e0t5HoMRkXg==} engines: {node: '>=10'} @@ -44423,7 +46028,7 @@ packages: engines: {node: ^14.18.0 || >=16.0.0} dependencies: '@pkgr/utils': 2.3.1 - tslib: 2.6.2 + tslib: 2.5.0 dev: true /tabbable@6.1.1: @@ -44685,7 +46290,6 @@ packages: serialize-javascript: 6.0.1 terser: 5.19.3 webpack: 5.78.0(@swc/core@1.3.49) - dev: false /terser-webpack-plugin@5.3.9(@swc/core@1.3.49)(esbuild@0.17.8)(webpack@5.76.1): resolution: {integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==} @@ -44709,7 +46313,7 @@ packages: jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.1 - terser: 5.19.3 + terser: 5.21.0 webpack: 5.76.1(@swc/core@1.3.49)(esbuild@0.17.8) dev: true @@ -44735,7 +46339,7 @@ packages: jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.1 - terser: 5.19.3 + terser: 5.21.0 webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) /terser-webpack-plugin@5.3.9(@swc/core@1.3.49)(esbuild@0.18.20)(webpack@5.82.1): @@ -44784,7 +46388,7 @@ packages: jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.1 - terser: 5.19.3 + terser: 5.21.0 webpack: 5.78.0(@swc/core@1.3.49) /terser-webpack-plugin@5.3.9(@swc/core@1.3.49)(webpack@5.88.2): @@ -44808,10 +46412,34 @@ packages: jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.1 - terser: 5.19.3 + terser: 5.21.0 webpack: 5.88.2(@swc/core@1.3.49) dev: true + /terser-webpack-plugin@5.3.9(@swc/core@1.3.49)(webpack@5.89.0): + resolution: {integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==} + engines: {node: '>= 10.13.0'} + peerDependencies: + '@swc/core': '*' + esbuild: '*' + uglify-js: '*' + webpack: ^5.1.0 + peerDependenciesMeta: + '@swc/core': + optional: true + esbuild: + optional: true + uglify-js: + optional: true + dependencies: + '@jridgewell/trace-mapping': 0.3.18 + '@swc/core': 1.3.49 + jest-worker: 27.5.1 + schema-utils: 3.3.0 + serialize-javascript: 6.0.1 + terser: 5.21.0 + webpack: 5.89.0(@swc/core@1.3.49) + /terser@4.8.1: resolution: {integrity: sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==} engines: {node: '>=6.0.0'} @@ -44854,6 +46482,16 @@ packages: commander: 2.20.3 source-map-support: 0.5.21 + /terser@5.21.0: + resolution: {integrity: sha512-WtnFKrxu9kaoXuiZFSGrcAvvBqAdmKx0SFNmVNYdJamMu9yyN3I/QF0FbH4QcqJQ+y1CJnzxGIKH0cSj+FGYRw==} + engines: {node: '>=10'} + hasBin: true + dependencies: + '@jridgewell/source-map': 0.3.3 + acorn: 8.10.0 + commander: 2.20.3 + source-map-support: 0.5.21 + /test-exclude@6.0.0: resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} engines: {node: '>=8'} @@ -45177,7 +46815,7 @@ packages: tslib: 1.14.1 dev: true - /ts-jest@27.1.5(@babel/core@7.22.11)(@types/jest@27.5.2)(jest@27.5.1)(typescript@4.9.5): + /ts-jest@27.1.5(@babel/core@7.23.2)(@types/jest@27.5.2)(jest@27.5.1)(typescript@4.9.5): resolution: {integrity: sha512-Xv6jBQPoBEvBq/5i2TeSG9tt/nqkbpcurrEG1b+2yfBrcJelOZF9Ml6dmyMh7bcW9JyFbRYpR5rxROSlBLTZHA==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} hasBin: true @@ -45198,7 +46836,7 @@ packages: esbuild: optional: true dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@types/jest': 27.5.2 bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 @@ -45212,7 +46850,7 @@ packages: yargs-parser: 20.2.9 dev: true - /ts-jest@27.1.5(@babel/core@7.22.11)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5): + /ts-jest@27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5): resolution: {integrity: sha512-Xv6jBQPoBEvBq/5i2TeSG9tt/nqkbpcurrEG1b+2yfBrcJelOZF9Ml6dmyMh7bcW9JyFbRYpR5rxROSlBLTZHA==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} hasBin: true @@ -45233,7 +46871,7 @@ packages: esbuild: optional: true dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@types/jest': 29.5.1 bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 @@ -45247,7 +46885,7 @@ packages: yargs-parser: 20.2.9 dev: true - /ts-jest@27.1.5(@babel/core@7.22.11)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5): + /ts-jest@27.1.5(@babel/core@7.23.2)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5): resolution: {integrity: sha512-Xv6jBQPoBEvBq/5i2TeSG9tt/nqkbpcurrEG1b+2yfBrcJelOZF9Ml6dmyMh7bcW9JyFbRYpR5rxROSlBLTZHA==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} hasBin: true @@ -45268,7 +46906,7 @@ packages: esbuild: optional: true dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 '@types/jest': 29.5.2 bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 @@ -45282,7 +46920,7 @@ packages: yargs-parser: 20.2.9 dev: true - /ts-jest@29.1.0(@babel/core@7.22.11)(esbuild@0.18.20)(jest@29.5.0)(typescript@4.9.5): + /ts-jest@29.1.0(@babel/core@7.23.2)(esbuild@0.18.20)(jest@29.5.0)(typescript@4.9.5): resolution: {integrity: sha512-ZhNr7Z4PcYa+JjMl62ir+zPiNJfXJN6E8hSLnaUKhOgqcn8vb3e537cpkd0FuAfRK3sR1LSqM1MOhliXNgOFPA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true @@ -45303,7 +46941,7 @@ packages: esbuild: optional: true dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 bs-logger: 0.2.6 esbuild: 0.18.20 fast-json-stable-stringify: 2.1.0 @@ -45317,7 +46955,7 @@ packages: yargs-parser: 21.1.1 dev: true - /ts-jest@29.1.0(@babel/core@7.22.11)(jest@29.5.0)(typescript@4.9.5): + /ts-jest@29.1.0(@babel/core@7.23.2)(jest@29.5.0)(typescript@4.9.5): resolution: {integrity: sha512-ZhNr7Z4PcYa+JjMl62ir+zPiNJfXJN6E8hSLnaUKhOgqcn8vb3e537cpkd0FuAfRK3sR1LSqM1MOhliXNgOFPA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true @@ -45338,7 +46976,7 @@ packages: esbuild: optional: true dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.23.2 bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 jest: 29.5.0(@types/node@14.18.42)(ts-node@10.9.1) @@ -45351,7 +46989,7 @@ packages: yargs-parser: 21.1.1 dev: true - /ts-loader@9.4.2(typescript@4.9.5)(webpack@5.78.0): + /ts-loader@9.4.2(typescript@4.9.5)(webpack@5.82.1): resolution: {integrity: sha512-OmlC4WVmFv5I0PpaxYb+qGeGOdm5giHU7HwDDUjw59emP2UYMHy9fFSDcYgSNoH8sXcj4hGCSEhlDZ9ULeDraA==} engines: {node: '>=12.0.0'} peerDependencies: @@ -45363,10 +47001,10 @@ packages: micromatch: 4.0.5 semver: 7.5.2 typescript: 4.9.5 - webpack: 5.78.0(@swc/core@1.3.49) + webpack: 5.82.1(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) dev: true - /ts-loader@9.4.2(typescript@4.9.5)(webpack@5.82.1): + /ts-loader@9.4.2(typescript@4.9.5)(webpack@5.89.0): resolution: {integrity: sha512-OmlC4WVmFv5I0PpaxYb+qGeGOdm5giHU7HwDDUjw59emP2UYMHy9fFSDcYgSNoH8sXcj4hGCSEhlDZ9ULeDraA==} engines: {node: '>=12.0.0'} peerDependencies: @@ -45378,7 +47016,7 @@ packages: micromatch: 4.0.5 semver: 7.5.2 typescript: 4.9.5 - webpack: 5.82.1(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) + webpack: 5.89.0(@swc/core@1.3.49) dev: true /ts-node@10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5): @@ -45411,6 +47049,7 @@ packages: typescript: 4.9.5 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 + dev: true /ts-node@10.9.1(@swc/core@1.3.49)(@types/node@16.11.7)(typescript@4.9.5): resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} @@ -45443,7 +47082,7 @@ packages: v8-compile-cache-lib: 3.0.1 yn: 3.1.1 - /ts-node@10.9.1(@swc/core@1.3.49)(@types/node@20.4.7)(typescript@4.9.5): + /ts-node@10.9.1(@swc/core@1.3.49)(@types/node@20.5.1)(typescript@4.9.5): resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} hasBin: true peerDependencies: @@ -45463,7 +47102,7 @@ packages: '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.3 - '@types/node': 20.4.7 + '@types/node': 20.5.1 acorn: 8.10.0 acorn-walk: 8.2.0 arg: 4.1.3 @@ -45476,6 +47115,37 @@ packages: dev: true optional: true + /ts-node@10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5): + 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 + '@swc/core': 1.3.49 + '@tsconfig/node10': 1.0.9 + '@tsconfig/node12': 1.0.11 + '@tsconfig/node14': 1.0.3 + '@tsconfig/node16': 1.0.3 + '@types/node': 20.8.6 + acorn: 8.10.0 + 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.5 + v8-compile-cache-lib: 3.0.1 + yn: 3.1.1 + /ts-node@9.1.1(typescript@4.9.5): resolution: {integrity: sha512-hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg==} engines: {node: '>=10.0.0'} @@ -45560,12 +47230,6 @@ packages: /tslib@2.5.0: resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==} - /tslib@2.6.0: - resolution: {integrity: sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA==} - requiresBuild: true - dev: false - optional: true - /tslib@2.6.2: resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} @@ -45826,6 +47490,9 @@ packages: dev: false optional: true + /undici-types@5.25.3: + resolution: {integrity: sha512-Ga1jfYwRn7+cP9v8auvEXN1rX3sWqlayd4HP7OKk4mZWylEmu3KzXDUGrQUN6Ol7qo1gPvB2e5gX6udnyEPgdA==} + /undici@5.23.0: resolution: {integrity: sha512-1D7w+fvRsqlQ9GscLBwcAJinqcZGHUKjbOmXdlE/v8BvEGXjeWAax+341q44EuTcHXXnfyKNbKRq4Lg7OzhMmg==} engines: {node: '>=14.0'} @@ -46042,6 +47709,16 @@ packages: escalade: 3.1.1 picocolors: 1.0.0 + /update-browserslist-db@1.0.13(browserslist@4.22.1): + resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + dependencies: + browserslist: 4.22.1 + escalade: 3.1.1 + picocolors: 1.0.0 + /upper-case-first@1.1.2: resolution: {integrity: sha512-wINKYvI3Db8dtjikdAqoBbZoP6Q+PZUyfMR7pmwHzjC2quzSkUq5DmPrTtPEqHaz8AGtmsB4TqwapMTM1QAQOQ==} dependencies: @@ -46261,17 +47938,17 @@ packages: /util.promisify@1.0.0: resolution: {integrity: sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==} dependencies: - define-properties: 1.2.0 - object.getownpropertydescriptors: 2.1.6 + define-properties: 1.2.1 + object.getownpropertydescriptors: 2.1.7 dev: false /util.promisify@1.0.1: resolution: {integrity: sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==} dependencies: - define-properties: 1.2.0 - es-abstract: 1.22.1 + define-properties: 1.2.1 + es-abstract: 1.22.2 has-symbols: 1.0.3 - object.getownpropertydescriptors: 2.1.6 + object.getownpropertydescriptors: 2.1.7 /util@0.12.5: resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==} @@ -46320,7 +47997,7 @@ packages: hasBin: true dependencies: dequal: 2.0.3 - diff: 5.0.0 + diff: 5.1.0 kleur: 4.1.5 sade: 1.8.1 dev: true @@ -46711,7 +48388,7 @@ packages: mime-types: 2.1.35 range-parser: 1.2.1 schema-utils: 4.0.0 - webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) + webpack: 5.78.0(@swc/core@1.3.49) /webpack-dev-middleware@6.0.1(webpack@5.76.1): resolution: {integrity: sha512-PZPZ6jFinmqVPJZbisfggDiC+2EeGZ1ZByyMP5sOFJcPPWSexalISz+cvm+j+oYPT7FIJyxT76esjnw9DhE5sw==} @@ -46830,7 +48507,7 @@ packages: serve-index: 1.9.1 sockjs: 0.3.24 spdy: 4.0.2 - webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) + webpack: 5.78.0(@swc/core@1.3.49) webpack-dev-middleware: 5.3.3(webpack@5.78.0) ws: 8.13.0 transitivePeerDependencies: @@ -46854,7 +48531,7 @@ packages: webpack: ^4.44.2 || ^5.47.0 dependencies: tapable: 2.2.1 - webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) + webpack: 5.78.0(@swc/core@1.3.49) webpack-sources: 2.3.1 /webpack-merge@5.8.0: @@ -46958,8 +48635,8 @@ packages: '@webassemblyjs/ast': 1.11.1 '@webassemblyjs/wasm-edit': 1.11.1 '@webassemblyjs/wasm-parser': 1.11.1 - acorn: 8.10.0 - acorn-import-assertions: 1.9.0(acorn@8.10.0) + acorn: 8.8.2 + acorn-import-assertions: 1.9.0(acorn@8.8.2) browserslist: 4.21.10 chrome-trace-event: 1.0.3 enhanced-resolve: 5.15.0 @@ -46997,8 +48674,8 @@ packages: '@webassemblyjs/ast': 1.11.1 '@webassemblyjs/wasm-edit': 1.11.1 '@webassemblyjs/wasm-parser': 1.11.1 - acorn: 8.10.0 - acorn-import-assertions: 1.9.0(acorn@8.10.0) + acorn: 8.8.2 + acorn-import-assertions: 1.9.0(acorn@8.8.2) browserslist: 4.21.10 chrome-trace-event: 1.0.3 enhanced-resolve: 5.15.0 @@ -47102,6 +48779,45 @@ packages: - uglify-js dev: true + /webpack@5.89.0(@swc/core@1.3.49): + resolution: {integrity: sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==} + engines: {node: '>=10.13.0'} + hasBin: true + peerDependencies: + webpack-cli: '*' + peerDependenciesMeta: + webpack-cli: + optional: true + dependencies: + '@types/eslint-scope': 3.7.5 + '@types/estree': 1.0.2 + '@webassemblyjs/ast': 1.11.6 + '@webassemblyjs/wasm-edit': 1.11.6 + '@webassemblyjs/wasm-parser': 1.11.6 + acorn: 8.10.0 + acorn-import-assertions: 1.9.0(acorn@8.10.0) + browserslist: 4.22.1 + chrome-trace-event: 1.0.3 + enhanced-resolve: 5.15.0 + es-module-lexer: 1.3.1 + eslint-scope: 5.1.1 + events: 3.3.0 + glob-to-regexp: 0.4.1 + graceful-fs: 4.2.11 + json-parse-even-better-errors: 2.3.1 + loader-runner: 4.3.0 + mime-types: 2.1.35 + neo-async: 2.6.2 + schema-utils: 3.3.0 + tapable: 2.2.1 + terser-webpack-plugin: 5.3.9(@swc/core@1.3.49)(webpack@5.89.0) + watchpack: 2.4.0 + webpack-sources: 3.2.3 + transitivePeerDependencies: + - '@swc/core' + - esbuild + - uglify-js + /websocket-driver@0.7.4: resolution: {integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==} engines: {node: '>=0.8.0'} @@ -47438,7 +49154,7 @@ packages: fast-json-stable-stringify: 2.1.0 pretty-bytes: 5.6.0 upath: 1.2.0 - webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) + webpack: 5.78.0(@swc/core@1.3.49) webpack-sources: 1.4.3 workbox-build: 6.5.4 transitivePeerDependencies: @@ -47498,7 +49214,7 @@ packages: dependencies: ansi-styles: 6.2.1 string-width: 5.1.2 - strip-ansi: 7.0.1 + strip-ansi: 7.1.0 /wrappy@1.0.2: resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} @@ -47732,11 +49448,11 @@ packages: /yargs-parser@20.2.4: resolution: {integrity: sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==} engines: {node: '>=10'} - dev: true /yargs-parser@20.2.9: resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} engines: {node: '>=10'} + dev: true /yargs-parser@21.0.1: resolution: {integrity: sha512-9BK1jFpLzJROCI5TzwZL/TU4gqjK5xiHV/RfWLOahrjAko/e4DJkRDZQXfvqAsiZzzYhgAzbgz6lg48jcm4GLg==} @@ -47799,7 +49515,7 @@ packages: require-directory: 2.1.1 string-width: 4.2.3 y18n: 5.0.8 - yargs-parser: 20.2.9 + yargs-parser: 20.2.4 /yargs@17.6.2: resolution: {integrity: sha512-1/9UrdHjDZc0eOU0HxOHoS78C69UD3JRMvzlJ7S79S2nTaWRA/whGCTV8o9e/N/1Va9YIV7Q4sOxD8VV4pCWOw==} From c8dd78a22f1c66277a255c9662e40b4388f4ba47 Mon Sep 17 00:00:00 2001 From: Dima Grossman Date: Sun, 15 Oct 2023 15:57:41 +0300 Subject: [PATCH 3/4] fix: lock file --- pnpm-lock.yaml | 737 +++++++++++++++---------------------------------- 1 file changed, 230 insertions(+), 507 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d47276c5573..b3c130c964e 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -126,7 +126,7 @@ importers: version: 8.8.0(eslint@8.38.0) eslint-import-resolver-webpack: specifier: ^0.13.7 - version: 0.13.7(eslint-plugin-import@2.28.1)(webpack@5.89.0) + version: 0.13.7(eslint-plugin-import@2.28.1)(webpack@5.78.0) eslint-plugin-eslint-comments: specifier: ^3.2.0 version: 3.2.0(eslint@8.38.0) @@ -464,7 +464,7 @@ importers: version: 9.2.4 ts-loader: specifier: ~9.4.0 - version: 9.4.2(typescript@4.9.5)(webpack@5.89.0) + version: 9.4.2(typescript@4.9.5)(webpack@5.78.0) ts-node: specifier: ~10.9.1 version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) @@ -576,7 +576,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) ts-loader: specifier: ~9.4.0 - version: 9.4.2(typescript@4.9.5)(webpack@5.89.0) + version: 9.4.2(typescript@4.9.5)(webpack@5.78.0) ts-node: specifier: ~10.9.1 version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) @@ -1100,7 +1100,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-loader: specifier: ~9.4.0 - version: 9.4.2(typescript@4.9.5)(webpack@5.89.0) + version: 9.4.2(typescript@4.9.5)(webpack@5.78.0) ts-node: specifier: ~10.9.1 version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) @@ -1444,7 +1444,7 @@ importers: version: 5.0.0 ts-loader: specifier: ~9.4.0 - version: 9.4.2(typescript@4.9.5)(webpack@5.89.0) + version: 9.4.2(typescript@4.9.5)(webpack@5.78.0) ts-node: specifier: ~10.9.1 version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) @@ -1598,7 +1598,7 @@ importers: version: 6.3.3 ts-loader: specifier: ~9.4.0 - version: 9.4.2(typescript@4.9.5)(webpack@5.89.0) + version: 9.4.2(typescript@4.9.5)(webpack@5.78.0) ts-node: specifier: ~10.9.1 version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) @@ -1707,7 +1707,7 @@ importers: version: 0.4.9(graphql@15.8.0) eslint-plugin-prettier: specifier: ^4.2.1 - version: 4.2.1(eslint-config-prettier@8.8.0)(eslint@7.32.0)(prettier@3.0.3) + version: 4.2.1(eslint-config-prettier@8.8.0)(eslint@7.32.0)(prettier@2.8.7) nodemon: specifier: ^3.0.1 version: 3.0.1 @@ -1935,7 +1935,7 @@ importers: version: 0.4.9(graphql@15.8.0) eslint-plugin-prettier: specifier: ^4.2.1 - version: 4.2.1(eslint-config-prettier@8.8.0)(eslint@7.32.0)(prettier@3.0.3) + version: 4.2.1(eslint-config-prettier@8.8.0)(eslint@7.32.0)(prettier@2.8.7) nodemon: specifier: ^3.0.1 version: 3.0.1 @@ -2231,7 +2231,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typescript: specifier: 4.9.5 version: 4.9.5 @@ -2279,7 +2279,7 @@ importers: version: 5.4.1 ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) uuid: specifier: ^9.0.0 version: 9.0.0 @@ -2430,7 +2430,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -2895,7 +2895,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typescript: specifier: 4.9.5 version: 4.9.5 @@ -2944,7 +2944,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -3002,7 +3002,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -3057,7 +3057,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -3103,7 +3103,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@27.5.2)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typescript: specifier: 4.9.5 version: 4.9.5 @@ -3155,7 +3155,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -3201,7 +3201,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@27.5.2)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typescript: specifier: 4.9.5 version: 4.9.5 @@ -3253,7 +3253,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -3308,7 +3308,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -3372,7 +3372,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -3436,7 +3436,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -3482,7 +3482,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typescript: specifier: 4.9.5 version: 4.9.5 @@ -3537,7 +3537,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -3592,7 +3592,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -3647,7 +3647,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -3702,7 +3702,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -3763,7 +3763,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -3821,7 +3821,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -3867,7 +3867,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@27.5.2)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typescript: specifier: 4.9.5 version: 4.9.5 @@ -3925,7 +3925,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -3977,7 +3977,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typescript: specifier: 4.9.5 version: 4.9.5 @@ -4020,7 +4020,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typescript: specifier: 4.9.5 version: 4.9.5 @@ -4072,7 +4072,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -4130,7 +4130,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -4185,7 +4185,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -4243,7 +4243,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -4289,7 +4289,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typescript: specifier: 4.9.5 version: 4.9.5 @@ -4344,7 +4344,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -4399,7 +4399,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -4445,7 +4445,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@27.5.2)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typescript: specifier: 4.9.5 version: 4.9.5 @@ -4500,7 +4500,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -4546,7 +4546,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typescript: specifier: 4.9.5 version: 4.9.5 @@ -4598,7 +4598,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -4644,7 +4644,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@27.5.2)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typescript: specifier: 4.9.5 version: 4.9.5 @@ -4696,7 +4696,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -4751,7 +4751,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -4809,7 +4809,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -4864,7 +4864,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -4910,7 +4910,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typescript: specifier: 4.9.5 version: 4.9.5 @@ -4968,7 +4968,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -5023,7 +5023,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -5081,7 +5081,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -5136,7 +5136,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -5194,7 +5194,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.1)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -5249,7 +5249,7 @@ importers: version: 27.1.5(@babel/core@7.23.2)(@types/jest@29.5.2)(jest@27.5.1)(typescript@4.9.5) ts-node: specifier: ~10.9.1 - version: 10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) typedoc: specifier: ^0.24.0 version: 0.24.6(typescript@4.9.5) @@ -6089,7 +6089,7 @@ packages: '@smithy/util-defaults-mode-node': 2.0.3 '@smithy/util-retry': 2.0.0 '@smithy/util-utf8': 2.0.0 - tslib: 2.5.0 + tslib: 2.6.2 transitivePeerDependencies: - aws-crt dev: false @@ -6130,7 +6130,7 @@ packages: '@smithy/util-defaults-mode-node': 2.0.3 '@smithy/util-retry': 2.0.0 '@smithy/util-utf8': 2.0.0 - tslib: 2.5.0 + tslib: 2.6.2 transitivePeerDependencies: - aws-crt dev: false @@ -6171,7 +6171,7 @@ packages: '@smithy/util-defaults-mode-node': 2.0.3 '@smithy/util-retry': 2.0.0 '@smithy/util-utf8': 2.0.0 - tslib: 2.5.0 + tslib: 2.6.2 transitivePeerDependencies: - aws-crt dev: false @@ -6216,7 +6216,7 @@ packages: '@smithy/util-retry': 2.0.0 '@smithy/util-utf8': 2.0.0 fast-xml-parser: 4.2.5 - tslib: 2.5.0 + tslib: 2.6.2 transitivePeerDependencies: - aws-crt dev: false @@ -6273,7 +6273,7 @@ packages: '@aws-sdk/types': 3.378.0 '@smithy/property-provider': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.5.0 + tslib: 2.6.2 dev: false /@aws-sdk/credential-provider-env@3.387.0: @@ -6283,7 +6283,7 @@ packages: '@aws-sdk/types': 3.387.0 '@smithy/property-provider': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.5.0 + tslib: 2.6.2 dev: false /@aws-sdk/credential-provider-ini@3.382.0: @@ -6299,7 +6299,7 @@ packages: '@smithy/property-provider': 2.0.3 '@smithy/shared-ini-file-loader': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.5.0 + tslib: 2.6.2 transitivePeerDependencies: - aws-crt dev: false @@ -6317,7 +6317,7 @@ packages: '@smithy/property-provider': 2.0.3 '@smithy/shared-ini-file-loader': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.5.0 + tslib: 2.6.2 transitivePeerDependencies: - aws-crt dev: false @@ -6336,7 +6336,7 @@ packages: '@smithy/property-provider': 2.0.3 '@smithy/shared-ini-file-loader': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.5.0 + tslib: 2.6.2 transitivePeerDependencies: - aws-crt dev: false @@ -6368,7 +6368,7 @@ packages: '@smithy/property-provider': 2.0.3 '@smithy/shared-ini-file-loader': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.5.0 + tslib: 2.6.2 dev: false /@aws-sdk/credential-provider-process@3.387.0: @@ -6379,7 +6379,7 @@ packages: '@smithy/property-provider': 2.0.3 '@smithy/shared-ini-file-loader': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.5.0 + tslib: 2.6.2 dev: false /@aws-sdk/credential-provider-sso@3.382.0: @@ -6392,7 +6392,7 @@ packages: '@smithy/property-provider': 2.0.3 '@smithy/shared-ini-file-loader': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.5.0 + tslib: 2.6.2 transitivePeerDependencies: - aws-crt dev: false @@ -6407,7 +6407,7 @@ packages: '@smithy/property-provider': 2.0.3 '@smithy/shared-ini-file-loader': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.5.0 + tslib: 2.6.2 transitivePeerDependencies: - aws-crt dev: false @@ -6419,7 +6419,7 @@ packages: '@aws-sdk/types': 3.378.0 '@smithy/property-provider': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.5.0 + tslib: 2.6.2 dev: false /@aws-sdk/credential-provider-web-identity@3.387.0: @@ -6429,7 +6429,7 @@ packages: '@aws-sdk/types': 3.387.0 '@smithy/property-provider': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.5.0 + tslib: 2.6.2 dev: false /@aws-sdk/middleware-bucket-endpoint@3.387.0: @@ -6475,7 +6475,7 @@ packages: '@aws-sdk/types': 3.378.0 '@smithy/protocol-http': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.5.0 + tslib: 2.6.2 dev: false /@aws-sdk/middleware-host-header@3.387.0: @@ -6503,7 +6503,7 @@ packages: dependencies: '@aws-sdk/types': 3.378.0 '@smithy/types': 2.2.0 - tslib: 2.5.0 + tslib: 2.6.2 dev: false /@aws-sdk/middleware-logger@3.387.0: @@ -6522,7 +6522,7 @@ packages: '@aws-sdk/types': 3.378.0 '@smithy/protocol-http': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.5.0 + tslib: 2.6.2 dev: false /@aws-sdk/middleware-recursion-detection@3.387.0: @@ -6553,7 +6553,7 @@ packages: '@aws-sdk/middleware-signing': 3.379.1 '@aws-sdk/types': 3.378.0 '@smithy/types': 2.2.0 - tslib: 2.5.0 + tslib: 2.6.2 dev: false /@aws-sdk/middleware-sdk-sts@3.387.0: @@ -6563,7 +6563,7 @@ packages: '@aws-sdk/middleware-signing': 3.387.0 '@aws-sdk/types': 3.387.0 '@smithy/types': 2.2.0 - tslib: 2.5.0 + tslib: 2.6.2 dev: false /@aws-sdk/middleware-signing@3.379.1: @@ -6576,7 +6576,7 @@ packages: '@smithy/signature-v4': 2.0.3 '@smithy/types': 2.2.0 '@smithy/util-middleware': 2.0.0 - tslib: 2.5.0 + tslib: 2.6.2 dev: false /@aws-sdk/middleware-signing@3.387.0: @@ -6609,7 +6609,7 @@ packages: '@aws-sdk/util-endpoints': 3.382.0 '@smithy/protocol-http': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.5.0 + tslib: 2.6.2 dev: false /@aws-sdk/middleware-user-agent@3.387.0: @@ -6664,7 +6664,7 @@ packages: '@smithy/property-provider': 2.0.3 '@smithy/shared-ini-file-loader': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.5.0 + tslib: 2.6.2 transitivePeerDependencies: - aws-crt dev: false @@ -6707,7 +6707,7 @@ packages: '@smithy/util-defaults-mode-node': 2.0.3 '@smithy/util-retry': 2.0.0 '@smithy/util-utf8': 2.0.0 - tslib: 2.5.0 + tslib: 2.6.2 transitivePeerDependencies: - aws-crt dev: false @@ -6717,7 +6717,7 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@smithy/types': 2.2.0 - tslib: 2.5.0 + tslib: 2.6.2 dev: false /@aws-sdk/types@3.387.0: @@ -6732,7 +6732,7 @@ packages: resolution: {integrity: sha512-jL8509owp/xB9+Or0pvn3Fe+b94qfklc2yPowZZIFAkFcCSIdkIglz18cPDWnYAcy9JGewpMS1COXKIUhZkJsA==} engines: {node: '>=14.0.0'} dependencies: - tslib: 2.5.0 + tslib: 2.6.2 dev: false /@aws-sdk/util-endpoints@3.382.0: @@ -6740,7 +6740,7 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@aws-sdk/types': 3.378.0 - tslib: 2.5.0 + tslib: 2.6.2 dev: false /@aws-sdk/util-endpoints@3.387.0: @@ -6765,7 +6765,7 @@ packages: resolution: {integrity: sha512-qo2t/vBTnoXpjKxlsC2e1gBrRm80M3bId27r0BRB2VniSSe7bL1mmzM+/HFtujm0iAxtPM+aLEflLJlJeDPg0w==} engines: {node: '>=14.0.0'} dependencies: - tslib: 2.5.0 + tslib: 2.6.2 dev: false /@aws-sdk/util-user-agent-browser@3.378.0: @@ -6774,7 +6774,7 @@ packages: '@aws-sdk/types': 3.378.0 '@smithy/types': 2.2.0 bowser: 2.11.0 - tslib: 2.5.0 + tslib: 2.6.2 dev: false /@aws-sdk/util-user-agent-browser@3.387.0: @@ -6798,7 +6798,7 @@ packages: '@aws-sdk/types': 3.378.0 '@smithy/node-config-provider': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.5.0 + tslib: 2.6.2 dev: false /@aws-sdk/util-user-agent-node@3.387.0: @@ -6819,7 +6819,7 @@ packages: /@aws-sdk/util-utf8-browser@3.259.0: resolution: {integrity: sha512-UvFa/vR+e19XookZF8RzFZBrw2EUkQWxiBW0yYQAhvk3C+QVGl0H3ouca8LDBlBfQKXwmW3huo/59H8rwb1wJw==} dependencies: - tslib: 2.5.0 + tslib: 2.6.2 dev: false /@aws-sdk/xml-builder@3.310.0: @@ -6833,7 +6833,7 @@ packages: resolution: {integrity: sha512-TrRLIoSQVzfAJX9H1JeFjzAoDGcoK1IYX1UImfceTZpsyYfWr09Ss1aHW1y5TrrR3iq6RZLBwJ3E24uwPhwahw==} engines: {node: '>=12.0.0'} dependencies: - tslib: 2.5.0 + tslib: 2.6.2 dev: false /@azure/core-auth@1.4.0: @@ -6841,7 +6841,7 @@ packages: engines: {node: '>=12.0.0'} dependencies: '@azure/abort-controller': 1.1.0 - tslib: 2.5.0 + tslib: 2.6.2 dev: false /@azure/core-http@3.0.0: @@ -6858,7 +6858,7 @@ packages: form-data: 4.0.0 node-fetch: 2.7.0 process: 0.11.10 - tslib: 2.5.0 + tslib: 2.6.2 tunnel: 0.0.6 uuid: 8.3.2 xml2js: 0.4.23 @@ -6873,14 +6873,14 @@ packages: '@azure/abort-controller': 1.1.0 '@azure/core-util': 1.3.0 '@azure/logger': 1.0.4 - tslib: 2.5.0 + tslib: 2.6.2 dev: false /@azure/core-paging@1.5.0: resolution: {integrity: sha512-zqWdVIt+2Z+3wqxEOGzR5hXFZ8MGKK52x4vFLw8n58pR6ZfKRx3EXYTxTaYxYHc/PexPUTyimcTWFJbji9Z6Iw==} engines: {node: '>=14.0.0'} dependencies: - tslib: 2.5.0 + tslib: 2.6.2 dev: false /@azure/core-tracing@1.0.0-preview.13: @@ -6888,7 +6888,7 @@ packages: engines: {node: '>=12.0.0'} dependencies: '@opentelemetry/api': 1.4.1 - tslib: 2.5.0 + tslib: 2.6.2 dev: false /@azure/core-util@1.3.0: @@ -6896,14 +6896,14 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@azure/abort-controller': 1.1.0 - tslib: 2.5.0 + tslib: 2.6.2 dev: false /@azure/logger@1.0.4: resolution: {integrity: sha512-ustrPY8MryhloQj7OWGe+HrYx+aoiOxzbXTtgblbV3xwCqpzUK36phH3XNHQKj3EPonyFUuDTfR3qFhTEAuZEg==} engines: {node: '>=14.0.0'} dependencies: - tslib: 2.5.0 + tslib: 2.6.2 dev: false /@azure/storage-blob@12.13.0: @@ -12832,7 +12832,7 @@ packages: lodash.get: 4.4.2 make-error: 1.3.6 ts-node: 9.1.1(typescript@4.9.5) - tslib: 2.5.0 + tslib: 2.6.2 transitivePeerDependencies: - typescript dev: true @@ -14034,7 +14034,7 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@jest/types': 27.5.1 - '@types/node': 12.20.55 + '@types/node': 14.18.42 chalk: 4.1.2 jest-message-util: 27.5.1 jest-util: 27.5.1 @@ -14045,7 +14045,7 @@ packages: engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: '@jest/types': 28.1.3 - '@types/node': 12.20.55 + '@types/node': 14.18.42 chalk: 4.1.2 jest-message-util: 28.1.3 jest-util: 28.1.3 @@ -14056,7 +14056,7 @@ packages: engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/types': 29.5.0 - '@types/node': 16.11.7 + '@types/node': 14.18.42 chalk: 4.1.2 jest-message-util: 29.5.0 jest-util: 29.5.0 @@ -14155,7 +14155,7 @@ packages: dependencies: '@jest/fake-timers': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 12.20.55 + '@types/node': 14.18.42 jest-mock: 27.5.1 /@jest/environment@29.5.0: @@ -14190,7 +14190,7 @@ packages: dependencies: '@jest/types': 27.5.1 '@sinonjs/fake-timers': 8.1.0 - '@types/node': 12.20.55 + '@types/node': 14.18.42 jest-message-util: 27.5.1 jest-mock: 27.5.1 jest-util: 27.5.1 @@ -14244,7 +14244,7 @@ packages: chalk: 4.1.2 collect-v8-coverage: 1.0.1 exit: 0.1.2 - glob: 7.1.4 + glob: 7.2.3 graceful-fs: 4.2.11 istanbul-lib-coverage: 3.2.0 istanbul-lib-instrument: 4.0.3 @@ -14278,7 +14278,7 @@ packages: '@jest/test-result': 27.5.1 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 12.20.55 + '@types/node': 14.18.42 chalk: 4.1.2 collect-v8-coverage: 1.0.1 exit: 0.1.2 @@ -14316,7 +14316,7 @@ packages: '@jest/transform': 29.5.0 '@jest/types': 29.5.0 '@jridgewell/trace-mapping': 0.3.19 - '@types/node': 16.11.7 + '@types/node': 14.18.42 chalk: 4.1.2 collect-v8-coverage: 1.0.1 exit: 0.1.2 @@ -14485,7 +14485,7 @@ packages: dependencies: '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 - '@types/node': 12.20.55 + '@types/node': 14.18.42 '@types/yargs': 15.0.15 chalk: 4.1.2 @@ -14506,7 +14506,7 @@ packages: '@jest/schemas': 28.1.3 '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 - '@types/node': 12.20.55 + '@types/node': 14.18.42 '@types/yargs': 17.0.24 chalk: 4.1.2 @@ -16386,7 +16386,7 @@ packages: nx: 13.10.6(typescript@4.9.5) rxjs: 6.6.7 semver: 7.3.4 - tslib: 2.5.0 + tslib: 2.6.2 dev: true /@nrwl/devkit@15.9.2(nx@15.9.2): @@ -16399,7 +16399,7 @@ packages: nx: 15.9.2(@swc/core@1.3.49) semver: 7.3.4 tmp: 0.2.1 - tslib: 2.5.0 + tslib: 2.6.2 dev: true /@nrwl/devkit@15.9.4(nx@15.9.2): @@ -16412,7 +16412,7 @@ packages: nx: 15.9.2(@swc/core@1.3.49) semver: 7.3.4 tmp: 0.2.1 - tslib: 2.5.0 + tslib: 2.6.2 dev: true /@nrwl/devkit@15.9.4(nx@15.9.4): @@ -16425,7 +16425,7 @@ packages: nx: 15.9.4(@swc/core@1.3.49) semver: 7.3.4 tmp: 0.2.1 - tslib: 2.5.0 + tslib: 2.6.2 dev: true /@nrwl/eslint-plugin-nx@15.9.4(@typescript-eslint/parser@5.58.0)(eslint-config-prettier@8.8.0)(eslint@8.38.0)(nx@15.9.2)(typescript@4.9.5): @@ -16464,7 +16464,7 @@ packages: jest-util: 27.2.0 resolve.exports: 1.1.0 rxjs: 6.6.7 - tslib: 2.5.0 + tslib: 2.6.2 transitivePeerDependencies: - bufferutil - canvas @@ -16528,7 +16528,7 @@ packages: minimatch: 3.0.5 source-map-support: 0.5.19 tree-kill: 1.2.2 - tslib: 2.5.0 + tslib: 2.6.2 transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -16552,7 +16552,7 @@ packages: '@phenomnomnominal/tsquery': 4.1.1(typescript@4.9.5) eslint: 8.38.0 tmp: 0.2.1 - tslib: 2.5.0 + tslib: 2.6.2 transitivePeerDependencies: - bufferutil - canvas @@ -16947,7 +16947,7 @@ packages: open: 8.4.2 rxjs: 6.6.7 tmp: 0.2.1 - tslib: 2.5.0 + tslib: 2.6.2 yargs: 17.7.2 yargs-parser: 21.1.1 transitivePeerDependencies: @@ -17267,7 +17267,7 @@ packages: open: 8.4.2 picocolors: 1.0.0 tiny-glob: 0.2.9 - tslib: 2.5.0 + tslib: 2.6.2 dev: true /@plunk/node@2.0.0: @@ -17279,45 +17279,6 @@ packages: dev: false /@pmmmwh/react-refresh-webpack-plugin@0.5.10(react-refresh@0.11.0)(webpack-dev-server@4.11.1)(webpack@5.78.0): - resolution: {integrity: sha512-j0Ya0hCFZPd4x40qLzbhGsh9TMtdb+CJQiso+WxLOPNasohq9cc5SNUcwsZaRH6++Xh91Xkm/xHCkuIiIu0LUA==} - engines: {node: '>= 10.13'} - peerDependencies: - '@types/webpack': 4.x || 5.x - react-refresh: '>=0.10.0 <1.0.0' - sockjs-client: ^1.4.0 - type-fest: '>=0.17.0 <4.0.0' - webpack: '>=4.43.0 <6.0.0' - webpack-dev-server: 3.x || 4.x - webpack-hot-middleware: 2.x - webpack-plugin-serve: 0.x || 1.x - peerDependenciesMeta: - '@types/webpack': - optional: true - sockjs-client: - optional: true - type-fest: - optional: true - webpack-dev-server: - optional: true - webpack-hot-middleware: - optional: true - webpack-plugin-serve: - optional: true - dependencies: - ansi-html-community: 0.0.8 - common-path-prefix: 3.0.0 - core-js-pure: 3.30.0 - error-stack-parser: 2.1.4 - find-up: 5.0.0 - html-entities: 2.3.3 - loader-utils: 2.0.4 - react-refresh: 0.11.0 - schema-utils: 3.3.0 - source-map: 0.7.4 - webpack: 5.78.0(@swc/core@1.3.49) - webpack-dev-server: 4.11.1(webpack@5.78.0) - - /@pmmmwh/react-refresh-webpack-plugin@0.5.10(react-refresh@0.11.0)(webpack@5.78.0): resolution: {integrity: sha512-j0Ya0hCFZPd4x40qLzbhGsh9TMtdb+CJQiso+WxLOPNasohq9cc5SNUcwsZaRH6++Xh91Xkm/xHCkuIiIu0LUA==} engines: {node: '>= 10.13'} peerDependencies: @@ -17354,7 +17315,7 @@ packages: schema-utils: 3.3.0 source-map: 0.7.4 webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) - dev: true + webpack-dev-server: 4.11.1(webpack@5.78.0) /@pmmmwh/react-refresh-webpack-plugin@0.5.10(react-refresh@0.14.0)(webpack-dev-server@4.11.1)(webpack@5.78.0): resolution: {integrity: sha512-j0Ya0hCFZPd4x40qLzbhGsh9TMtdb+CJQiso+WxLOPNasohq9cc5SNUcwsZaRH6++Xh91Xkm/xHCkuIiIu0LUA==} @@ -19196,20 +19157,20 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@smithy/types': 2.2.0 - tslib: 2.5.0 + tslib: 2.6.2 dev: false /@smithy/chunked-blob-reader-native@2.0.0: resolution: {integrity: sha512-HM8V2Rp1y8+1343tkZUKZllFhEQPNmpNdgFAncbTsxkZ18/gqjk23XXv3qGyXWp412f3o43ZZ1UZHVcHrpRnCQ==} dependencies: '@smithy/util-base64': 2.0.0 - tslib: 2.5.0 + tslib: 2.6.2 dev: false /@smithy/chunked-blob-reader@2.0.0: resolution: {integrity: sha512-k+J4GHJsMSAIQPChGBrjEmGS+WbPonCXesoqP9fynIqjn7rdOThdH8FAeCmokP9mxTYKQAKoHCLPzNlm6gh7Wg==} dependencies: - tslib: 2.5.0 + tslib: 2.6.2 dev: false /@smithy/config-resolver@2.0.3: @@ -19230,7 +19191,7 @@ packages: '@smithy/property-provider': 2.0.3 '@smithy/types': 2.2.2 '@smithy/url-parser': 2.0.5 - tslib: 2.5.0 + tslib: 2.6.2 dev: false /@smithy/eventstream-codec@2.0.3: @@ -19239,7 +19200,7 @@ packages: '@aws-crypto/crc32': 3.0.0 '@smithy/types': 2.2.2 '@smithy/util-hex-encoding': 2.0.0 - tslib: 2.5.0 + tslib: 2.6.2 dev: false /@smithy/eventstream-serde-browser@2.0.3: @@ -19274,7 +19235,7 @@ packages: dependencies: '@smithy/eventstream-codec': 2.0.3 '@smithy/types': 2.2.0 - tslib: 2.5.0 + tslib: 2.6.2 dev: false /@smithy/fetch-http-handler@2.0.3: @@ -19326,7 +19287,7 @@ packages: resolution: {integrity: sha512-z3PjFjMyZNI98JFRJi/U0nGoLWMSJlDjAW4QUX2WNZLas5C0CmVV6LJ01JI0k90l7FvpmixjWxPFmENSClQ7ug==} engines: {node: '>=14.0.0'} dependencies: - tslib: 2.5.0 + tslib: 2.6.2 dev: false /@smithy/md5-js@2.0.3: @@ -19411,7 +19372,7 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@smithy/types': 2.2.2 - tslib: 2.5.0 + tslib: 2.6.2 dev: false /@smithy/protocol-http@2.0.3: @@ -19428,7 +19389,7 @@ packages: dependencies: '@smithy/types': 2.2.0 '@smithy/util-uri-escape': 2.0.0 - tslib: 2.5.0 + tslib: 2.6.2 dev: false /@smithy/querystring-parser@2.0.3: @@ -19436,7 +19397,7 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@smithy/types': 2.2.0 - tslib: 2.5.0 + tslib: 2.6.2 dev: false /@smithy/querystring-parser@2.0.5: @@ -19444,7 +19405,7 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@smithy/types': 2.2.2 - tslib: 2.5.0 + tslib: 2.6.2 dev: false /@smithy/service-error-classification@2.0.0: @@ -19457,7 +19418,7 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@smithy/types': 2.2.2 - tslib: 2.5.0 + tslib: 2.6.2 dev: false /@smithy/signature-v4@2.0.3: @@ -19471,7 +19432,7 @@ packages: '@smithy/util-middleware': 2.0.0 '@smithy/util-uri-escape': 2.0.0 '@smithy/util-utf8': 2.0.0 - tslib: 2.5.0 + tslib: 2.6.2 dev: false /@smithy/smithy-client@2.0.3: @@ -19495,7 +19456,7 @@ packages: resolution: {integrity: sha512-4PS0y1VxDnELGHGgBWlDksB2LJK8TG8lcvlWxIsgR+8vROI7Ms8h1P4FQUx+ftAX2QZv5g1CJCdhdRmQKyonyw==} engines: {node: '>=14.0.0'} dependencies: - tslib: 2.5.0 + tslib: 2.6.2 dev: false /@smithy/url-parser@2.0.3: @@ -19511,7 +19472,7 @@ packages: dependencies: '@smithy/querystring-parser': 2.0.5 '@smithy/types': 2.2.2 - tslib: 2.5.0 + tslib: 2.6.2 dev: false /@smithy/util-base64@2.0.0: @@ -19540,14 +19501,14 @@ packages: engines: {node: '>=14.0.0'} dependencies: '@smithy/is-array-buffer': 2.0.0 - tslib: 2.5.0 + tslib: 2.6.2 dev: false /@smithy/util-config-provider@2.0.0: resolution: {integrity: sha512-xCQ6UapcIWKxXHEU4Mcs2s7LcFQRiU3XEluM2WcCjjBtQkUN71Tb+ydGmJFPxMUrW/GWMgQEEGipLym4XG0jZg==} engines: {node: '>=14.0.0'} dependencies: - tslib: 2.5.0 + tslib: 2.6.2 dev: false /@smithy/util-defaults-mode-browser@2.0.3: @@ -19576,14 +19537,14 @@ packages: resolution: {integrity: sha512-c5xY+NUnFqG6d7HFh1IFfrm3mGl29lC+vF+geHv4ToiuJCBmIfzx6IeHLg+OgRdPFKDXIw6pvi+p3CsscaMcMA==} engines: {node: '>=14.0.0'} dependencies: - tslib: 2.5.0 + tslib: 2.6.2 dev: false /@smithy/util-middleware@2.0.0: resolution: {integrity: sha512-eCWX4ECuDHn1wuyyDdGdUWnT4OGyIzV0LN1xRttBFMPI9Ff/4heSHVxneyiMtOB//zpXWCha1/SWHJOZstG7kA==} engines: {node: '>=14.0.0'} dependencies: - tslib: 2.5.0 + tslib: 2.6.2 dev: false /@smithy/util-retry@2.0.0: @@ -19612,7 +19573,7 @@ packages: resolution: {integrity: sha512-ebkxsqinSdEooQduuk9CbKcI+wheijxEb3utGXkCoYQkJnwTnLbH1JXGimJtUkQwNQbsbuYwG2+aFVyZf5TLaw==} engines: {node: '>=14.0.0'} dependencies: - tslib: 2.5.0 + tslib: 2.6.2 dev: false /@smithy/util-utf8@2.0.0: @@ -21350,7 +21311,7 @@ packages: '@storybook/telemetry': 7.4.2 '@storybook/types': 7.4.2 '@types/detect-port': 1.3.3 - '@types/node': 16.18.58 + '@types/node': 16.11.7 '@types/pretty-hrtime': 1.0.1 '@types/semver': 7.3.13 better-opn: 3.0.2 @@ -21542,7 +21503,7 @@ packages: '@babel/core': 7.23.2 '@babel/preset-flow': 7.22.15(@babel/core@7.23.2) '@babel/preset-react': 7.22.15(@babel/core@7.23.2) - '@pmmmwh/react-refresh-webpack-plugin': 0.5.10(react-refresh@0.11.0)(webpack@5.78.0) + '@pmmmwh/react-refresh-webpack-plugin': 0.5.10(react-refresh@0.11.0)(webpack-dev-server@4.11.1)(webpack@5.78.0) '@storybook/core-webpack': 7.4.2 '@storybook/docs-tools': 7.4.2 '@storybook/node-logger': 7.4.2 @@ -21973,7 +21934,7 @@ packages: colorette: 2.0.19 debug: 4.3.4(supports-color@8.1.1) pirates: 4.0.5 - tslib: 2.5.0 + tslib: 2.6.2 typescript: 4.9.5 transitivePeerDependencies: - supports-color @@ -21983,7 +21944,7 @@ packages: resolution: {integrity: sha512-gqBJSmJMWomZFxlppaKea7NeAqFrDrrS0RMt24No92M3nJWcyI9YKGEQKl+EyJqZ5gh6w1s0cTklMHMzRwA1NA==} dependencies: source-map-support: 0.5.21 - tslib: 2.5.0 + tslib: 2.6.2 dev: true /@swc/core-darwin-arm64@1.3.49: @@ -22411,12 +22372,12 @@ packages: /@types/cors@2.8.13: resolution: {integrity: sha512-RG8AStHlUiV5ysZQKq97copd2UmVYw3/pRMLefISZ3S1hK104Cwm7iLQ3fTKx+lsUH2CE8FlLaYeEA2LSeqYUA==} dependencies: - '@types/node': 20.8.6 + '@types/node': 14.18.42 /@types/cross-spawn@6.0.3: resolution: {integrity: sha512-BDAkU7WHHRHnvBf5z89lcvACsvkz/n7Tv+HyD/uW76O29HoH1Tk/W6iQrepaZVbisvlEek4ygwT8IW7ow9XLAA==} dependencies: - '@types/node': 12.20.55 + '@types/node': 14.18.42 dev: true /@types/d3-array@3.0.4: @@ -22629,24 +22590,12 @@ packages: '@types/eslint': 8.44.2 '@types/estree': 1.0.1 - /@types/eslint-scope@3.7.5: - resolution: {integrity: sha512-JNvhIEyxVW6EoMIFIvj93ZOywYFatlpu9deeH6eSx6PE3WHYvHaQtmHmQeNw7aA81bYGBPPQqdtBm6b1SsQMmA==} - dependencies: - '@types/eslint': 8.44.4 - '@types/estree': 1.0.2 - /@types/eslint@8.44.2: resolution: {integrity: sha512-sdPRb9K6iL5XZOmBubg8yiFp5yS/JdUDQsq5e6h95km91MCYMuvp7mh1fjPEYUhvHepKpZOjnEaMBR4PxjWDzg==} dependencies: '@types/estree': 1.0.1 '@types/json-schema': 7.0.12 - /@types/eslint@8.44.4: - resolution: {integrity: sha512-lOzjyfY/D9QR4hY9oblZ76B90MYTB3RrQ4z2vBIJKj9ROCRqdkYl2gSUx1x1a4IWPjKJZLL4Aw1Zfay7eMnmnA==} - dependencies: - '@types/estree': 1.0.2 - '@types/json-schema': 7.0.13 - /@types/estree@0.0.39: resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==} @@ -22659,9 +22608,6 @@ packages: /@types/estree@1.0.1: resolution: {integrity: sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==} - /@types/estree@1.0.2: - resolution: {integrity: sha512-VeiPZ9MMwXjO32/Xu7+OwflfmeoRwkE/qzndw42gGtgJwZopBnzy2gD//NN1+go1mADzkDcqf/KnFRSjTJ8xJA==} - /@types/express-serve-static-core@4.17.33: resolution: {integrity: sha512-TPBqmR/HRYI3eC2E5hmiivIzv+bidAfXofM+sbonAGvyDhySGw9/PQZFt2BLOrjUUR++4eJVpx6KnLQK1Fk9tA==} dependencies: @@ -22696,7 +22642,7 @@ packages: /@types/graceful-fs@4.1.6: resolution: {integrity: sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==} dependencies: - '@types/node': 12.20.55 + '@types/node': 14.18.42 /@types/hast@2.3.4: resolution: {integrity: sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==} @@ -22722,7 +22668,7 @@ packages: /@types/http-proxy@1.17.10: resolution: {integrity: sha512-Qs5aULi+zV1bwKAg5z1PWnDXWmsn+LxIvUGv6E2+OOMYhclZMO+OXd9pYVf2gLykf2I7IV2u7oTHwChPNsvJ7g==} dependencies: - '@types/node': 12.20.55 + '@types/node': 14.18.42 /@types/iframe-resizer@3.5.9: resolution: {integrity: sha512-RQUBI75F+uXruB95BFpC/8V8lPgJg4MQ6HxOCtAZYBB/h0FNCfrFfb4I+u2pZJIV7sKeszZbFqy1UnGeBMrvsA==} @@ -22806,9 +22752,6 @@ packages: /@types/json-schema@7.0.12: resolution: {integrity: sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==} - /@types/json-schema@7.0.13: - resolution: {integrity: sha512-RbSSoHliUbnXj3ny0CNFOoxrIDV6SUGyStHsvDqosw6CkdPV8TtWGlfecuK4ToyMEAql6pzNxgCFKanovUzlgQ==} - /@types/json5@0.0.29: resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} @@ -22919,14 +22862,14 @@ packages: /@types/node-fetch@2.6.3: resolution: {integrity: sha512-ETTL1mOEdq/sxUtgtOhKjyB2Irra4cjxksvcMUR5Zr4n+PxVhsCD9WS46oPbHL3et9Zde7CNRr+WUNlcHvsX+w==} dependencies: - '@types/node': 20.8.6 + '@types/node': 14.18.42 form-data: 3.0.1 dev: false /@types/node-fetch@2.6.5: resolution: {integrity: sha512-OZsUlr2nxvkqUFLSaY2ZbA+P1q22q+KrlxWOn/38RX+u5kTkYL2mTujEpzUhGkS+K/QCYp9oagfXG39XOzyySg==} dependencies: - '@types/node': 18.15.11 + '@types/node': 14.18.42 form-data: 4.0.0 /@types/node-mailjet@3.3.9: @@ -22942,10 +22885,6 @@ packages: /@types/node@16.11.7: resolution: {integrity: sha512-QB5D2sqfSjCmTuWcBWyJ+/44bcjO7VbjSbOE0ucoVbAsSNQc4Lt6QkgkVXkTDwkL4z/beecZNDvVX15D4P8Jbw==} - /@types/node@16.18.58: - resolution: {integrity: sha512-YGncyA25/MaVtQkjWW9r0EFBukZ+JulsLcVZBlGUfIb96OBMjkoRWwQo5IEWJ8Fj06Go3GHw+bjYDitv6BaGsA==} - dev: true - /@types/node@17.0.45: resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==} dev: true @@ -23103,7 +23042,7 @@ packages: resolution: {integrity: sha512-whjk1EDJPcAR2kYHRbFl/lKeeKYTi05A15K9bnLInCVroNDCtXce57xKdI0/rQaA3K+6q0eFyUBPmqfSndUZdQ==} dependencies: '@types/caseless': 0.12.2 - '@types/node': 20.8.6 + '@types/node': 14.18.42 '@types/tough-cookie': 4.0.2 form-data: 2.5.1 @@ -23120,7 +23059,7 @@ packages: /@types/resolve@1.17.1: resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==} dependencies: - '@types/node': 12.20.55 + '@types/node': 14.18.42 /@types/resolve@1.20.2: resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} @@ -23209,7 +23148,7 @@ packages: /@types/ssri@7.1.1: resolution: {integrity: sha512-DPP/jkDaqGiyU75MyMURxLWyYLwKSjnAuGe9ZCsLp9QZOpXmDfuevk769F0BS86TmRuD5krnp06qw9nSoNO+0g==} dependencies: - '@types/node': 16.11.7 + '@types/node': 14.18.42 dev: true /@types/stack-utils@2.0.1: @@ -23260,7 +23199,7 @@ packages: /@types/tunnel@0.0.3: resolution: {integrity: sha512-sOUTGn6h1SfQ+gbgqC364jLFBw2lnFqkgF3q0WovEHRLMrVD1sd5aufqi/aJObLekJO+Aq5z646U4Oxy6shXMA==} dependencies: - '@types/node': 20.8.6 + '@types/node': 14.18.42 dev: false /@types/uglify-js@3.17.2: @@ -23286,7 +23225,7 @@ packages: /@types/webpack-sources@3.2.1: resolution: {integrity: sha512-iLC3Fsx62ejm3ST3PQ8vBMC54Rb3EoCprZjeJGI5q+9QjfDLGt9jeg/k245qz1G9AQnORGk0vqPicJFPT1QODQ==} dependencies: - '@types/node': 12.20.55 + '@types/node': 14.18.42 '@types/source-list-map': 0.1.3 source-map: 0.7.4 dev: false @@ -23294,7 +23233,7 @@ packages: /@types/webpack@4.41.34: resolution: {integrity: sha512-CN2aOGrR3zbMc2v+cKqzaClYP1ldkpPOgtdNvgX+RmlWCSWxHxpzz6WSCVQZRkF8D60ROlkRzAoEpgjWQ+bd2g==} dependencies: - '@types/node': 12.20.55 + '@types/node': 14.18.42 '@types/tapable': 1.0.9 '@types/uglify-js': 3.17.2 '@types/webpack-sources': 3.2.1 @@ -23342,7 +23281,7 @@ packages: resolution: {integrity: sha512-CHzgNU3qYBnp/O4S3yv2tXPlvMTq0YWSTVg2/JYLqWZGHwwgJGAwd00poay/11asPq8wLFwHzubyInqHIFmmiw==} requiresBuild: true dependencies: - '@types/node': 12.20.55 + '@types/node': 14.18.42 optional: true /@types/zen-observable@0.8.3: @@ -23883,39 +23822,24 @@ packages: '@webassemblyjs/helper-numbers': 1.11.5 '@webassemblyjs/helper-wasm-bytecode': 1.11.5 - /@webassemblyjs/ast@1.11.6: - resolution: {integrity: sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==} - dependencies: - '@webassemblyjs/helper-numbers': 1.11.6 - '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - /@webassemblyjs/floating-point-hex-parser@1.11.1: resolution: {integrity: sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==} /@webassemblyjs/floating-point-hex-parser@1.11.5: resolution: {integrity: sha512-1j1zTIC5EZOtCplMBG/IEwLtUojtwFVwdyVMbL/hwWqbzlQoJsWCOavrdnLkemwNoC/EOwtUFch3fuo+cbcXYQ==} - /@webassemblyjs/floating-point-hex-parser@1.11.6: - resolution: {integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==} - /@webassemblyjs/helper-api-error@1.11.1: resolution: {integrity: sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==} /@webassemblyjs/helper-api-error@1.11.5: resolution: {integrity: sha512-L65bDPmfpY0+yFrsgz8b6LhXmbbs38OnwDCf6NpnMUYqa+ENfE5Dq9E42ny0qz/PdR0LJyq/T5YijPnU8AXEpA==} - /@webassemblyjs/helper-api-error@1.11.6: - resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==} - /@webassemblyjs/helper-buffer@1.11.1: resolution: {integrity: sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==} /@webassemblyjs/helper-buffer@1.11.5: resolution: {integrity: sha512-fDKo1gstwFFSfacIeH5KfwzjykIE6ldh1iH9Y/8YkAZrhmu4TctqYjSh7t0K2VyDSXOZJ1MLhht/k9IvYGcIxg==} - /@webassemblyjs/helper-buffer@1.11.6: - resolution: {integrity: sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==} - /@webassemblyjs/helper-numbers@1.11.1: resolution: {integrity: sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==} dependencies: @@ -23930,22 +23854,12 @@ packages: '@webassemblyjs/helper-api-error': 1.11.5 '@xtuc/long': 4.2.2 - /@webassemblyjs/helper-numbers@1.11.6: - resolution: {integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==} - dependencies: - '@webassemblyjs/floating-point-hex-parser': 1.11.6 - '@webassemblyjs/helper-api-error': 1.11.6 - '@xtuc/long': 4.2.2 - /@webassemblyjs/helper-wasm-bytecode@1.11.1: resolution: {integrity: sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==} /@webassemblyjs/helper-wasm-bytecode@1.11.5: resolution: {integrity: sha512-oC4Qa0bNcqnjAowFn7MPCETQgDYytpsfvz4ujZz63Zu/a/v71HeCAAmZsgZ3YVKec3zSPYytG3/PrRCqbtcAvA==} - /@webassemblyjs/helper-wasm-bytecode@1.11.6: - resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==} - /@webassemblyjs/helper-wasm-section@1.11.1: resolution: {integrity: sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==} dependencies: @@ -23962,14 +23876,6 @@ packages: '@webassemblyjs/helper-wasm-bytecode': 1.11.5 '@webassemblyjs/wasm-gen': 1.11.5 - /@webassemblyjs/helper-wasm-section@1.11.6: - resolution: {integrity: sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==} - dependencies: - '@webassemblyjs/ast': 1.11.6 - '@webassemblyjs/helper-buffer': 1.11.6 - '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - '@webassemblyjs/wasm-gen': 1.11.6 - /@webassemblyjs/ieee754@1.11.1: resolution: {integrity: sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==} dependencies: @@ -23980,11 +23886,6 @@ packages: dependencies: '@xtuc/ieee754': 1.2.0 - /@webassemblyjs/ieee754@1.11.6: - resolution: {integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==} - dependencies: - '@xtuc/ieee754': 1.2.0 - /@webassemblyjs/leb128@1.11.1: resolution: {integrity: sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==} dependencies: @@ -23995,20 +23896,12 @@ packages: dependencies: '@xtuc/long': 4.2.2 - /@webassemblyjs/leb128@1.11.6: - resolution: {integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==} - dependencies: - '@xtuc/long': 4.2.2 - /@webassemblyjs/utf8@1.11.1: resolution: {integrity: sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==} /@webassemblyjs/utf8@1.11.5: resolution: {integrity: sha512-WiOhulHKTZU5UPlRl53gHR8OxdGsSOxqfpqWeA2FmcwBMaoEdz6b2x2si3IwC9/fSPLfe8pBMRTHVMk5nlwnFQ==} - /@webassemblyjs/utf8@1.11.6: - resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==} - /@webassemblyjs/wasm-edit@1.11.1: resolution: {integrity: sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==} dependencies: @@ -24033,18 +23926,6 @@ packages: '@webassemblyjs/wasm-parser': 1.11.5 '@webassemblyjs/wast-printer': 1.11.5 - /@webassemblyjs/wasm-edit@1.11.6: - resolution: {integrity: sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==} - dependencies: - '@webassemblyjs/ast': 1.11.6 - '@webassemblyjs/helper-buffer': 1.11.6 - '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - '@webassemblyjs/helper-wasm-section': 1.11.6 - '@webassemblyjs/wasm-gen': 1.11.6 - '@webassemblyjs/wasm-opt': 1.11.6 - '@webassemblyjs/wasm-parser': 1.11.6 - '@webassemblyjs/wast-printer': 1.11.6 - /@webassemblyjs/wasm-gen@1.11.1: resolution: {integrity: sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==} dependencies: @@ -24063,15 +23944,6 @@ packages: '@webassemblyjs/leb128': 1.11.5 '@webassemblyjs/utf8': 1.11.5 - /@webassemblyjs/wasm-gen@1.11.6: - resolution: {integrity: sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==} - dependencies: - '@webassemblyjs/ast': 1.11.6 - '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - '@webassemblyjs/ieee754': 1.11.6 - '@webassemblyjs/leb128': 1.11.6 - '@webassemblyjs/utf8': 1.11.6 - /@webassemblyjs/wasm-opt@1.11.1: resolution: {integrity: sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==} dependencies: @@ -24088,14 +23960,6 @@ packages: '@webassemblyjs/wasm-gen': 1.11.5 '@webassemblyjs/wasm-parser': 1.11.5 - /@webassemblyjs/wasm-opt@1.11.6: - resolution: {integrity: sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==} - dependencies: - '@webassemblyjs/ast': 1.11.6 - '@webassemblyjs/helper-buffer': 1.11.6 - '@webassemblyjs/wasm-gen': 1.11.6 - '@webassemblyjs/wasm-parser': 1.11.6 - /@webassemblyjs/wasm-parser@1.11.1: resolution: {integrity: sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==} dependencies: @@ -24116,16 +23980,6 @@ packages: '@webassemblyjs/leb128': 1.11.5 '@webassemblyjs/utf8': 1.11.5 - /@webassemblyjs/wasm-parser@1.11.6: - resolution: {integrity: sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==} - dependencies: - '@webassemblyjs/ast': 1.11.6 - '@webassemblyjs/helper-api-error': 1.11.6 - '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - '@webassemblyjs/ieee754': 1.11.6 - '@webassemblyjs/leb128': 1.11.6 - '@webassemblyjs/utf8': 1.11.6 - /@webassemblyjs/wast-printer@1.11.1: resolution: {integrity: sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==} dependencies: @@ -24138,12 +23992,6 @@ packages: '@webassemblyjs/ast': 1.11.5 '@xtuc/long': 4.2.2 - /@webassemblyjs/wast-printer@1.11.6: - resolution: {integrity: sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==} - dependencies: - '@webassemblyjs/ast': 1.11.6 - '@xtuc/long': 4.2.2 - /@webpack-cli/configtest@2.1.1(webpack-cli@5.1.4)(webpack@5.82.1): resolution: {integrity: sha512-wy0mglZpDSiSS0XHrVR+BAdId2+yxPSoJW8fsna3ZpYSlufjvxnP4YbKTCBZnNIcGN4r6ZPXV55X4mYExOfLmw==} engines: {node: '>=14.15.0'} @@ -24231,7 +24079,7 @@ packages: engines: {node: '>=14.15.0'} dependencies: js-yaml: 3.14.1 - tslib: 2.5.0 + tslib: 2.6.2 /@zkochan/js-yaml@0.0.6: resolution: {integrity: sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==} @@ -24304,6 +24152,7 @@ packages: acorn: ^8 dependencies: acorn: 8.10.0 + dev: true /acorn-import-assertions@1.9.0(acorn@8.8.2): resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==} @@ -25145,14 +24994,14 @@ packages: resolution: {integrity: sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==} engines: {node: '>=4'} dependencies: - tslib: 2.5.0 + tslib: 2.6.2 dev: true /ast-types@0.16.1: resolution: {integrity: sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==} engines: {node: '>=4'} dependencies: - tslib: 2.5.0 + tslib: 2.6.2 /astral-regex@2.0.0: resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} @@ -25457,7 +25306,7 @@ packages: loader-utils: 2.0.4 make-dir: 3.1.0 schema-utils: 2.7.1 - webpack: 5.78.0(@swc/core@1.3.49) + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) /babel-loader@8.3.0(@babel/core@7.23.2)(webpack@5.82.1): resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==} @@ -26203,16 +26052,6 @@ packages: node-releases: 2.0.13 update-browserslist-db: 1.0.11(browserslist@4.21.5) - /browserslist@4.22.1: - resolution: {integrity: sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} - hasBin: true - dependencies: - caniuse-lite: 1.0.30001549 - electron-to-chromium: 1.4.554 - node-releases: 2.0.13 - update-browserslist-db: 1.0.13(browserslist@4.22.1) - /bs-logger@0.2.6: resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==} engines: {node: '>= 6'} @@ -26571,9 +26410,6 @@ packages: /caniuse-lite@1.0.30001525: resolution: {integrity: sha512-/3z+wB4icFt3r0USMwxujAqRvaD/B7rvGTsKhbhSQErVrJvkZCLhgNLJxU8MevahQVH6hCU9FsHdNUFbiwmE7Q==} - /caniuse-lite@1.0.30001549: - resolution: {integrity: sha512-qRp48dPYSCYaP+KurZLhDYdVE+yEyht/3NlmcJgVQ2VMGt6JL36ndQ/7rgspdZsJuxDPFIo/OzBT2+GmIJ53BA==} - /cardinal@2.1.1: resolution: {integrity: sha512-JSr5eOgoEymtYHBjNWyjrMqet9Am2miJhlfKNdqLp6zoeAh0KN5dRAcxlecj5mAJrmQomgiOBj35xHLrFjqBpw==} hasBin: true @@ -28184,7 +28020,7 @@ packages: postcss-modules-scope: 3.0.0(postcss@8.4.29) postcss-modules-values: 4.0.0(postcss@8.4.29) postcss-value-parser: 4.2.0 - semver: 7.3.8 + semver: 7.5.4 webpack: 5.76.1(@swc/core@1.3.49)(esbuild@0.17.8) dev: true @@ -28202,7 +28038,7 @@ packages: postcss-modules-values: 4.0.0(postcss@8.4.29) postcss-value-parser: 4.2.0 semver: 7.5.4 - webpack: 5.78.0(@swc/core@1.3.49) + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) /css-minimizer-webpack-plugin@3.4.1(esbuild@0.18.20)(webpack@5.78.0): resolution: {integrity: sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==} @@ -28258,6 +28094,7 @@ packages: serialize-javascript: 6.0.1 source-map: 0.6.1 webpack: 5.78.0(@swc/core@1.3.49) + dev: false /css-prefers-color-scheme@6.0.3(postcss@8.4.21): resolution: {integrity: sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==} @@ -28710,6 +28547,7 @@ packages: dependencies: ms: 2.1.3 supports-color: 5.5.0 + dev: true /debug@3.2.7(supports-color@8.1.1): resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} @@ -29338,9 +29176,6 @@ packages: /electron-to-chromium@1.4.508: resolution: {integrity: sha512-FFa8QKjQK/A5QuFr2167myhMesGrhlOBD+3cYNxO9/S4XzHEXesyTD/1/xF644gC8buFPz3ca6G1LOQD0tZrrg==} - /electron-to-chromium@1.4.554: - resolution: {integrity: sha512-Q0umzPJjfBrrj8unkONTgbKQXzXRrH7sVV7D9ea2yBV3Oaogz991yhbpfvo2LMNkJItmruXTEzVpP9cp7vaIiQ==} - /elegant-spinner@1.0.1: resolution: {integrity: sha512-B+ZM+RXvRqQaAmkMlO/oSe5nMUOaUnyfGYCEHoR8wrXsZR2mA0XVibsxV1bvTwxdRWah1PkQqso2EzhILGHtEQ==} engines: {node: '>=0.10.0'} @@ -29445,7 +29280,7 @@ packages: dependencies: '@types/cookie': 0.4.1 '@types/cors': 2.8.13 - '@types/node': 20.8.6 + '@types/node': 14.18.42 accepts: 1.3.8 base64id: 2.0.0 cookie: 0.4.2 @@ -29628,9 +29463,6 @@ packages: /es-module-lexer@1.2.1: resolution: {integrity: sha512-9978wrXM50Y4rTMmW5kXIC09ZdXQZqkE4mxhwkd8VbzsGkXGPgV4zWuqQJgCEzYngdo2dYDa0l8xhX4fkSwJSg==} - /es-module-lexer@1.3.1: - resolution: {integrity: sha512-JUFAyicQV9mXc3YRxPnDlrfBKpqt6hUYzz9/boprUJHs4e4KVr3XwOF70doO6gwXUor6EWZJAyWAfKki84t20Q==} - /es-set-tostringtag@2.0.1: resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==} engines: {node: '>= 0.4'} @@ -29642,7 +29474,7 @@ packages: /es-shim-unscopables@1.0.0: resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==} dependencies: - has: 1.0.3 + has: 1.0.4 /es-to-primitive@1.2.1: resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} @@ -29898,13 +29730,13 @@ packages: /eslint-import-resolver-node@0.3.7: resolution: {integrity: sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==} dependencies: - debug: 3.2.7(supports-color@5.5.0) + debug: 3.2.7(supports-color@8.1.1) is-core-module: 2.13.0 resolve: 1.22.2 transitivePeerDependencies: - supports-color - /eslint-import-resolver-webpack@0.13.7(eslint-plugin-import@2.28.1)(webpack@5.89.0): + /eslint-import-resolver-webpack@0.13.7(eslint-plugin-import@2.28.1)(webpack@5.78.0): resolution: {integrity: sha512-2a+meyMeABBRO4K53Oj1ygkmt5lhQS79Lmx2f684Qnv6gjvD4RLOM5jfPGTXwQ0A2K03WSoKt3HRQu/uBgxF7w==} engines: {node: '>= 6'} peerDependencies: @@ -29912,7 +29744,7 @@ packages: webpack: '>=1.11.0' dependencies: array.prototype.find: 2.2.2 - debug: 3.2.7(supports-color@5.5.0) + debug: 3.2.7(supports-color@8.1.1) enhanced-resolve: 0.9.1 eslint-plugin-import: 2.28.1(@typescript-eslint/parser@5.58.0)(eslint-import-resolver-webpack@0.13.7)(eslint@8.38.0) find-root: 1.1.0 @@ -29923,7 +29755,7 @@ packages: lodash: 4.17.21 resolve: 2.0.0-next.4 semver: 5.7.2 - webpack: 5.89.0(@swc/core@1.3.49) + webpack: 5.78.0(@swc/core@1.3.49) transitivePeerDependencies: - supports-color @@ -29949,10 +29781,10 @@ packages: optional: true dependencies: '@typescript-eslint/parser': 5.58.0(eslint@8.38.0)(typescript@4.9.5) - debug: 3.2.7(supports-color@5.5.0) + debug: 3.2.7(supports-color@8.1.1) eslint: 8.38.0 eslint-import-resolver-node: 0.3.7 - eslint-import-resolver-webpack: 0.13.7(eslint-plugin-import@2.28.1)(webpack@5.89.0) + eslint-import-resolver-webpack: 0.13.7(eslint-plugin-import@2.28.1)(webpack@5.78.0) transitivePeerDependencies: - supports-color @@ -29978,10 +29810,10 @@ packages: optional: true dependencies: '@typescript-eslint/parser': 5.58.0(eslint@8.51.0)(typescript@4.9.5) - debug: 3.2.7(supports-color@5.5.0) + debug: 3.2.7(supports-color@8.1.1) eslint: 8.51.0 eslint-import-resolver-node: 0.3.7 - eslint-import-resolver-webpack: 0.13.7(eslint-plugin-import@2.28.1)(webpack@5.89.0) + eslint-import-resolver-webpack: 0.13.7(eslint-plugin-import@2.28.1)(webpack@5.78.0) transitivePeerDependencies: - supports-color @@ -30057,7 +29889,7 @@ packages: array.prototype.findlastindex: 1.2.3 array.prototype.flat: 1.3.1 array.prototype.flatmap: 1.3.1 - debug: 3.2.7(supports-color@5.5.0) + debug: 3.2.7(supports-color@8.1.1) doctrine: 2.1.0 eslint: 8.38.0 eslint-import-resolver-node: 0.3.7 @@ -30091,7 +29923,7 @@ packages: array.prototype.findlastindex: 1.2.3 array.prototype.flat: 1.3.1 array.prototype.flatmap: 1.3.1 - debug: 3.2.7(supports-color@5.5.0) + debug: 3.2.7(supports-color@8.1.1) doctrine: 2.1.0 eslint: 8.51.0 eslint-import-resolver-node: 0.3.7 @@ -30180,7 +30012,7 @@ packages: object.fromentries: 2.0.6 semver: 6.3.1 - /eslint-plugin-prettier@4.2.1(eslint-config-prettier@8.8.0)(eslint@7.32.0)(prettier@3.0.3): + /eslint-plugin-prettier@4.2.1(eslint-config-prettier@8.8.0)(eslint@7.32.0)(prettier@2.8.7): resolution: {integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==} engines: {node: '>=12.0.0'} peerDependencies: @@ -30193,7 +30025,7 @@ packages: dependencies: eslint: 7.32.0 eslint-config-prettier: 8.8.0(eslint@8.38.0) - prettier: 3.0.3 + prettier: 2.8.7 prettier-linter-helpers: 1.0.0 dev: true @@ -30408,7 +30240,7 @@ packages: micromatch: 4.0.5 normalize-path: 3.0.0 schema-utils: 4.0.0 - webpack: 5.78.0(@swc/core@1.3.49) + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) /eslint@7.32.0: resolution: {integrity: sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==} @@ -31175,7 +31007,7 @@ packages: dependencies: loader-utils: 2.0.4 schema-utils: 3.3.0 - webpack: 5.78.0(@swc/core@1.3.49) + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) /file-selector@0.6.0: resolution: {integrity: sha512-QlZ5yJC0VxHxQQsQhXvBaC7VRJ2uaxTf+Tfpu4Z/OcVQJVpZO+DGU0rkoVW5ce2SccxugvpBJoMvUs59iILYdw==} @@ -31513,7 +31345,7 @@ packages: semver: 7.5.4 tapable: 1.1.3 typescript: 4.9.5 - webpack: 5.78.0(@swc/core@1.3.49) + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) /fork-ts-checker-webpack-plugin@8.0.0(typescript@4.9.5)(webpack@5.78.0): resolution: {integrity: sha512-mX3qW3idpueT2klaQXBzrIM/pHw+T0B/V9KHEvNrqijTq9NFnMZU6oreVxDYcf33P8a5cW+67PjodNHthGnNVg==} @@ -32174,7 +32006,7 @@ packages: fs.realpath: 1.0.0 inflight: 1.0.6 inherits: 2.0.4 - minimatch: 3.0.4 + minimatch: 3.1.2 once: 1.4.0 path-is-absolute: 1.0.1 @@ -33000,7 +32832,7 @@ packages: lodash: 4.17.21 pretty-error: 4.0.0 tapable: 2.2.1 - webpack: 5.78.0(@swc/core@1.3.49) + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) /htmlencode@0.0.4: resolution: {integrity: sha512-0uDvNVpzj/E2TfvLLyyXhKBRvF1y84aZsyRxRXFsQobnHaL4pcaXk+Y9cnFlvnxrBLeXDNq/VJBD+ngdBgQG1w==} @@ -33476,7 +33308,7 @@ packages: /injection-js@2.4.0: resolution: {integrity: sha512-6jiJt0tCAo9zjHbcwLiPL+IuNe9SQ6a9g0PEzafThW3fOQi0mrmiJGBJvDD6tmhPh8cQHIQtCOrJuBfQME4kPA==} dependencies: - tslib: 2.5.0 + tslib: 2.6.2 dev: true /inline-css@4.0.2: @@ -33770,7 +33602,7 @@ packages: /is-core-module@2.13.0: resolution: {integrity: sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==} dependencies: - has: 1.0.3 + has: 1.0.4 /is-data-descriptor@0.1.4: resolution: {integrity: sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==} @@ -34419,7 +34251,7 @@ packages: '@jest/expect': 29.5.0 '@jest/test-result': 29.5.0 '@jest/types': 29.5.0 - '@types/node': 16.11.7 + '@types/node': 14.18.42 chalk: 4.1.2 co: 4.6.0 dedent: 0.7.0 @@ -34539,7 +34371,7 @@ packages: babel-jest: 27.5.1(@babel/core@7.22.11) chalk: 4.1.2 deepmerge: 4.3.1 - glob: 7.1.4 + glob: 7.2.3 graceful-fs: 4.2.11 is-ci: 3.0.1 jest-circus: 27.5.1 @@ -34595,7 +34427,7 @@ packages: pretty-format: 27.5.1 slash: 3.0.0 strip-json-comments: 3.1.1 - ts-node: 10.9.1(@swc/core@1.3.49)(@types/node@16.11.7)(typescript@4.9.5) + ts-node: 10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5) transitivePeerDependencies: - bufferutil - canvas @@ -34791,7 +34623,7 @@ packages: '@jest/environment': 27.5.1 '@jest/fake-timers': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 12.20.55 + '@types/node': 14.18.42 jest-mock: 27.5.1 jest-util: 27.5.1 jsdom: 16.7.0 @@ -34831,7 +34663,7 @@ packages: '@jest/environment': 27.5.1 '@jest/fake-timers': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 12.20.55 + '@types/node': 14.18.42 jest-mock: 27.5.1 jest-util: 27.5.1 @@ -34842,7 +34674,7 @@ packages: '@jest/environment': 29.5.0 '@jest/fake-timers': 29.5.0 '@jest/types': 29.5.0 - '@types/node': 16.11.7 + '@types/node': 14.18.42 jest-mock: 29.5.0 jest-util: 29.5.0 dev: true @@ -34866,7 +34698,7 @@ packages: dependencies: '@jest/types': 27.5.1 '@types/graceful-fs': 4.1.6 - '@types/node': 12.20.55 + '@types/node': 14.18.42 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -34885,7 +34717,7 @@ packages: dependencies: '@jest/types': 29.5.0 '@types/graceful-fs': 4.1.6 - '@types/node': 16.11.7 + '@types/node': 14.18.42 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -35148,7 +34980,7 @@ packages: '@jest/test-result': 27.5.1 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 12.20.55 + '@types/node': 14.18.42 chalk: 4.1.2 emittery: 0.8.1 graceful-fs: 4.2.11 @@ -35179,7 +35011,7 @@ packages: '@jest/test-result': 29.5.0 '@jest/transform': 29.5.0 '@jest/types': 29.5.0 - '@types/node': 16.11.7 + '@types/node': 14.18.42 chalk: 4.1.2 emittery: 0.13.1 graceful-fs: 4.2.11 @@ -35239,7 +35071,7 @@ packages: '@jest/test-result': 29.5.0 '@jest/transform': 29.5.0 '@jest/types': 29.5.0 - '@types/node': 18.15.11 + '@types/node': 14.18.42 chalk: 4.1.2 cjs-module-lexer: 1.2.2 collect-v8-coverage: 1.0.1 @@ -35262,7 +35094,7 @@ packages: resolution: {integrity: sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - '@types/node': 12.20.55 + '@types/node': 14.18.42 graceful-fs: 4.2.11 /jest-snapshot@27.5.1: @@ -35334,7 +35166,7 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@jest/types': 27.5.1 - '@types/node': 16.11.7 + '@types/node': 14.18.42 chalk: 4.1.2 graceful-fs: 4.2.11 is-ci: 3.0.1 @@ -35357,7 +35189,7 @@ packages: engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: '@jest/types': 28.1.3 - '@types/node': 12.20.55 + '@types/node': 14.18.42 chalk: 4.1.2 ci-info: 3.8.0 graceful-fs: 4.2.11 @@ -35418,7 +35250,7 @@ packages: dependencies: '@jest/test-result': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 12.20.55 + '@types/node': 14.18.42 ansi-escapes: 4.3.2 chalk: 4.1.2 jest-util: 27.5.1 @@ -35430,7 +35262,7 @@ packages: dependencies: '@jest/test-result': 28.1.3 '@jest/types': 28.1.3 - '@types/node': 12.20.55 + '@types/node': 14.18.42 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.10.2 @@ -35471,7 +35303,7 @@ packages: resolution: {integrity: sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - '@types/node': 12.20.55 + '@types/node': 14.18.42 merge-stream: 2.0.0 supports-color: 8.1.1 @@ -35479,7 +35311,7 @@ packages: resolution: {integrity: sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@types/node': 16.11.7 + '@types/node': 14.18.42 jest-util: 29.5.0 merge-stream: 2.0.0 supports-color: 8.1.1 @@ -36238,7 +36070,7 @@ packages: less: 4.1.3 loader-utils: 1.4.2 pify: 3.0.0 - webpack: 5.78.0(@swc/core@1.3.49) + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) dev: true /less@4.1.3: @@ -37814,7 +37646,7 @@ packages: webpack: ^5.0.0 dependencies: schema-utils: 4.0.0 - webpack: 5.78.0(@swc/core@1.3.49) + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) /minimalistic-assert@1.0.1: resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==} @@ -38366,7 +38198,7 @@ packages: hasBin: true requiresBuild: true dependencies: - debug: 3.2.7(supports-color@5.5.0) + debug: 3.2.7(supports-color@8.1.1) iconv-lite: 0.6.3 sax: 1.2.4 transitivePeerDependencies: @@ -39174,9 +39006,9 @@ packages: tar-stream: 2.2.0 tmp: 0.2.1 tsconfig-paths: 3.14.2 - tslib: 2.5.0 + tslib: 2.6.2 v8-compile-cache: 2.3.0 - yargs: 17.7.1 + yargs: 17.7.2 yargs-parser: 21.0.1 transitivePeerDependencies: - '@swc/helpers' @@ -39291,7 +39123,7 @@ packages: tar-stream: 2.2.0 tmp: 0.2.1 tsconfig-paths: 4.1.2 - tslib: 2.5.0 + tslib: 2.6.2 v8-compile-cache: 2.3.0 yargs: 17.7.2 yargs-parser: 21.1.1 @@ -39354,7 +39186,7 @@ packages: tar-stream: 2.2.0 tmp: 0.2.1 tsconfig-paths: 4.1.2 - tslib: 2.5.0 + tslib: 2.6.2 v8-compile-cache: 2.3.0 yargs: 17.7.2 yargs-parser: 21.1.1 @@ -40581,7 +40413,7 @@ packages: engines: {node: '>= 0.12.0'} dependencies: async: 2.6.4 - debug: 3.2.7(supports-color@5.5.0) + debug: 3.2.7(supports-color@8.1.1) mkdirp: 0.5.6 transitivePeerDependencies: - supports-color @@ -40879,7 +40711,7 @@ packages: klona: 2.0.6 postcss: 8.4.21 semver: 7.5.4 - webpack: 5.78.0(@swc/core@1.3.49) + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) /postcss-loader@7.0.2(postcss@8.4.21)(webpack@5.76.1): resolution: {integrity: sha512-fUJzV/QH7NXUAqV8dWJ9Lg4aTkDCezpTS5HgJ2DvqznexTbSTxgi/dTECvTZ15BwKTtk8G/bqI/QTu2HPd3ZCg==} @@ -41382,12 +41214,6 @@ packages: hasBin: true dev: true - /prettier@3.0.3: - resolution: {integrity: sha512-L/4pUDMxcNa8R/EthV08Zt42WBO4h1rarVtK0K+QJG0X187OLo7l699jWw0GKuwzkPQ//jMFA/8Xm6Fh3J/DAg==} - engines: {node: '>=14'} - hasBin: true - dev: true - /pretty-bytes@5.6.0: resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==} engines: {node: '>=6'} @@ -42471,7 +42297,7 @@ packages: peerDependencies: react-scripts: '>=2.1.3' dependencies: - react-scripts: 5.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(@swc/core@1.3.49)(eslint-import-resolver-webpack@0.13.7)(eslint@8.51.0)(react@17.0.2)(ts-node@10.9.1)(typescript@4.9.5) + react-scripts: 5.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(@swc/core@1.3.49)(esbuild@0.18.20)(eslint-import-resolver-webpack@0.13.7)(eslint@8.51.0)(react@17.0.2)(ts-node@10.9.1)(typescript@4.9.5) semver: 5.7.2 dev: true @@ -42566,7 +42392,7 @@ packages: strip-ansi: 6.0.1 text-table: 0.2.0 typescript: 4.9.5 - webpack: 5.78.0(@swc/core@1.3.49) + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) transitivePeerDependencies: - eslint - supports-color @@ -43106,6 +42932,7 @@ packages: - webpack-cli - webpack-hot-middleware - webpack-plugin-serve + dev: false /react-simple-animate@3.5.2(react-dom@17.0.2): resolution: {integrity: sha512-xLE65euP920QMTOmv5haPlml+hmOPDkbIr5WeF7ADIXWBYt5kW/vwpNfWg8EKMab8aeDxIZ6QjffVh8v2dUyhg==} @@ -43129,7 +42956,7 @@ packages: get-nonce: 1.0.1 invariant: 2.2.4 react: 17.0.2 - tslib: 2.5.0 + tslib: 2.6.2 /react-syntax-highlighter@15.5.0(react@17.0.2): resolution: {integrity: sha512-+zq2myprEnQmH5yw6Gqc8lD55QHnpKaU8TOcFeC/Lg/MQSs8UknEA0JC4nTZGFAXC2J2Hyj/ijJ7NlabyPi2gg==} @@ -43451,7 +43278,7 @@ packages: ast-types: 0.15.2 esprima: 4.0.1 source-map: 0.6.1 - tslib: 2.5.0 + tslib: 2.6.2 dev: true /recast@0.23.4: @@ -43462,7 +43289,7 @@ packages: ast-types: 0.16.1 esprima: 4.0.1 source-map: 0.6.1 - tslib: 2.5.0 + tslib: 2.6.2 /rechoir@0.6.2: resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==} @@ -44296,7 +44123,7 @@ packages: dependencies: klona: 2.0.6 neo-async: 2.6.2 - webpack: 5.78.0(@swc/core@1.3.49) + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) /sass-loader@13.2.0(sass@1.58.1)(webpack@5.76.1): resolution: {integrity: sha512-JWEp48djQA4nbZxmgC02/Wh0eroSUutulROUusYJO9P9zltRbNN80JCBHqRGzjd4cmZCa/r88xgfkjGD0TXsHg==} @@ -45051,7 +44878,7 @@ packages: abab: 2.0.6 iconv-lite: 0.6.3 source-map-js: 1.0.2 - webpack: 5.78.0(@swc/core@1.3.49) + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) /source-map-loader@4.0.1(webpack@5.76.1): resolution: {integrity: sha512-oqXpzDIByKONVY8g1NUPOTQhe0UTU5bWUl32GSkqK2LjJj0HmwTMVKxcUip0RgAYhY1mqgOxjbQM48a0mmeNfA==} @@ -45486,7 +45313,7 @@ packages: engines: {node: '>=12.20'} dependencies: char-regex: 2.0.1 - strip-ansi: 7.0.1 + strip-ansi: 7.1.0 /string-natural-compare@3.0.1: resolution: {integrity: sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==} @@ -45735,7 +45562,7 @@ packages: peerDependencies: webpack: ^5.0.0 dependencies: - webpack: 5.78.0(@swc/core@1.3.49) + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) /stylehacks@5.1.1(postcss@8.4.29): resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==} @@ -46028,7 +45855,7 @@ packages: engines: {node: ^14.18.0 || >=16.0.0} dependencies: '@pkgr/utils': 2.3.1 - tslib: 2.5.0 + tslib: 2.6.2 dev: true /tabbable@6.1.1: @@ -46290,6 +46117,7 @@ packages: serialize-javascript: 6.0.1 terser: 5.19.3 webpack: 5.78.0(@swc/core@1.3.49) + dev: false /terser-webpack-plugin@5.3.9(@swc/core@1.3.49)(esbuild@0.17.8)(webpack@5.76.1): resolution: {integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==} @@ -46416,30 +46244,6 @@ packages: webpack: 5.88.2(@swc/core@1.3.49) dev: true - /terser-webpack-plugin@5.3.9(@swc/core@1.3.49)(webpack@5.89.0): - resolution: {integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==} - engines: {node: '>= 10.13.0'} - peerDependencies: - '@swc/core': '*' - esbuild: '*' - uglify-js: '*' - webpack: ^5.1.0 - peerDependenciesMeta: - '@swc/core': - optional: true - esbuild: - optional: true - uglify-js: - optional: true - dependencies: - '@jridgewell/trace-mapping': 0.3.18 - '@swc/core': 1.3.49 - jest-worker: 27.5.1 - schema-utils: 3.3.0 - serialize-javascript: 6.0.1 - terser: 5.21.0 - webpack: 5.89.0(@swc/core@1.3.49) - /terser@4.8.1: resolution: {integrity: sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==} engines: {node: '>=6.0.0'} @@ -46989,7 +46793,7 @@ packages: yargs-parser: 21.1.1 dev: true - /ts-loader@9.4.2(typescript@4.9.5)(webpack@5.82.1): + /ts-loader@9.4.2(typescript@4.9.5)(webpack@5.78.0): resolution: {integrity: sha512-OmlC4WVmFv5I0PpaxYb+qGeGOdm5giHU7HwDDUjw59emP2UYMHy9fFSDcYgSNoH8sXcj4hGCSEhlDZ9ULeDraA==} engines: {node: '>=12.0.0'} peerDependencies: @@ -47001,10 +46805,10 @@ packages: micromatch: 4.0.5 semver: 7.5.2 typescript: 4.9.5 - webpack: 5.82.1(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) + webpack: 5.78.0(@swc/core@1.3.49) dev: true - /ts-loader@9.4.2(typescript@4.9.5)(webpack@5.89.0): + /ts-loader@9.4.2(typescript@4.9.5)(webpack@5.82.1): resolution: {integrity: sha512-OmlC4WVmFv5I0PpaxYb+qGeGOdm5giHU7HwDDUjw59emP2UYMHy9fFSDcYgSNoH8sXcj4hGCSEhlDZ9ULeDraA==} engines: {node: '>=12.0.0'} peerDependencies: @@ -47016,7 +46820,7 @@ packages: micromatch: 4.0.5 semver: 7.5.2 typescript: 4.9.5 - webpack: 5.89.0(@swc/core@1.3.49) + webpack: 5.82.1(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) dev: true /ts-node@10.9.1(@swc/core@1.3.49)(@types/node@14.18.42)(typescript@4.9.5): @@ -47049,7 +46853,6 @@ packages: typescript: 4.9.5 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 - dev: true /ts-node@10.9.1(@swc/core@1.3.49)(@types/node@16.11.7)(typescript@4.9.5): resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} @@ -47115,37 +46918,6 @@ packages: dev: true optional: true - /ts-node@10.9.1(@swc/core@1.3.49)(@types/node@20.8.6)(typescript@4.9.5): - 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 - '@swc/core': 1.3.49 - '@tsconfig/node10': 1.0.9 - '@tsconfig/node12': 1.0.11 - '@tsconfig/node14': 1.0.3 - '@tsconfig/node16': 1.0.3 - '@types/node': 20.8.6 - acorn: 8.10.0 - 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.5 - v8-compile-cache-lib: 3.0.1 - yn: 3.1.1 - /ts-node@9.1.1(typescript@4.9.5): resolution: {integrity: sha512-hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg==} engines: {node: '>=10.0.0'} @@ -47709,16 +47481,6 @@ packages: escalade: 3.1.1 picocolors: 1.0.0 - /update-browserslist-db@1.0.13(browserslist@4.22.1): - resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==} - hasBin: true - peerDependencies: - browserslist: '>= 4.21.0' - dependencies: - browserslist: 4.22.1 - escalade: 3.1.1 - picocolors: 1.0.0 - /upper-case-first@1.1.2: resolution: {integrity: sha512-wINKYvI3Db8dtjikdAqoBbZoP6Q+PZUyfMR7pmwHzjC2quzSkUq5DmPrTtPEqHaz8AGtmsB4TqwapMTM1QAQOQ==} dependencies: @@ -48388,7 +48150,7 @@ packages: mime-types: 2.1.35 range-parser: 1.2.1 schema-utils: 4.0.0 - webpack: 5.78.0(@swc/core@1.3.49) + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) /webpack-dev-middleware@6.0.1(webpack@5.76.1): resolution: {integrity: sha512-PZPZ6jFinmqVPJZbisfggDiC+2EeGZ1ZByyMP5sOFJcPPWSexalISz+cvm+j+oYPT7FIJyxT76esjnw9DhE5sw==} @@ -48507,7 +48269,7 @@ packages: serve-index: 1.9.1 sockjs: 0.3.24 spdy: 4.0.2 - webpack: 5.78.0(@swc/core@1.3.49) + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) webpack-dev-middleware: 5.3.3(webpack@5.78.0) ws: 8.13.0 transitivePeerDependencies: @@ -48531,7 +48293,7 @@ packages: webpack: ^4.44.2 || ^5.47.0 dependencies: tapable: 2.2.1 - webpack: 5.78.0(@swc/core@1.3.49) + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) webpack-sources: 2.3.1 /webpack-merge@5.8.0: @@ -48779,45 +48541,6 @@ packages: - uglify-js dev: true - /webpack@5.89.0(@swc/core@1.3.49): - resolution: {integrity: sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==} - engines: {node: '>=10.13.0'} - hasBin: true - peerDependencies: - webpack-cli: '*' - peerDependenciesMeta: - webpack-cli: - optional: true - dependencies: - '@types/eslint-scope': 3.7.5 - '@types/estree': 1.0.2 - '@webassemblyjs/ast': 1.11.6 - '@webassemblyjs/wasm-edit': 1.11.6 - '@webassemblyjs/wasm-parser': 1.11.6 - acorn: 8.10.0 - acorn-import-assertions: 1.9.0(acorn@8.10.0) - browserslist: 4.22.1 - chrome-trace-event: 1.0.3 - enhanced-resolve: 5.15.0 - es-module-lexer: 1.3.1 - eslint-scope: 5.1.1 - events: 3.3.0 - glob-to-regexp: 0.4.1 - graceful-fs: 4.2.11 - json-parse-even-better-errors: 2.3.1 - loader-runner: 4.3.0 - mime-types: 2.1.35 - neo-async: 2.6.2 - schema-utils: 3.3.0 - tapable: 2.2.1 - terser-webpack-plugin: 5.3.9(@swc/core@1.3.49)(webpack@5.89.0) - watchpack: 2.4.0 - webpack-sources: 3.2.3 - transitivePeerDependencies: - - '@swc/core' - - esbuild - - uglify-js - /websocket-driver@0.7.4: resolution: {integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==} engines: {node: '>=0.8.0'} @@ -49154,7 +48877,7 @@ packages: fast-json-stable-stringify: 2.1.0 pretty-bytes: 5.6.0 upath: 1.2.0 - webpack: 5.78.0(@swc/core@1.3.49) + webpack: 5.78.0(@swc/core@1.3.49)(esbuild@0.18.20)(webpack-cli@5.1.4) webpack-sources: 1.4.3 workbox-build: 6.5.4 transitivePeerDependencies: From 3c55e0e881ba54435158da574ea33c0a35380ce4 Mon Sep 17 00:00:00 2001 From: Dima Grossman Date: Sun, 15 Oct 2023 16:37:24 +0300 Subject: [PATCH 4/4] fix: pnpm version --- scripts/dev-environment-setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/dev-environment-setup.sh b/scripts/dev-environment-setup.sh index e5bf357159c..bb848bdec22 100755 --- a/scripts/dev-environment-setup.sh +++ b/scripts/dev-environment-setup.sh @@ -318,7 +318,7 @@ install_nvm () { # PNPM is the package manager used in Novu's monorepo install_pnpm () { - PNPM_VERSION="7.28.0" + PNPM_VERSION="8.9.0" TEST_PNPM_CMD=$(execute_command_without_error_print "pnpm --version") if [[ -z "$TEST_PNPM_CMD" ]] || [[ "$TEST_PNPM_CMD" == "zsh: command not found: pnpm" ]]; then installing_dependency "PNPM $PNPM_VERSION"