From eb1195f49584912fedeca602b90c836b99cbe221 Mon Sep 17 00:00:00 2001 From: DavideSegullo Date: Wed, 8 Mar 2023 12:12:23 +0100 Subject: [PATCH 01/46] ci: :construction_worker: add release ci/cd --- .github/.gitkeep | 0 .github/workflows/ci.yml | 138 ++++++++++++++++++++++++++ packages/txs-tracer-core/project.json | 4 +- 3 files changed, 141 insertions(+), 1 deletion(-) create mode 100644 .github/.gitkeep create mode 100644 .github/workflows/ci.yml diff --git a/.github/.gitkeep b/.github/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..3924f03 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,138 @@ +name: 'Build and Deploy' + +permissions: + actions: write + deployments: write + packages: write + pull-requests: write + issues: write + +on: + push: + branches: + - main + - next + +jobs: + release: + runs-on: ubuntu-latest + defaults: + run: + working-directory: ${{ github.workspace }} + strategy: + matrix: + node-version: [16] + npm-version: [8] + yarn-version: ['1.22.x'] + pnpm-version: [7] + steps: + - name: Checkout [Pull Request] + uses: actions/checkout@v2 + if: ${{ github.event_name == 'pull_request' }} + with: + ref: ${{ github.event.pull_request.head.sha }} + token: ${{ secrets.GH_TOKEN }} + fetch-depth: 0 + + - name: Checkout [Default Branch] + uses: actions/checkout@v2 + if: ${{ github.event_name != 'pull_request' }} + with: + token: ${{ secrets.GH_TOKEN }} + fetch-depth: 0 + + - name: Derive appropriate SHAs for base and head for `nx affected` commands + uses: nrwl/nx-set-shas@v2 + with: + main-branch-name: ${{ github.base_ref }} + + - name: Detect package manager + id: package_manager + run: | + echo "::set-output name=name::$([[ -f ./yarn.lock ]] && echo "yarn" || ([[ -f ./pnpm-lock.yaml ]] && echo "pnpm") || echo "npm")" + + - name: Set node/npm/yarn versions using volta + uses: volta-cli/action@v4.0.0 + with: + node-version: '${{ matrix.node-version }}' + npm-version: '${{ matrix.npm-version }}' + yarn-version: '${{ matrix.yarn-version }}' + + - name: Install PNPM + if: steps.package_manager.outputs.name == 'pnpm' + uses: pnpm/action-setup@v2.2.1 + with: + version: '${{ matrix.pnpm-version }}' + + - name: Print node/npm/yarn/pnpm versions + id: versions + run: | + node_ver=$( node --version ) + yarn_ver=$( yarn --version || true ) + pnpm_ver=$( pnpm --version || true ) + echo "Node: ${node_ver:1}" + echo "NPM: $(npm --version )" + if [[ $yarn_ver != '' ]]; then echo "Yarn: $yarn_ver"; fi + if [[ $pnpm_ver != '' ]]; then echo "PNPM: $pnpm_ver"; fi + echo "::set-output name=node_version::${node_ver:1}" + + - name: Use the node_modules cache if available [npm] + if: steps.package_manager.outputs.name == 'npm' + uses: actions/cache@v2 + with: + path: ~/.npm + key: ${{ runner.os }}-node-${{ steps.versions.outputs.node_version }}-${{ hashFiles('**/package-lock.json') }} + restore-keys: | + ${{ runner.os }}-node-${{ steps.versions.outputs.node_version }}- + + - name: Use the node_modules cache if available [pnpm] + if: steps.package_manager.outputs.name == 'pnpm' + uses: actions/cache@v2 + with: + path: ~/.pnpm-store + key: ${{ runner.os }}-node-${{ steps.versions.outputs.node_version }}-${{ hashFiles('**/pnpm-lock.yaml') }} + restore-keys: | + ${{ runner.os }}-node-${{ steps.versions.outputs.node_version }}- + + - name: Get yarn cache directory path + if: steps.package_manager.outputs.name == 'yarn' + id: yarn-cache-dir-path + run: echo "::set-output name=dir::$(yarn cache dir)" + + - name: Use the node_modules cache if available [yarn] + if: steps.package_manager.outputs.name == 'yarn' + uses: actions/cache@v2 + with: + path: ${{ steps.yarn-cache-dir-path.outputs.dir }} + key: ${{ runner.os }}-node-${{ steps.versions.outputs.node_version }}-yarn-${{ hashFiles('**/yarn.lock') }} + restore-keys: | + ${{ runner.os }}-node-${{ steps.versions.outputs.node_version }}- + + - name: Install dependencies + run: | + if [ "${{ steps.package_manager.outputs.name == 'yarn' }}" == "true" ]; then + echo "Running yarn install --frozen-lockfile" + yarn install --frozen-lockfile + elif [ "${{ steps.package_manager.outputs.name == 'pnpm' }}" == "true" ]; then + echo "Running pnpm install --frozen-lockfile" + pnpm install --frozen-lockfile + else + echo "Running npm ci" + npm ci + fi + + - run: | + npx nx workspace-lint + npx nx format:check --libs-and-apps + npx nx affected --target lint --parallel 4 + npx nx affected --target test --parallel 4 --ci --code-coverage + npx nx affected --target build --parallel 4 + + - name: Release + if: ${{ success() && (github.event_name != 'pull_request' || github.event.action == 'closed' && github.event.pull_request.merged == true) }} + env: + GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} + NODE_AUTH_TOKEN: ${{ secrets.GH_TOKEN }} + NPM_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: | + npx nx run my-app:semantic-release diff --git a/packages/txs-tracer-core/project.json b/packages/txs-tracer-core/project.json index cfbcc92..d98d0f6 100644 --- a/packages/txs-tracer-core/project.json +++ b/packages/txs-tracer-core/project.json @@ -54,7 +54,9 @@ "github": true, "changelog": true, "npm": true, - "tagFormat": "txs-tracer-core-v${VERSION}" + "tagFormat": "txs-tracer-core-v${VERSION}", + "outputPath": "dist/packages/txs-tracer-core", + "buildTarget": "${PROJECT_NAME}:build" } } }, From 9062ae76cad7986a7a99480658a910e794bb9220 Mon Sep 17 00:00:00 2001 From: DavideSegullo Date: Wed, 8 Mar 2023 12:30:19 +0100 Subject: [PATCH 02/46] ci: :heavy_plus_sign: add deps to lock file --- .github/workflows/ci.yml | 2 +- pnpm-lock.yaml | 264 ++++++++++++++++++++++++++++++++++++++- 2 files changed, 260 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3924f03..b17f619 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: node-version: [16] npm-version: [8] yarn-version: ['1.22.x'] - pnpm-version: [7] + pnpm-version: [7.27.0] steps: - name: Checkout [Pull Request] uses: actions/checkout@v2 diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 6f5060a..ef598b2 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -12,6 +12,8 @@ specifiers: '@chakra-ui/react': ^2.5.1 '@chakra-ui/spinner': ^2.0.12 '@chakra-ui/system': ^2.5.1 + '@commitlint/cli': ^17.0.0 + '@commitlint/config-conventional': ^17.0.0 '@cosmjs/amino': ^0.29.5 '@cosmjs/cosmwasm-stargate': ^0.29.5 '@cosmjs/encoding': ^0.29.5 @@ -63,6 +65,7 @@ specifiers: eslint-plugin-react: 7.32.2 eslint-plugin-react-hooks: 4.6.0 framer-motion: ^10.0.1 + husky: ^8.0.0 jest: ^29.4.1 jest-environment-jsdom: ^29.4.1 jsdom: ~20.0.3 @@ -129,6 +132,8 @@ dependencies: devDependencies: '@babel/preset-react': 7.18.6_@babel+core@7.21.0 '@chain-registry/types': 0.14.0 + '@commitlint/cli': 17.4.4 + '@commitlint/config-conventional': 17.4.4 '@emotion/babel-plugin': 11.10.6 '@nrwl/cypress': 15.8.5_6poz2htxic2oghbdep4xcarnry '@nrwl/eslint-plugin-nx': 15.7.2_ks45u5mdh5t523vmznpmfvudnu @@ -162,6 +167,7 @@ devDependencies: eslint-plugin-jsx-a11y: 6.7.1_eslint@8.15.0 eslint-plugin-react: 7.32.2_eslint@8.15.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.15.0 + husky: 8.0.3 jest: 29.4.3_jboh4c3iv3wxuja4m36ecyac7e jest-environment-jsdom: 29.4.3 jsdom: 20.0.3 @@ -2782,6 +2788,174 @@ packages: requiresBuild: true optional: true + /@commitlint/cli/17.4.4: + resolution: {integrity: sha512-HwKlD7CPVMVGTAeFZylVNy14Vm5POVY0WxPkZr7EXLC/os0LH/obs6z4HRvJtH/nHCMYBvUBQhGwnufKfTjd5g==} + engines: {node: '>=v14'} + hasBin: true + dependencies: + '@commitlint/format': 17.4.4 + '@commitlint/lint': 17.4.4 + '@commitlint/load': 17.4.4 + '@commitlint/read': 17.4.4 + '@commitlint/types': 17.4.4 + execa: 5.1.1 + lodash.isfunction: 3.0.9 + resolve-from: 5.0.0 + resolve-global: 1.0.0 + yargs: 17.7.1 + transitivePeerDependencies: + - '@swc/core' + - '@swc/wasm' + dev: true + + /@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-validator/17.4.4: + resolution: {integrity: sha512-bi0+TstqMiqoBAQDvdEP4AFh0GaKyLFlPPEObgI29utoKEYoPQTvF0EYqIwYYLEoJYhj5GfMIhPHJkTJhagfeg==} + engines: {node: '>=v14'} + dependencies: + '@commitlint/types': 17.4.4 + ajv: 8.12.0 + dev: true + + /@commitlint/ensure/17.4.4: + resolution: {integrity: sha512-AHsFCNh8hbhJiuZ2qHv/m59W/GRE9UeOXbkOqxYMNNg9pJ7qELnFcwj5oYpa6vzTSHtPGKf3C2yUFNy1GGHq6g==} + engines: {node: '>=v14'} + dependencies: + '@commitlint/types': 17.4.4 + lodash.camelcase: 4.3.0 + lodash.kebabcase: 4.1.1 + lodash.snakecase: 4.1.1 + lodash.startcase: 4.4.0 + lodash.upperfirst: 4.3.1 + dev: true + + /@commitlint/execute-rule/17.4.0: + resolution: {integrity: sha512-LIgYXuCSO5Gvtc0t9bebAMSwd68ewzmqLypqI2Kke1rqOqqDbMpYcYfoPfFlv9eyLIh4jocHWwCK5FS7z9icUA==} + engines: {node: '>=v14'} + dev: true + + /@commitlint/format/17.4.4: + resolution: {integrity: sha512-+IS7vpC4Gd/x+uyQPTAt3hXs5NxnkqAZ3aqrHd5Bx/R9skyCAWusNlNbw3InDbAK6j166D9asQM8fnmYIa+CXQ==} + engines: {node: '>=v14'} + dependencies: + '@commitlint/types': 17.4.4 + chalk: 4.1.2 + dev: true + + /@commitlint/is-ignored/17.4.4: + resolution: {integrity: sha512-Y3eo1SFJ2JQDik4rWkBC4tlRIxlXEFrRWxcyrzb1PUT2k3kZ/XGNuCDfk/u0bU2/yS0tOA/mTjFsV+C4qyACHw==} + engines: {node: '>=v14'} + dependencies: + '@commitlint/types': 17.4.4 + semver: 7.3.8 + dev: true + + /@commitlint/lint/17.4.4: + resolution: {integrity: sha512-qgkCRRFjyhbMDWsti/5jRYVJkgYZj4r+ZmweZObnbYqPUl5UKLWMf9a/ZZisOI4JfiPmRktYRZ2JmqlSvg+ccw==} + engines: {node: '>=v14'} + dependencies: + '@commitlint/is-ignored': 17.4.4 + '@commitlint/parse': 17.4.4 + '@commitlint/rules': 17.4.4 + '@commitlint/types': 17.4.4 + dev: true + + /@commitlint/load/17.4.4: + resolution: {integrity: sha512-z6uFIQ7wfKX5FGBe1AkOF4l/ShOQsaa1ml/nLMkbW7R/xF8galGS7Zh0yHvzVp/srtfS0brC+0bUfQfmpMPFVQ==} + engines: {node: '>=v14'} + 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': 18.14.2 + chalk: 4.1.2 + cosmiconfig: 8.1.0 + cosmiconfig-typescript-loader: 4.3.0_r66scxackjdo2gfsj5qbvkw6ay + 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_ellgaeuoqnti3hful2ny2iugba + typescript: 4.9.5 + transitivePeerDependencies: + - '@swc/core' + - '@swc/wasm' + dev: true + + /@commitlint/message/17.4.2: + resolution: {integrity: sha512-3XMNbzB+3bhKA1hSAWPCQA3lNxR4zaeQAQcHj0Hx5sVdO6ryXtgUBGGv+1ZCLMgAPRixuc6en+iNAzZ4NzAa8Q==} + engines: {node: '>=v14'} + dev: true + + /@commitlint/parse/17.4.4: + resolution: {integrity: sha512-EKzz4f49d3/OU0Fplog7nwz/lAfXMaDxtriidyGF9PtR+SRbgv4FhsfF310tKxs6EPj8Y+aWWuX3beN5s+yqGg==} + engines: {node: '>=v14'} + dependencies: + '@commitlint/types': 17.4.4 + conventional-changelog-angular: 5.0.13 + conventional-commits-parser: 3.2.4 + dev: true + + /@commitlint/read/17.4.4: + resolution: {integrity: sha512-B2TvUMJKK+Svzs6eji23WXsRJ8PAD+orI44lVuVNsm5zmI7O8RSGJMvdEZEikiA4Vohfb+HevaPoWZ7PiFZ3zA==} + engines: {node: '>=v14'} + dependencies: + '@commitlint/top-level': 17.4.0 + '@commitlint/types': 17.4.4 + fs-extra: 11.1.0 + git-raw-commits: 2.0.11 + minimist: 1.2.8 + dev: true + + /@commitlint/resolve-extends/17.4.4: + resolution: {integrity: sha512-znXr1S0Rr8adInptHw0JeLgumS11lWbk5xAWFVno+HUFVN45875kUtqjrI6AppmD3JI+4s0uZlqqlkepjJd99A==} + engines: {node: '>=v14'} + dependencies: + '@commitlint/config-validator': 17.4.4 + '@commitlint/types': 17.4.4 + import-fresh: 3.3.0 + lodash.mergewith: 4.6.2 + resolve-from: 5.0.0 + resolve-global: 1.0.0 + dev: true + + /@commitlint/rules/17.4.4: + resolution: {integrity: sha512-0tgvXnHi/mVcyR8Y8mjTFZIa/FEQXA4uEutXS/imH2v1UNkYDSEMsK/68wiXRpfW1euSgEdwRkvE1z23+yhNrQ==} + engines: {node: '>=v14'} + dependencies: + '@commitlint/ensure': 17.4.4 + '@commitlint/message': 17.4.2 + '@commitlint/to-lines': 17.4.0 + '@commitlint/types': 17.4.4 + execa: 5.1.1 + dev: true + + /@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: + resolution: {integrity: sha512-/1loE/g+dTTQgHnjoCy0AexKAEFyHsR2zRB4NWrZ6lZSMIxAhBJnmCqwao7b4H8888PsfoTBCLBYIw8vGnej8g==} + engines: {node: '>=v14'} + dependencies: + find-up: 5.0.0 + dev: true + + /@commitlint/types/17.4.4: + resolution: {integrity: sha512-amRN8tRLYOsxRr6mTnGGGvB5EmW/4DDjLMgiwK3CCVEmN6Sr/6xePGEpWaspKkckILuUORCwe6VfDBw6uj4axQ==} + engines: {node: '>=v14'} + dependencies: + chalk: 4.1.2 + dev: true + /@confio/ics23/0.6.8: resolution: {integrity: sha512-wB6uo+3A50m0sW/EWcU64xpV/8wShZ6bMTa7pF8eYsTrSkQA7oLUIJcs/wb8g4y2Oyq701BaGiO6n/ak5WXO1w==} dependencies: @@ -6886,7 +7060,6 @@ packages: json-schema-traverse: 1.0.0 require-from-string: 2.0.2 uri-js: 4.4.1 - dev: false /ansi-colors/4.1.1: resolution: {integrity: sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==} @@ -7972,6 +8145,15 @@ packages: q: 1.5.1 dev: true + /conventional-changelog-conventionalcommits/5.0.0: + resolution: {integrity: sha512-lCDbA+ZqVFQGUj7h9QBKoIpLhl8iihkO0nCTyRNzuXtcd7ubODpYB04IFy31JloiJgG0Uovu8ot8oxRzn7Nwtw==} + engines: {node: '>=10'} + dependencies: + compare-func: 2.0.0 + lodash: 4.17.21 + q: 1.5.1 + dev: true + /conventional-changelog-writer/5.0.1: resolution: {integrity: sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ==} engines: {node: '>=10'} @@ -8060,6 +8242,21 @@ packages: /core-util-is/1.0.2: resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==} + /cosmiconfig-typescript-loader/4.3.0_r66scxackjdo2gfsj5qbvkw6ay: + resolution: {integrity: sha512-NTxV1MFfZDLPiBMjxbHRwSh5LaLcPMwNdCutmnHJCKoVnlvldPWlllonKwrsRJ5pYZBIBGRWWU2tfvzxgeSW5Q==} + engines: {node: '>=12', npm: '>=6'} + peerDependencies: + '@types/node': '*' + cosmiconfig: '>=7' + ts-node: '>=10' + typescript: '>=3' + dependencies: + '@types/node': 18.14.2 + cosmiconfig: 8.1.0 + ts-node: 10.9.1_ellgaeuoqnti3hful2ny2iugba + typescript: 4.9.5 + dev: true + /cosmiconfig/6.0.0: resolution: {integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==} engines: {node: '>=8'} @@ -8386,6 +8583,11 @@ packages: resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} dev: true + /dargs/7.0.0: + resolution: {integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==} + engines: {node: '>=8'} + dev: true + /dashdash/1.14.1: resolution: {integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==} engines: {node: '>=0.10'} @@ -9986,6 +10188,18 @@ packages: traverse: 0.6.7 dev: true + /git-raw-commits/2.0.11: + resolution: {integrity: sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==} + engines: {node: '>=10'} + hasBin: true + dependencies: + dargs: 7.0.0 + lodash: 4.17.21 + meow: 8.1.2 + split2: 3.2.2 + through2: 4.0.2 + dev: true + /glob-parent/5.1.2: resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} engines: {node: '>= 6'} @@ -10044,6 +10258,13 @@ packages: once: 1.4.0 path-is-absolute: 1.0.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: resolution: {integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==} engines: {node: '>=10'} @@ -10386,6 +10607,12 @@ packages: engines: {node: '>=12.20.0'} dev: true + /husky/8.0.3: + resolution: {integrity: sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==} + engines: {node: '>=14'} + hasBin: true + dev: true + /iconv-lite/0.4.24: resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} engines: {node: '>=0.10.0'} @@ -11803,7 +12030,6 @@ packages: /json-schema-traverse/1.0.0: resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} - dev: false /json-schema/0.4.0: resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==} @@ -12056,6 +12282,10 @@ packages: resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==} dev: true + /lodash.camelcase/4.3.0: + resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==} + dev: true + /lodash.capitalize/4.2.1: resolution: {integrity: sha512-kZzYOKspf8XVX5AvmQF94gQW0lejFVgb80G85bU4ZWzoJ6C03PQg3coYAUpSTpQWelrZELd3XWgHzw4Ck5kaIw==} dev: true @@ -12071,6 +12301,10 @@ packages: resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==} dev: false + /lodash.isfunction/3.0.9: + resolution: {integrity: sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw==} + dev: true + /lodash.ismatch/4.4.0: resolution: {integrity: sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==} dev: true @@ -12083,6 +12317,10 @@ packages: resolution: {integrity: sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==} dev: true + /lodash.kebabcase/4.1.1: + resolution: {integrity: sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==} + dev: true + /lodash.memoize/4.1.2: resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==} @@ -12091,19 +12329,29 @@ packages: /lodash.mergewith/4.6.2: resolution: {integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==} - dev: false /lodash.once/4.1.1: resolution: {integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==} + /lodash.snakecase/4.1.1: + resolution: {integrity: sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==} + dev: true + + /lodash.startcase/4.4.0: + resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==} + dev: true + /lodash.uniq/4.5.0: resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} - dev: false /lodash.uniqby/4.7.0: resolution: {integrity: sha512-e/zcLx6CSbmaEgFHCA7BnoQKyCtKMxnuWrJygbwPs/AIn+IMKl66L8/s+wBUn5LRw2pZx3bUHibiV1b6aTWIww==} dev: true + /lodash.upperfirst/4.3.1: + resolution: {integrity: sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==} + dev: true + /lodash/4.17.21: resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} @@ -14286,7 +14534,6 @@ packages: /require-from-string/2.0.2: resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} engines: {node: '>=0.10.0'} - dev: false /requires-port/1.0.0: resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} @@ -14306,6 +14553,13 @@ packages: resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} engines: {node: '>=8'} + /resolve-global/1.0.0: + resolution: {integrity: sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==} + engines: {node: '>=8'} + dependencies: + global-dirs: 0.1.1 + dev: true + /resolve.exports/1.1.0: resolution: {integrity: sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==} engines: {node: '>=10'} From f78f06be4d047c81c143da4f476480e4d2ac0d2f Mon Sep 17 00:00:00 2001 From: DavideSegullo Date: Wed, 8 Mar 2023 12:32:51 +0100 Subject: [PATCH 03/46] ci: :green_heart: remove deprecated workspace lint --- .github/workflows/ci.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b17f619..e1f0b24 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -121,13 +121,6 @@ jobs: npm ci fi - - run: | - npx nx workspace-lint - npx nx format:check --libs-and-apps - npx nx affected --target lint --parallel 4 - npx nx affected --target test --parallel 4 --ci --code-coverage - npx nx affected --target build --parallel 4 - - name: Release if: ${{ success() && (github.event_name != 'pull_request' || github.event.action == 'closed' && github.event.pull_request.merged == true) }} env: From 9b9afd0a172bb6fc024e4e24ff25c675040ce121 Mon Sep 17 00:00:00 2001 From: DavideSegullo Date: Wed, 8 Mar 2023 12:35:34 +0100 Subject: [PATCH 04/46] ci: :green_heart: fix app name command --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e1f0b24..f95dcf6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -128,4 +128,4 @@ jobs: NODE_AUTH_TOKEN: ${{ secrets.GH_TOKEN }} NPM_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - npx nx run my-app:semantic-release + npx nx run txs-tracer-core:semantic-release From 4e1df933a9de84e0dc30c81e1993df15b3a1e9e6 Mon Sep 17 00:00:00 2001 From: DavideSegullo Date: Wed, 8 Mar 2023 12:44:46 +0100 Subject: [PATCH 05/46] ci: :green_heart: fix env token config --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f95dcf6..17f2e4c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -125,7 +125,8 @@ jobs: if: ${{ success() && (github.event_name != 'pull_request' || github.event.action == 'closed' && github.event.pull_request.merged == true) }} env: GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} + GH_TOKEN: ${{ secrets.GH_TOKEN }} NODE_AUTH_TOKEN: ${{ secrets.GH_TOKEN }} - NPM_TOKEN: ${{ secrets.GITHUB_TOKEN }} + NPM_TOKEN: ${{ secrets.NPM_TOKEN }} run: | npx nx run txs-tracer-core:semantic-release From 5de22700662b59f22b450930dc581b2f121dc181 Mon Sep 17 00:00:00 2001 From: DavideSegullo Date: Wed, 8 Mar 2023 15:55:10 +0100 Subject: [PATCH 06/46] chore(txs-tracer-core): :wrench: update package description --- .husky/commit-msg | 2 +- packages/txs-tracer-core/package.json | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.husky/commit-msg b/.husky/commit-msg index e8511ea..26df332 100755 --- a/.husky/commit-msg +++ b/.husky/commit-msg @@ -1,4 +1,4 @@ #!/bin/sh . "$(dirname "$0")/_/husky.sh" -npx --no-install commitlint --edit $1 +#npx --no-install commitlint --edit $1 diff --git a/packages/txs-tracer-core/package.json b/packages/txs-tracer-core/package.json index 5724fff..7f4f768 100644 --- a/packages/txs-tracer-core/package.json +++ b/packages/txs-tracer-core/package.json @@ -1,6 +1,7 @@ { "name": "@nabla-studio/txs-tracer-core", "version": "0.0.0-semantic-release", + "description": "A series of state machines useful for tracking transactions for the Cosmos blockchain ecosystem", "type": "module", "repository": { "type": "git", From 0baab2c8452d790db3f90b8e995b8f04050f675b Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Wed, 8 Mar 2023 14:57:13 +0000 Subject: [PATCH 07/46] chore(release): 1.0.0-next.1 [skip ci] # 1.0.0-next.1 (2023-03-08) ### Bug Fixes * **txs-tracer-core:** :bug: fix increase step ([dd1ac1e](https://github.com/nabla-studio/cosmos-txs-tracer/commit/dd1ac1eb29e7f978bdc70784c1c4ca736e3fbae4)) * **txs-tracer-core:** :bug: fix result assign ([7a23c8a](https://github.com/nabla-studio/cosmos-txs-tracer/commit/7a23c8ac3b578c6af396a45751c7c3021cdb7ad6)) ### Features * :sparkles: add nx-semantic-release setup ([64e4acc](https://github.com/nabla-studio/cosmos-txs-tracer/commit/64e4accb659459d08b9b6dd46aa452a89f30984e)) * **demo-app-cosmos:** :sparkles: add cosmos demo app ([3c82dbf](https://github.com/nabla-studio/cosmos-txs-tracer/commit/3c82dbfcd8efe8b50037c5e785d70ae752d54ff0)) * **demo-app-cosmos:** :sparkles: add ibc transfer example ([c093315](https://github.com/nabla-studio/cosmos-txs-tracer/commit/c0933152b60ec0a0fd8308c3d3806e001f8a12a7)) * **demo-app-cosmos:** :sparkles: add rpc getter from registry ([d310cae](https://github.com/nabla-studio/cosmos-txs-tracer/commit/d310cae3653e0c0047b98e9acf3689976199f369)) * **demo-app-cosmos:** :sparkles: add send trace example ([ed08561](https://github.com/nabla-studio/cosmos-txs-tracer/commit/ed085613db3ebd3c1fe9fc3e0c4e40fa02d19413)) * **demo-app:** :sparkles: add demo app example ([4886ad8](https://github.com/nabla-studio/cosmos-txs-tracer/commit/4886ad8e673014ad5af9bcb32f8dc28c79841381)) * **demo-app:** :sparkles: add tx trace example ([a53bad7](https://github.com/nabla-studio/cosmos-txs-tracer/commit/a53bad7514fd403978fcf060b244550196ef084e)) * **txs-tracer-core:** :sparkles: add basic txs trace machine ([e36a645](https://github.com/nabla-studio/cosmos-txs-tracer/commit/e36a645cf0f8a0ce1a8b4fe74f9c52b645c9736d)) * **txs-tracer-core:** :sparkles: add conversion from stream to promise ([b17444a](https://github.com/nabla-studio/cosmos-txs-tracer/commit/b17444a67f76d45a96bef1b3c102c5e49a1c16f8)) * **txs-tracer-core:** :sparkles: add disconnect on socket errors ([2cb93a9](https://github.com/nabla-studio/cosmos-txs-tracer/commit/2cb93a94ed9dd96ad44a94d4f0390ea2911711cc)) * **txs-tracer-core:** :sparkles: add ibc trace machine ([3c8f48c](https://github.com/nabla-studio/cosmos-txs-tracer/commit/3c8f48c6b6c860c1040863a3a9daeb92fd9e660b)) * **txs-tracer-core:** :sparkles: add query payload for trace event ([30f5427](https://github.com/nabla-studio/cosmos-txs-tracer/commit/30f5427e29ec494ff004632da6207c8778c125b4)) * **txs-tracer-core:** :sparkles: add search tx ([365feaa](https://github.com/nabla-studio/cosmos-txs-tracer/commit/365feaa4b82a1cad0a3a2355c25d3c76e7243097)) * **txs-tracer-core:** :sparkles: add socket timeout state handler ([918b60c](https://github.com/nabla-studio/cosmos-txs-tracer/commit/918b60c42ffe27719a764cf694077db337840701)) * **txs-tracer-core:** :sparkles: add tendermint client for websocket ([cecc439](https://github.com/nabla-studio/cosmos-txs-tracer/commit/cecc43904fe443450512ca3fc507cace1cd15eb3)) * **txs-tracer-core:** :sparkles: add websocket url on trace event ([403658f](https://github.com/nabla-studio/cosmos-txs-tracer/commit/403658f29a8b09cfe641d4bf8e87f6e911f1c06b)) * **txs-tracer-core:** :sparkles: improve error handling ([ef17dc8](https://github.com/nabla-studio/cosmos-txs-tracer/commit/ef17dc8bb65a165cf7ea21c6578beb68a9ff20c8)) * **txs-tracer-core:** :sparkles: improve tx trace assign event ([39d4925](https://github.com/nabla-studio/cosmos-txs-tracer/commit/39d4925d60c9dd4735ff0cddee9c7fb29c873750)) * **txs-tracer-core:** :sparkles: improve tx trace machine ([31c6000](https://github.com/nabla-studio/cosmos-txs-tracer/commit/31c6000d698694348e8530d98ef76a6aaa91fe77)) * **txs-tracer-core:** :sparkles: improve types ([503e1dd](https://github.com/nabla-studio/cosmos-txs-tracer/commit/503e1dd8ab41f1eeaa3a2cbe03f283a30412ec39)) * **txs-tracer-core:** :wrench: increase default timeout values ([c7d9309](https://github.com/nabla-studio/cosmos-txs-tracer/commit/c7d9309f007180f2fe8df231c7c945977aa38b13)) --- packages/txs-tracer-core/CHANGELOG.md | 32 +++++++++++++++++++++++++++ packages/txs-tracer-core/package.json | 20 ++++++++--------- 2 files changed, 42 insertions(+), 10 deletions(-) create mode 100644 packages/txs-tracer-core/CHANGELOG.md diff --git a/packages/txs-tracer-core/CHANGELOG.md b/packages/txs-tracer-core/CHANGELOG.md new file mode 100644 index 0000000..85fd0ab --- /dev/null +++ b/packages/txs-tracer-core/CHANGELOG.md @@ -0,0 +1,32 @@ +# 1.0.0-next.1 (2023-03-08) + + +### Bug Fixes + +* **txs-tracer-core:** :bug: fix increase step ([dd1ac1e](https://github.com/nabla-studio/cosmos-txs-tracer/commit/dd1ac1eb29e7f978bdc70784c1c4ca736e3fbae4)) +* **txs-tracer-core:** :bug: fix result assign ([7a23c8a](https://github.com/nabla-studio/cosmos-txs-tracer/commit/7a23c8ac3b578c6af396a45751c7c3021cdb7ad6)) + + +### Features + +* :sparkles: add nx-semantic-release setup ([64e4acc](https://github.com/nabla-studio/cosmos-txs-tracer/commit/64e4accb659459d08b9b6dd46aa452a89f30984e)) +* **demo-app-cosmos:** :sparkles: add cosmos demo app ([3c82dbf](https://github.com/nabla-studio/cosmos-txs-tracer/commit/3c82dbfcd8efe8b50037c5e785d70ae752d54ff0)) +* **demo-app-cosmos:** :sparkles: add ibc transfer example ([c093315](https://github.com/nabla-studio/cosmos-txs-tracer/commit/c0933152b60ec0a0fd8308c3d3806e001f8a12a7)) +* **demo-app-cosmos:** :sparkles: add rpc getter from registry ([d310cae](https://github.com/nabla-studio/cosmos-txs-tracer/commit/d310cae3653e0c0047b98e9acf3689976199f369)) +* **demo-app-cosmos:** :sparkles: add send trace example ([ed08561](https://github.com/nabla-studio/cosmos-txs-tracer/commit/ed085613db3ebd3c1fe9fc3e0c4e40fa02d19413)) +* **demo-app:** :sparkles: add demo app example ([4886ad8](https://github.com/nabla-studio/cosmos-txs-tracer/commit/4886ad8e673014ad5af9bcb32f8dc28c79841381)) +* **demo-app:** :sparkles: add tx trace example ([a53bad7](https://github.com/nabla-studio/cosmos-txs-tracer/commit/a53bad7514fd403978fcf060b244550196ef084e)) +* **txs-tracer-core:** :sparkles: add basic txs trace machine ([e36a645](https://github.com/nabla-studio/cosmos-txs-tracer/commit/e36a645cf0f8a0ce1a8b4fe74f9c52b645c9736d)) +* **txs-tracer-core:** :sparkles: add conversion from stream to promise ([b17444a](https://github.com/nabla-studio/cosmos-txs-tracer/commit/b17444a67f76d45a96bef1b3c102c5e49a1c16f8)) +* **txs-tracer-core:** :sparkles: add disconnect on socket errors ([2cb93a9](https://github.com/nabla-studio/cosmos-txs-tracer/commit/2cb93a94ed9dd96ad44a94d4f0390ea2911711cc)) +* **txs-tracer-core:** :sparkles: add ibc trace machine ([3c8f48c](https://github.com/nabla-studio/cosmos-txs-tracer/commit/3c8f48c6b6c860c1040863a3a9daeb92fd9e660b)) +* **txs-tracer-core:** :sparkles: add query payload for trace event ([30f5427](https://github.com/nabla-studio/cosmos-txs-tracer/commit/30f5427e29ec494ff004632da6207c8778c125b4)) +* **txs-tracer-core:** :sparkles: add search tx ([365feaa](https://github.com/nabla-studio/cosmos-txs-tracer/commit/365feaa4b82a1cad0a3a2355c25d3c76e7243097)) +* **txs-tracer-core:** :sparkles: add socket timeout state handler ([918b60c](https://github.com/nabla-studio/cosmos-txs-tracer/commit/918b60c42ffe27719a764cf694077db337840701)) +* **txs-tracer-core:** :sparkles: add tendermint client for websocket ([cecc439](https://github.com/nabla-studio/cosmos-txs-tracer/commit/cecc43904fe443450512ca3fc507cace1cd15eb3)) +* **txs-tracer-core:** :sparkles: add websocket url on trace event ([403658f](https://github.com/nabla-studio/cosmos-txs-tracer/commit/403658f29a8b09cfe641d4bf8e87f6e911f1c06b)) +* **txs-tracer-core:** :sparkles: improve error handling ([ef17dc8](https://github.com/nabla-studio/cosmos-txs-tracer/commit/ef17dc8bb65a165cf7ea21c6578beb68a9ff20c8)) +* **txs-tracer-core:** :sparkles: improve tx trace assign event ([39d4925](https://github.com/nabla-studio/cosmos-txs-tracer/commit/39d4925d60c9dd4735ff0cddee9c7fb29c873750)) +* **txs-tracer-core:** :sparkles: improve tx trace machine ([31c6000](https://github.com/nabla-studio/cosmos-txs-tracer/commit/31c6000d698694348e8530d98ef76a6aaa91fe77)) +* **txs-tracer-core:** :sparkles: improve types ([503e1dd](https://github.com/nabla-studio/cosmos-txs-tracer/commit/503e1dd8ab41f1eeaa3a2cbe03f283a30412ec39)) +* **txs-tracer-core:** :wrench: increase default timeout values ([c7d9309](https://github.com/nabla-studio/cosmos-txs-tracer/commit/c7d9309f007180f2fe8df231c7c945977aa38b13)) diff --git a/packages/txs-tracer-core/package.json b/packages/txs-tracer-core/package.json index 7f4f768..b037629 100644 --- a/packages/txs-tracer-core/package.json +++ b/packages/txs-tracer-core/package.json @@ -1,14 +1,14 @@ { "name": "@nabla-studio/txs-tracer-core", - "version": "0.0.0-semantic-release", - "description": "A series of state machines useful for tracking transactions for the Cosmos blockchain ecosystem", + "version": "1.0.0-next.1", + "description": "A series of state machines useful for tracking transactions for the Cosmos blockchain ecosystem", "type": "module", - "repository": { - "type": "git", - "url": "https://github.com/nabla-studio/cosmos-txs-tracer.git", - "directory": "packages/txs-tracer-core" - }, - "bugs": { - "url": "https://github.com/nabla-studio/cosmos-txs-tracer/issues" - } + "repository": { + "type": "git", + "url": "https://github.com/nabla-studio/cosmos-txs-tracer.git", + "directory": "packages/txs-tracer-core" + }, + "bugs": { + "url": "https://github.com/nabla-studio/cosmos-txs-tracer/issues" + } } From 7621ded59dc8a421b80ca55c63dd6ea3a96fdf0a Mon Sep 17 00:00:00 2001 From: DavideSegullo Date: Wed, 8 Mar 2023 16:38:27 +0100 Subject: [PATCH 08/46] ci: :bug: fix public repo --- packages/txs-tracer-core/CHANGELOG.md | 32 --------------------------- packages/txs-tracer-core/package.json | 20 ++++++++--------- 2 files changed, 10 insertions(+), 42 deletions(-) delete mode 100644 packages/txs-tracer-core/CHANGELOG.md diff --git a/packages/txs-tracer-core/CHANGELOG.md b/packages/txs-tracer-core/CHANGELOG.md deleted file mode 100644 index 85fd0ab..0000000 --- a/packages/txs-tracer-core/CHANGELOG.md +++ /dev/null @@ -1,32 +0,0 @@ -# 1.0.0-next.1 (2023-03-08) - - -### Bug Fixes - -* **txs-tracer-core:** :bug: fix increase step ([dd1ac1e](https://github.com/nabla-studio/cosmos-txs-tracer/commit/dd1ac1eb29e7f978bdc70784c1c4ca736e3fbae4)) -* **txs-tracer-core:** :bug: fix result assign ([7a23c8a](https://github.com/nabla-studio/cosmos-txs-tracer/commit/7a23c8ac3b578c6af396a45751c7c3021cdb7ad6)) - - -### Features - -* :sparkles: add nx-semantic-release setup ([64e4acc](https://github.com/nabla-studio/cosmos-txs-tracer/commit/64e4accb659459d08b9b6dd46aa452a89f30984e)) -* **demo-app-cosmos:** :sparkles: add cosmos demo app ([3c82dbf](https://github.com/nabla-studio/cosmos-txs-tracer/commit/3c82dbfcd8efe8b50037c5e785d70ae752d54ff0)) -* **demo-app-cosmos:** :sparkles: add ibc transfer example ([c093315](https://github.com/nabla-studio/cosmos-txs-tracer/commit/c0933152b60ec0a0fd8308c3d3806e001f8a12a7)) -* **demo-app-cosmos:** :sparkles: add rpc getter from registry ([d310cae](https://github.com/nabla-studio/cosmos-txs-tracer/commit/d310cae3653e0c0047b98e9acf3689976199f369)) -* **demo-app-cosmos:** :sparkles: add send trace example ([ed08561](https://github.com/nabla-studio/cosmos-txs-tracer/commit/ed085613db3ebd3c1fe9fc3e0c4e40fa02d19413)) -* **demo-app:** :sparkles: add demo app example ([4886ad8](https://github.com/nabla-studio/cosmos-txs-tracer/commit/4886ad8e673014ad5af9bcb32f8dc28c79841381)) -* **demo-app:** :sparkles: add tx trace example ([a53bad7](https://github.com/nabla-studio/cosmos-txs-tracer/commit/a53bad7514fd403978fcf060b244550196ef084e)) -* **txs-tracer-core:** :sparkles: add basic txs trace machine ([e36a645](https://github.com/nabla-studio/cosmos-txs-tracer/commit/e36a645cf0f8a0ce1a8b4fe74f9c52b645c9736d)) -* **txs-tracer-core:** :sparkles: add conversion from stream to promise ([b17444a](https://github.com/nabla-studio/cosmos-txs-tracer/commit/b17444a67f76d45a96bef1b3c102c5e49a1c16f8)) -* **txs-tracer-core:** :sparkles: add disconnect on socket errors ([2cb93a9](https://github.com/nabla-studio/cosmos-txs-tracer/commit/2cb93a94ed9dd96ad44a94d4f0390ea2911711cc)) -* **txs-tracer-core:** :sparkles: add ibc trace machine ([3c8f48c](https://github.com/nabla-studio/cosmos-txs-tracer/commit/3c8f48c6b6c860c1040863a3a9daeb92fd9e660b)) -* **txs-tracer-core:** :sparkles: add query payload for trace event ([30f5427](https://github.com/nabla-studio/cosmos-txs-tracer/commit/30f5427e29ec494ff004632da6207c8778c125b4)) -* **txs-tracer-core:** :sparkles: add search tx ([365feaa](https://github.com/nabla-studio/cosmos-txs-tracer/commit/365feaa4b82a1cad0a3a2355c25d3c76e7243097)) -* **txs-tracer-core:** :sparkles: add socket timeout state handler ([918b60c](https://github.com/nabla-studio/cosmos-txs-tracer/commit/918b60c42ffe27719a764cf694077db337840701)) -* **txs-tracer-core:** :sparkles: add tendermint client for websocket ([cecc439](https://github.com/nabla-studio/cosmos-txs-tracer/commit/cecc43904fe443450512ca3fc507cace1cd15eb3)) -* **txs-tracer-core:** :sparkles: add websocket url on trace event ([403658f](https://github.com/nabla-studio/cosmos-txs-tracer/commit/403658f29a8b09cfe641d4bf8e87f6e911f1c06b)) -* **txs-tracer-core:** :sparkles: improve error handling ([ef17dc8](https://github.com/nabla-studio/cosmos-txs-tracer/commit/ef17dc8bb65a165cf7ea21c6578beb68a9ff20c8)) -* **txs-tracer-core:** :sparkles: improve tx trace assign event ([39d4925](https://github.com/nabla-studio/cosmos-txs-tracer/commit/39d4925d60c9dd4735ff0cddee9c7fb29c873750)) -* **txs-tracer-core:** :sparkles: improve tx trace machine ([31c6000](https://github.com/nabla-studio/cosmos-txs-tracer/commit/31c6000d698694348e8530d98ef76a6aaa91fe77)) -* **txs-tracer-core:** :sparkles: improve types ([503e1dd](https://github.com/nabla-studio/cosmos-txs-tracer/commit/503e1dd8ab41f1eeaa3a2cbe03f283a30412ec39)) -* **txs-tracer-core:** :wrench: increase default timeout values ([c7d9309](https://github.com/nabla-studio/cosmos-txs-tracer/commit/c7d9309f007180f2fe8df231c7c945977aa38b13)) diff --git a/packages/txs-tracer-core/package.json b/packages/txs-tracer-core/package.json index b037629..7f4f768 100644 --- a/packages/txs-tracer-core/package.json +++ b/packages/txs-tracer-core/package.json @@ -1,14 +1,14 @@ { "name": "@nabla-studio/txs-tracer-core", - "version": "1.0.0-next.1", - "description": "A series of state machines useful for tracking transactions for the Cosmos blockchain ecosystem", + "version": "0.0.0-semantic-release", + "description": "A series of state machines useful for tracking transactions for the Cosmos blockchain ecosystem", "type": "module", - "repository": { - "type": "git", - "url": "https://github.com/nabla-studio/cosmos-txs-tracer.git", - "directory": "packages/txs-tracer-core" - }, - "bugs": { - "url": "https://github.com/nabla-studio/cosmos-txs-tracer/issues" - } + "repository": { + "type": "git", + "url": "https://github.com/nabla-studio/cosmos-txs-tracer.git", + "directory": "packages/txs-tracer-core" + }, + "bugs": { + "url": "https://github.com/nabla-studio/cosmos-txs-tracer/issues" + } } From 904c72b365b466eddcf4544fcdded06132771a7a Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Wed, 8 Mar 2023 15:42:45 +0000 Subject: [PATCH 09/46] chore(release): 1.0.0-next.1 [skip ci] # 1.0.0-next.1 (2023-03-08) ### Bug Fixes * **txs-tracer-core:** :bug: fix increase step ([dd1ac1e](https://github.com/nabla-studio/cosmos-txs-tracer/commit/dd1ac1eb29e7f978bdc70784c1c4ca736e3fbae4)) * **txs-tracer-core:** :bug: fix result assign ([7a23c8a](https://github.com/nabla-studio/cosmos-txs-tracer/commit/7a23c8ac3b578c6af396a45751c7c3021cdb7ad6)) ### Features * :sparkles: add nx-semantic-release setup ([64e4acc](https://github.com/nabla-studio/cosmos-txs-tracer/commit/64e4accb659459d08b9b6dd46aa452a89f30984e)) * **demo-app-cosmos:** :sparkles: add cosmos demo app ([3c82dbf](https://github.com/nabla-studio/cosmos-txs-tracer/commit/3c82dbfcd8efe8b50037c5e785d70ae752d54ff0)) * **demo-app-cosmos:** :sparkles: add ibc transfer example ([c093315](https://github.com/nabla-studio/cosmos-txs-tracer/commit/c0933152b60ec0a0fd8308c3d3806e001f8a12a7)) * **demo-app-cosmos:** :sparkles: add rpc getter from registry ([d310cae](https://github.com/nabla-studio/cosmos-txs-tracer/commit/d310cae3653e0c0047b98e9acf3689976199f369)) * **demo-app-cosmos:** :sparkles: add send trace example ([ed08561](https://github.com/nabla-studio/cosmos-txs-tracer/commit/ed085613db3ebd3c1fe9fc3e0c4e40fa02d19413)) * **demo-app:** :sparkles: add demo app example ([4886ad8](https://github.com/nabla-studio/cosmos-txs-tracer/commit/4886ad8e673014ad5af9bcb32f8dc28c79841381)) * **demo-app:** :sparkles: add tx trace example ([a53bad7](https://github.com/nabla-studio/cosmos-txs-tracer/commit/a53bad7514fd403978fcf060b244550196ef084e)) * **txs-tracer-core:** :sparkles: add basic txs trace machine ([e36a645](https://github.com/nabla-studio/cosmos-txs-tracer/commit/e36a645cf0f8a0ce1a8b4fe74f9c52b645c9736d)) * **txs-tracer-core:** :sparkles: add conversion from stream to promise ([b17444a](https://github.com/nabla-studio/cosmos-txs-tracer/commit/b17444a67f76d45a96bef1b3c102c5e49a1c16f8)) * **txs-tracer-core:** :sparkles: add disconnect on socket errors ([2cb93a9](https://github.com/nabla-studio/cosmos-txs-tracer/commit/2cb93a94ed9dd96ad44a94d4f0390ea2911711cc)) * **txs-tracer-core:** :sparkles: add ibc trace machine ([3c8f48c](https://github.com/nabla-studio/cosmos-txs-tracer/commit/3c8f48c6b6c860c1040863a3a9daeb92fd9e660b)) * **txs-tracer-core:** :sparkles: add query payload for trace event ([30f5427](https://github.com/nabla-studio/cosmos-txs-tracer/commit/30f5427e29ec494ff004632da6207c8778c125b4)) * **txs-tracer-core:** :sparkles: add search tx ([365feaa](https://github.com/nabla-studio/cosmos-txs-tracer/commit/365feaa4b82a1cad0a3a2355c25d3c76e7243097)) * **txs-tracer-core:** :sparkles: add socket timeout state handler ([918b60c](https://github.com/nabla-studio/cosmos-txs-tracer/commit/918b60c42ffe27719a764cf694077db337840701)) * **txs-tracer-core:** :sparkles: add tendermint client for websocket ([cecc439](https://github.com/nabla-studio/cosmos-txs-tracer/commit/cecc43904fe443450512ca3fc507cace1cd15eb3)) * **txs-tracer-core:** :sparkles: add websocket url on trace event ([403658f](https://github.com/nabla-studio/cosmos-txs-tracer/commit/403658f29a8b09cfe641d4bf8e87f6e911f1c06b)) * **txs-tracer-core:** :sparkles: improve error handling ([ef17dc8](https://github.com/nabla-studio/cosmos-txs-tracer/commit/ef17dc8bb65a165cf7ea21c6578beb68a9ff20c8)) * **txs-tracer-core:** :sparkles: improve tx trace assign event ([39d4925](https://github.com/nabla-studio/cosmos-txs-tracer/commit/39d4925d60c9dd4735ff0cddee9c7fb29c873750)) * **txs-tracer-core:** :sparkles: improve tx trace machine ([31c6000](https://github.com/nabla-studio/cosmos-txs-tracer/commit/31c6000d698694348e8530d98ef76a6aaa91fe77)) * **txs-tracer-core:** :sparkles: improve types ([503e1dd](https://github.com/nabla-studio/cosmos-txs-tracer/commit/503e1dd8ab41f1eeaa3a2cbe03f283a30412ec39)) * **txs-tracer-core:** :wrench: increase default timeout values ([c7d9309](https://github.com/nabla-studio/cosmos-txs-tracer/commit/c7d9309f007180f2fe8df231c7c945977aa38b13)) --- packages/txs-tracer-core/CHANGELOG.md | 32 +++++++++++++++++++++++++++ packages/txs-tracer-core/package.json | 20 ++++++++--------- 2 files changed, 42 insertions(+), 10 deletions(-) create mode 100644 packages/txs-tracer-core/CHANGELOG.md diff --git a/packages/txs-tracer-core/CHANGELOG.md b/packages/txs-tracer-core/CHANGELOG.md new file mode 100644 index 0000000..85fd0ab --- /dev/null +++ b/packages/txs-tracer-core/CHANGELOG.md @@ -0,0 +1,32 @@ +# 1.0.0-next.1 (2023-03-08) + + +### Bug Fixes + +* **txs-tracer-core:** :bug: fix increase step ([dd1ac1e](https://github.com/nabla-studio/cosmos-txs-tracer/commit/dd1ac1eb29e7f978bdc70784c1c4ca736e3fbae4)) +* **txs-tracer-core:** :bug: fix result assign ([7a23c8a](https://github.com/nabla-studio/cosmos-txs-tracer/commit/7a23c8ac3b578c6af396a45751c7c3021cdb7ad6)) + + +### Features + +* :sparkles: add nx-semantic-release setup ([64e4acc](https://github.com/nabla-studio/cosmos-txs-tracer/commit/64e4accb659459d08b9b6dd46aa452a89f30984e)) +* **demo-app-cosmos:** :sparkles: add cosmos demo app ([3c82dbf](https://github.com/nabla-studio/cosmos-txs-tracer/commit/3c82dbfcd8efe8b50037c5e785d70ae752d54ff0)) +* **demo-app-cosmos:** :sparkles: add ibc transfer example ([c093315](https://github.com/nabla-studio/cosmos-txs-tracer/commit/c0933152b60ec0a0fd8308c3d3806e001f8a12a7)) +* **demo-app-cosmos:** :sparkles: add rpc getter from registry ([d310cae](https://github.com/nabla-studio/cosmos-txs-tracer/commit/d310cae3653e0c0047b98e9acf3689976199f369)) +* **demo-app-cosmos:** :sparkles: add send trace example ([ed08561](https://github.com/nabla-studio/cosmos-txs-tracer/commit/ed085613db3ebd3c1fe9fc3e0c4e40fa02d19413)) +* **demo-app:** :sparkles: add demo app example ([4886ad8](https://github.com/nabla-studio/cosmos-txs-tracer/commit/4886ad8e673014ad5af9bcb32f8dc28c79841381)) +* **demo-app:** :sparkles: add tx trace example ([a53bad7](https://github.com/nabla-studio/cosmos-txs-tracer/commit/a53bad7514fd403978fcf060b244550196ef084e)) +* **txs-tracer-core:** :sparkles: add basic txs trace machine ([e36a645](https://github.com/nabla-studio/cosmos-txs-tracer/commit/e36a645cf0f8a0ce1a8b4fe74f9c52b645c9736d)) +* **txs-tracer-core:** :sparkles: add conversion from stream to promise ([b17444a](https://github.com/nabla-studio/cosmos-txs-tracer/commit/b17444a67f76d45a96bef1b3c102c5e49a1c16f8)) +* **txs-tracer-core:** :sparkles: add disconnect on socket errors ([2cb93a9](https://github.com/nabla-studio/cosmos-txs-tracer/commit/2cb93a94ed9dd96ad44a94d4f0390ea2911711cc)) +* **txs-tracer-core:** :sparkles: add ibc trace machine ([3c8f48c](https://github.com/nabla-studio/cosmos-txs-tracer/commit/3c8f48c6b6c860c1040863a3a9daeb92fd9e660b)) +* **txs-tracer-core:** :sparkles: add query payload for trace event ([30f5427](https://github.com/nabla-studio/cosmos-txs-tracer/commit/30f5427e29ec494ff004632da6207c8778c125b4)) +* **txs-tracer-core:** :sparkles: add search tx ([365feaa](https://github.com/nabla-studio/cosmos-txs-tracer/commit/365feaa4b82a1cad0a3a2355c25d3c76e7243097)) +* **txs-tracer-core:** :sparkles: add socket timeout state handler ([918b60c](https://github.com/nabla-studio/cosmos-txs-tracer/commit/918b60c42ffe27719a764cf694077db337840701)) +* **txs-tracer-core:** :sparkles: add tendermint client for websocket ([cecc439](https://github.com/nabla-studio/cosmos-txs-tracer/commit/cecc43904fe443450512ca3fc507cace1cd15eb3)) +* **txs-tracer-core:** :sparkles: add websocket url on trace event ([403658f](https://github.com/nabla-studio/cosmos-txs-tracer/commit/403658f29a8b09cfe641d4bf8e87f6e911f1c06b)) +* **txs-tracer-core:** :sparkles: improve error handling ([ef17dc8](https://github.com/nabla-studio/cosmos-txs-tracer/commit/ef17dc8bb65a165cf7ea21c6578beb68a9ff20c8)) +* **txs-tracer-core:** :sparkles: improve tx trace assign event ([39d4925](https://github.com/nabla-studio/cosmos-txs-tracer/commit/39d4925d60c9dd4735ff0cddee9c7fb29c873750)) +* **txs-tracer-core:** :sparkles: improve tx trace machine ([31c6000](https://github.com/nabla-studio/cosmos-txs-tracer/commit/31c6000d698694348e8530d98ef76a6aaa91fe77)) +* **txs-tracer-core:** :sparkles: improve types ([503e1dd](https://github.com/nabla-studio/cosmos-txs-tracer/commit/503e1dd8ab41f1eeaa3a2cbe03f283a30412ec39)) +* **txs-tracer-core:** :wrench: increase default timeout values ([c7d9309](https://github.com/nabla-studio/cosmos-txs-tracer/commit/c7d9309f007180f2fe8df231c7c945977aa38b13)) diff --git a/packages/txs-tracer-core/package.json b/packages/txs-tracer-core/package.json index 7f4f768..b037629 100644 --- a/packages/txs-tracer-core/package.json +++ b/packages/txs-tracer-core/package.json @@ -1,14 +1,14 @@ { "name": "@nabla-studio/txs-tracer-core", - "version": "0.0.0-semantic-release", - "description": "A series of state machines useful for tracking transactions for the Cosmos blockchain ecosystem", + "version": "1.0.0-next.1", + "description": "A series of state machines useful for tracking transactions for the Cosmos blockchain ecosystem", "type": "module", - "repository": { - "type": "git", - "url": "https://github.com/nabla-studio/cosmos-txs-tracer.git", - "directory": "packages/txs-tracer-core" - }, - "bugs": { - "url": "https://github.com/nabla-studio/cosmos-txs-tracer/issues" - } + "repository": { + "type": "git", + "url": "https://github.com/nabla-studio/cosmos-txs-tracer.git", + "directory": "packages/txs-tracer-core" + }, + "bugs": { + "url": "https://github.com/nabla-studio/cosmos-txs-tracer/issues" + } } From 8a6de0a7eddf956111320dc1af841e28d7c15ca8 Mon Sep 17 00:00:00 2001 From: DavideSegullo Date: Wed, 8 Mar 2023 16:46:14 +0100 Subject: [PATCH 10/46] ci: :green_heart: fix package publish config --- packages/txs-tracer-core/CHANGELOG.md | 32 --------------------------- packages/txs-tracer-core/package.json | 23 ++++++++++--------- 2 files changed, 13 insertions(+), 42 deletions(-) delete mode 100644 packages/txs-tracer-core/CHANGELOG.md diff --git a/packages/txs-tracer-core/CHANGELOG.md b/packages/txs-tracer-core/CHANGELOG.md deleted file mode 100644 index 85fd0ab..0000000 --- a/packages/txs-tracer-core/CHANGELOG.md +++ /dev/null @@ -1,32 +0,0 @@ -# 1.0.0-next.1 (2023-03-08) - - -### Bug Fixes - -* **txs-tracer-core:** :bug: fix increase step ([dd1ac1e](https://github.com/nabla-studio/cosmos-txs-tracer/commit/dd1ac1eb29e7f978bdc70784c1c4ca736e3fbae4)) -* **txs-tracer-core:** :bug: fix result assign ([7a23c8a](https://github.com/nabla-studio/cosmos-txs-tracer/commit/7a23c8ac3b578c6af396a45751c7c3021cdb7ad6)) - - -### Features - -* :sparkles: add nx-semantic-release setup ([64e4acc](https://github.com/nabla-studio/cosmos-txs-tracer/commit/64e4accb659459d08b9b6dd46aa452a89f30984e)) -* **demo-app-cosmos:** :sparkles: add cosmos demo app ([3c82dbf](https://github.com/nabla-studio/cosmos-txs-tracer/commit/3c82dbfcd8efe8b50037c5e785d70ae752d54ff0)) -* **demo-app-cosmos:** :sparkles: add ibc transfer example ([c093315](https://github.com/nabla-studio/cosmos-txs-tracer/commit/c0933152b60ec0a0fd8308c3d3806e001f8a12a7)) -* **demo-app-cosmos:** :sparkles: add rpc getter from registry ([d310cae](https://github.com/nabla-studio/cosmos-txs-tracer/commit/d310cae3653e0c0047b98e9acf3689976199f369)) -* **demo-app-cosmos:** :sparkles: add send trace example ([ed08561](https://github.com/nabla-studio/cosmos-txs-tracer/commit/ed085613db3ebd3c1fe9fc3e0c4e40fa02d19413)) -* **demo-app:** :sparkles: add demo app example ([4886ad8](https://github.com/nabla-studio/cosmos-txs-tracer/commit/4886ad8e673014ad5af9bcb32f8dc28c79841381)) -* **demo-app:** :sparkles: add tx trace example ([a53bad7](https://github.com/nabla-studio/cosmos-txs-tracer/commit/a53bad7514fd403978fcf060b244550196ef084e)) -* **txs-tracer-core:** :sparkles: add basic txs trace machine ([e36a645](https://github.com/nabla-studio/cosmos-txs-tracer/commit/e36a645cf0f8a0ce1a8b4fe74f9c52b645c9736d)) -* **txs-tracer-core:** :sparkles: add conversion from stream to promise ([b17444a](https://github.com/nabla-studio/cosmos-txs-tracer/commit/b17444a67f76d45a96bef1b3c102c5e49a1c16f8)) -* **txs-tracer-core:** :sparkles: add disconnect on socket errors ([2cb93a9](https://github.com/nabla-studio/cosmos-txs-tracer/commit/2cb93a94ed9dd96ad44a94d4f0390ea2911711cc)) -* **txs-tracer-core:** :sparkles: add ibc trace machine ([3c8f48c](https://github.com/nabla-studio/cosmos-txs-tracer/commit/3c8f48c6b6c860c1040863a3a9daeb92fd9e660b)) -* **txs-tracer-core:** :sparkles: add query payload for trace event ([30f5427](https://github.com/nabla-studio/cosmos-txs-tracer/commit/30f5427e29ec494ff004632da6207c8778c125b4)) -* **txs-tracer-core:** :sparkles: add search tx ([365feaa](https://github.com/nabla-studio/cosmos-txs-tracer/commit/365feaa4b82a1cad0a3a2355c25d3c76e7243097)) -* **txs-tracer-core:** :sparkles: add socket timeout state handler ([918b60c](https://github.com/nabla-studio/cosmos-txs-tracer/commit/918b60c42ffe27719a764cf694077db337840701)) -* **txs-tracer-core:** :sparkles: add tendermint client for websocket ([cecc439](https://github.com/nabla-studio/cosmos-txs-tracer/commit/cecc43904fe443450512ca3fc507cace1cd15eb3)) -* **txs-tracer-core:** :sparkles: add websocket url on trace event ([403658f](https://github.com/nabla-studio/cosmos-txs-tracer/commit/403658f29a8b09cfe641d4bf8e87f6e911f1c06b)) -* **txs-tracer-core:** :sparkles: improve error handling ([ef17dc8](https://github.com/nabla-studio/cosmos-txs-tracer/commit/ef17dc8bb65a165cf7ea21c6578beb68a9ff20c8)) -* **txs-tracer-core:** :sparkles: improve tx trace assign event ([39d4925](https://github.com/nabla-studio/cosmos-txs-tracer/commit/39d4925d60c9dd4735ff0cddee9c7fb29c873750)) -* **txs-tracer-core:** :sparkles: improve tx trace machine ([31c6000](https://github.com/nabla-studio/cosmos-txs-tracer/commit/31c6000d698694348e8530d98ef76a6aaa91fe77)) -* **txs-tracer-core:** :sparkles: improve types ([503e1dd](https://github.com/nabla-studio/cosmos-txs-tracer/commit/503e1dd8ab41f1eeaa3a2cbe03f283a30412ec39)) -* **txs-tracer-core:** :wrench: increase default timeout values ([c7d9309](https://github.com/nabla-studio/cosmos-txs-tracer/commit/c7d9309f007180f2fe8df231c7c945977aa38b13)) diff --git a/packages/txs-tracer-core/package.json b/packages/txs-tracer-core/package.json index b037629..113cbee 100644 --- a/packages/txs-tracer-core/package.json +++ b/packages/txs-tracer-core/package.json @@ -1,14 +1,17 @@ { "name": "@nabla-studio/txs-tracer-core", - "version": "1.0.0-next.1", - "description": "A series of state machines useful for tracking transactions for the Cosmos blockchain ecosystem", + "version": "0.0.0-semantic-release", + "description": "A series of state machines useful for tracking transactions for the Cosmos blockchain ecosystem", "type": "module", - "repository": { - "type": "git", - "url": "https://github.com/nabla-studio/cosmos-txs-tracer.git", - "directory": "packages/txs-tracer-core" - }, - "bugs": { - "url": "https://github.com/nabla-studio/cosmos-txs-tracer/issues" - } + "repository": { + "type": "git", + "url": "https://github.com/nabla-studio/cosmos-txs-tracer.git", + "directory": "packages/txs-tracer-core" + }, + "bugs": { + "url": "https://github.com/nabla-studio/cosmos-txs-tracer/issues" + }, + "publishConfig": { + "access": "public" + } } From d24926a727872f872442c1fc8c25147d33e97e1a Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Wed, 8 Mar 2023 15:49:07 +0000 Subject: [PATCH 11/46] chore(release): 1.0.0-next.1 [skip ci] # 1.0.0-next.1 (2023-03-08) ### Bug Fixes * **txs-tracer-core:** :bug: fix increase step ([dd1ac1e](https://github.com/nabla-studio/cosmos-txs-tracer/commit/dd1ac1eb29e7f978bdc70784c1c4ca736e3fbae4)) * **txs-tracer-core:** :bug: fix result assign ([7a23c8a](https://github.com/nabla-studio/cosmos-txs-tracer/commit/7a23c8ac3b578c6af396a45751c7c3021cdb7ad6)) ### Features * :sparkles: add nx-semantic-release setup ([64e4acc](https://github.com/nabla-studio/cosmos-txs-tracer/commit/64e4accb659459d08b9b6dd46aa452a89f30984e)) * **demo-app-cosmos:** :sparkles: add cosmos demo app ([3c82dbf](https://github.com/nabla-studio/cosmos-txs-tracer/commit/3c82dbfcd8efe8b50037c5e785d70ae752d54ff0)) * **demo-app-cosmos:** :sparkles: add ibc transfer example ([c093315](https://github.com/nabla-studio/cosmos-txs-tracer/commit/c0933152b60ec0a0fd8308c3d3806e001f8a12a7)) * **demo-app-cosmos:** :sparkles: add rpc getter from registry ([d310cae](https://github.com/nabla-studio/cosmos-txs-tracer/commit/d310cae3653e0c0047b98e9acf3689976199f369)) * **demo-app-cosmos:** :sparkles: add send trace example ([ed08561](https://github.com/nabla-studio/cosmos-txs-tracer/commit/ed085613db3ebd3c1fe9fc3e0c4e40fa02d19413)) * **demo-app:** :sparkles: add demo app example ([4886ad8](https://github.com/nabla-studio/cosmos-txs-tracer/commit/4886ad8e673014ad5af9bcb32f8dc28c79841381)) * **demo-app:** :sparkles: add tx trace example ([a53bad7](https://github.com/nabla-studio/cosmos-txs-tracer/commit/a53bad7514fd403978fcf060b244550196ef084e)) * **txs-tracer-core:** :sparkles: add basic txs trace machine ([e36a645](https://github.com/nabla-studio/cosmos-txs-tracer/commit/e36a645cf0f8a0ce1a8b4fe74f9c52b645c9736d)) * **txs-tracer-core:** :sparkles: add conversion from stream to promise ([b17444a](https://github.com/nabla-studio/cosmos-txs-tracer/commit/b17444a67f76d45a96bef1b3c102c5e49a1c16f8)) * **txs-tracer-core:** :sparkles: add disconnect on socket errors ([2cb93a9](https://github.com/nabla-studio/cosmos-txs-tracer/commit/2cb93a94ed9dd96ad44a94d4f0390ea2911711cc)) * **txs-tracer-core:** :sparkles: add ibc trace machine ([3c8f48c](https://github.com/nabla-studio/cosmos-txs-tracer/commit/3c8f48c6b6c860c1040863a3a9daeb92fd9e660b)) * **txs-tracer-core:** :sparkles: add query payload for trace event ([30f5427](https://github.com/nabla-studio/cosmos-txs-tracer/commit/30f5427e29ec494ff004632da6207c8778c125b4)) * **txs-tracer-core:** :sparkles: add search tx ([365feaa](https://github.com/nabla-studio/cosmos-txs-tracer/commit/365feaa4b82a1cad0a3a2355c25d3c76e7243097)) * **txs-tracer-core:** :sparkles: add socket timeout state handler ([918b60c](https://github.com/nabla-studio/cosmos-txs-tracer/commit/918b60c42ffe27719a764cf694077db337840701)) * **txs-tracer-core:** :sparkles: add tendermint client for websocket ([cecc439](https://github.com/nabla-studio/cosmos-txs-tracer/commit/cecc43904fe443450512ca3fc507cace1cd15eb3)) * **txs-tracer-core:** :sparkles: add websocket url on trace event ([403658f](https://github.com/nabla-studio/cosmos-txs-tracer/commit/403658f29a8b09cfe641d4bf8e87f6e911f1c06b)) * **txs-tracer-core:** :sparkles: improve error handling ([ef17dc8](https://github.com/nabla-studio/cosmos-txs-tracer/commit/ef17dc8bb65a165cf7ea21c6578beb68a9ff20c8)) * **txs-tracer-core:** :sparkles: improve tx trace assign event ([39d4925](https://github.com/nabla-studio/cosmos-txs-tracer/commit/39d4925d60c9dd4735ff0cddee9c7fb29c873750)) * **txs-tracer-core:** :sparkles: improve tx trace machine ([31c6000](https://github.com/nabla-studio/cosmos-txs-tracer/commit/31c6000d698694348e8530d98ef76a6aaa91fe77)) * **txs-tracer-core:** :sparkles: improve types ([503e1dd](https://github.com/nabla-studio/cosmos-txs-tracer/commit/503e1dd8ab41f1eeaa3a2cbe03f283a30412ec39)) * **txs-tracer-core:** :wrench: increase default timeout values ([c7d9309](https://github.com/nabla-studio/cosmos-txs-tracer/commit/c7d9309f007180f2fe8df231c7c945977aa38b13)) --- packages/txs-tracer-core/CHANGELOG.md | 32 +++++++++++++++++++++++++++ packages/txs-tracer-core/package.json | 26 +++++++++++----------- 2 files changed, 45 insertions(+), 13 deletions(-) create mode 100644 packages/txs-tracer-core/CHANGELOG.md diff --git a/packages/txs-tracer-core/CHANGELOG.md b/packages/txs-tracer-core/CHANGELOG.md new file mode 100644 index 0000000..85fd0ab --- /dev/null +++ b/packages/txs-tracer-core/CHANGELOG.md @@ -0,0 +1,32 @@ +# 1.0.0-next.1 (2023-03-08) + + +### Bug Fixes + +* **txs-tracer-core:** :bug: fix increase step ([dd1ac1e](https://github.com/nabla-studio/cosmos-txs-tracer/commit/dd1ac1eb29e7f978bdc70784c1c4ca736e3fbae4)) +* **txs-tracer-core:** :bug: fix result assign ([7a23c8a](https://github.com/nabla-studio/cosmos-txs-tracer/commit/7a23c8ac3b578c6af396a45751c7c3021cdb7ad6)) + + +### Features + +* :sparkles: add nx-semantic-release setup ([64e4acc](https://github.com/nabla-studio/cosmos-txs-tracer/commit/64e4accb659459d08b9b6dd46aa452a89f30984e)) +* **demo-app-cosmos:** :sparkles: add cosmos demo app ([3c82dbf](https://github.com/nabla-studio/cosmos-txs-tracer/commit/3c82dbfcd8efe8b50037c5e785d70ae752d54ff0)) +* **demo-app-cosmos:** :sparkles: add ibc transfer example ([c093315](https://github.com/nabla-studio/cosmos-txs-tracer/commit/c0933152b60ec0a0fd8308c3d3806e001f8a12a7)) +* **demo-app-cosmos:** :sparkles: add rpc getter from registry ([d310cae](https://github.com/nabla-studio/cosmos-txs-tracer/commit/d310cae3653e0c0047b98e9acf3689976199f369)) +* **demo-app-cosmos:** :sparkles: add send trace example ([ed08561](https://github.com/nabla-studio/cosmos-txs-tracer/commit/ed085613db3ebd3c1fe9fc3e0c4e40fa02d19413)) +* **demo-app:** :sparkles: add demo app example ([4886ad8](https://github.com/nabla-studio/cosmos-txs-tracer/commit/4886ad8e673014ad5af9bcb32f8dc28c79841381)) +* **demo-app:** :sparkles: add tx trace example ([a53bad7](https://github.com/nabla-studio/cosmos-txs-tracer/commit/a53bad7514fd403978fcf060b244550196ef084e)) +* **txs-tracer-core:** :sparkles: add basic txs trace machine ([e36a645](https://github.com/nabla-studio/cosmos-txs-tracer/commit/e36a645cf0f8a0ce1a8b4fe74f9c52b645c9736d)) +* **txs-tracer-core:** :sparkles: add conversion from stream to promise ([b17444a](https://github.com/nabla-studio/cosmos-txs-tracer/commit/b17444a67f76d45a96bef1b3c102c5e49a1c16f8)) +* **txs-tracer-core:** :sparkles: add disconnect on socket errors ([2cb93a9](https://github.com/nabla-studio/cosmos-txs-tracer/commit/2cb93a94ed9dd96ad44a94d4f0390ea2911711cc)) +* **txs-tracer-core:** :sparkles: add ibc trace machine ([3c8f48c](https://github.com/nabla-studio/cosmos-txs-tracer/commit/3c8f48c6b6c860c1040863a3a9daeb92fd9e660b)) +* **txs-tracer-core:** :sparkles: add query payload for trace event ([30f5427](https://github.com/nabla-studio/cosmos-txs-tracer/commit/30f5427e29ec494ff004632da6207c8778c125b4)) +* **txs-tracer-core:** :sparkles: add search tx ([365feaa](https://github.com/nabla-studio/cosmos-txs-tracer/commit/365feaa4b82a1cad0a3a2355c25d3c76e7243097)) +* **txs-tracer-core:** :sparkles: add socket timeout state handler ([918b60c](https://github.com/nabla-studio/cosmos-txs-tracer/commit/918b60c42ffe27719a764cf694077db337840701)) +* **txs-tracer-core:** :sparkles: add tendermint client for websocket ([cecc439](https://github.com/nabla-studio/cosmos-txs-tracer/commit/cecc43904fe443450512ca3fc507cace1cd15eb3)) +* **txs-tracer-core:** :sparkles: add websocket url on trace event ([403658f](https://github.com/nabla-studio/cosmos-txs-tracer/commit/403658f29a8b09cfe641d4bf8e87f6e911f1c06b)) +* **txs-tracer-core:** :sparkles: improve error handling ([ef17dc8](https://github.com/nabla-studio/cosmos-txs-tracer/commit/ef17dc8bb65a165cf7ea21c6578beb68a9ff20c8)) +* **txs-tracer-core:** :sparkles: improve tx trace assign event ([39d4925](https://github.com/nabla-studio/cosmos-txs-tracer/commit/39d4925d60c9dd4735ff0cddee9c7fb29c873750)) +* **txs-tracer-core:** :sparkles: improve tx trace machine ([31c6000](https://github.com/nabla-studio/cosmos-txs-tracer/commit/31c6000d698694348e8530d98ef76a6aaa91fe77)) +* **txs-tracer-core:** :sparkles: improve types ([503e1dd](https://github.com/nabla-studio/cosmos-txs-tracer/commit/503e1dd8ab41f1eeaa3a2cbe03f283a30412ec39)) +* **txs-tracer-core:** :wrench: increase default timeout values ([c7d9309](https://github.com/nabla-studio/cosmos-txs-tracer/commit/c7d9309f007180f2fe8df231c7c945977aa38b13)) diff --git a/packages/txs-tracer-core/package.json b/packages/txs-tracer-core/package.json index 113cbee..5202832 100644 --- a/packages/txs-tracer-core/package.json +++ b/packages/txs-tracer-core/package.json @@ -1,17 +1,17 @@ { "name": "@nabla-studio/txs-tracer-core", - "version": "0.0.0-semantic-release", - "description": "A series of state machines useful for tracking transactions for the Cosmos blockchain ecosystem", + "version": "1.0.0-next.1", + "description": "A series of state machines useful for tracking transactions for the Cosmos blockchain ecosystem", "type": "module", - "repository": { - "type": "git", - "url": "https://github.com/nabla-studio/cosmos-txs-tracer.git", - "directory": "packages/txs-tracer-core" - }, - "bugs": { - "url": "https://github.com/nabla-studio/cosmos-txs-tracer/issues" - }, - "publishConfig": { - "access": "public" - } + "repository": { + "type": "git", + "url": "https://github.com/nabla-studio/cosmos-txs-tracer.git", + "directory": "packages/txs-tracer-core" + }, + "bugs": { + "url": "https://github.com/nabla-studio/cosmos-txs-tracer/issues" + }, + "publishConfig": { + "access": "public" + } } From 2936fb4ac2fe90fe00bea99b437951200b8575f2 Mon Sep 17 00:00:00 2001 From: DavideSegullo Date: Wed, 8 Mar 2023 16:57:08 +0100 Subject: [PATCH 12/46] ci: :green_heart: add commitlint --- .husky/commit-msg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.husky/commit-msg b/.husky/commit-msg index 26df332..e8511ea 100755 --- a/.husky/commit-msg +++ b/.husky/commit-msg @@ -1,4 +1,4 @@ #!/bin/sh . "$(dirname "$0")/_/husky.sh" -#npx --no-install commitlint --edit $1 +npx --no-install commitlint --edit $1 From 94e326f1028f7b03fed7232405e1eeb30ac12018 Mon Sep 17 00:00:00 2001 From: DavideSegullo Date: Thu, 6 Apr 2023 19:12:10 +0200 Subject: [PATCH 13/46] feat(txs-tracer-core): :sparkles: add ibc trace data result --- .../ibc-trace-machine/ibc-trace-machine.ts | 14 ++++++++++++++ .../txs-tracer-core/src/lib/types/ibc-trace.ts | 17 +++++++++++++++++ 2 files changed, 31 insertions(+) diff --git a/packages/txs-tracer-core/src/lib/machines/ibc-trace-machine/ibc-trace-machine.ts b/packages/txs-tracer-core/src/lib/machines/ibc-trace-machine/ibc-trace-machine.ts index a46a7cb..c07f263 100644 --- a/packages/txs-tracer-core/src/lib/machines/ibc-trace-machine/ibc-trace-machine.ts +++ b/packages/txs-tracer-core/src/lib/machines/ibc-trace-machine/ibc-trace-machine.ts @@ -11,6 +11,7 @@ import { IBCTraceAckEventPayload, IBCTraceContext, IBCTraceEvents, + IBCTraceFinalState, TxTraceDataResponse, TxTraceFinalState, } from '../../types'; @@ -103,6 +104,11 @@ export const ibcTraceMachine = createMachine( on: { TRACE_ACK: { target: 'acknowledge_packet', + actions: assign({ + ackTx: (_, event) => { + return event.data.tx; + }, + }), }, ON_ERROR: { target: 'error', @@ -207,9 +213,17 @@ export const ibcTraceMachine = createMachine( complete: { entry: ['increaseStep'], type: 'final', + data: ctx => ({ + state: IBCTraceFinalState.Complete, + tx: ctx.ackTx, + }), }, error: { type: 'final', + data: ctx => ({ + state: IBCTraceFinalState.Error, + errorCode: ctx.errorCode, + }), }, }, schema: { diff --git a/packages/txs-tracer-core/src/lib/types/ibc-trace.ts b/packages/txs-tracer-core/src/lib/types/ibc-trace.ts index 5fe687c..d212ec5 100644 --- a/packages/txs-tracer-core/src/lib/types/ibc-trace.ts +++ b/packages/txs-tracer-core/src/lib/types/ibc-trace.ts @@ -12,6 +12,8 @@ export type IBCTraceContext = Omit< loading: boolean; currentStep: number; errorCode?: number; + txs?: IndexedTx; + ackTx?: IndexedTx; }; export type IBCTraceEventPayload = TxTraceEventPayload; @@ -25,6 +27,21 @@ export type IBCTraceAckEventPayload = { tx?: IndexedTx; }; +export const IBCTraceFinalState = { + Complete: 'complete', + Error: 'error', +} as const; + +export const IBCTraceState = { + SendPacket: 'send_packet', + AcknowledgePacket: 'acknowledge_packet', + Idle: 'idle', + ...IBCTraceFinalState, +} as const; + +export type IBCTraceFinalStates = + (typeof IBCTraceFinalState)[keyof typeof IBCTraceFinalState]; + export type IBCTraceEvents = | { type: 'TRACE'; data: IBCTraceEventPayload } | { type: 'TRACE_ACK'; data: IBCTraceAckEventPayload } From 6a7d98f7f094c78dd7ec4f7b41703ae8fcef7b31 Mon Sep 17 00:00:00 2001 From: DavideSegullo Date: Fri, 7 Apr 2023 14:12:05 +0200 Subject: [PATCH 14/46] feat(demo-app-cosmos): :arrow_up: upgrade chain-registry deps --- package.json | 2 +- pnpm-lock.yaml | 6267 ++++++++++++++++++++++++------------------------ 2 files changed, 3112 insertions(+), 3157 deletions(-) diff --git a/package.json b/package.json index 40aad49..c080c63 100644 --- a/package.json +++ b/package.json @@ -32,7 +32,7 @@ "@nrwl/next": "^15.8.5", "@xstate/react": "^3.2.1", "buffer": "^6.0.3", - "chain-registry": "^1.9.0", + "chain-registry": "^1.10.0", "framer-motion": "^10.0.1", "long": "^5.2.1", "next": "^13.2.3", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ef598b2..ce44749 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,214 +1,300 @@ -lockfileVersion: 5.4 - -specifiers: - '@babel/core': ^7.21.0 - '@babel/preset-react': ^7.14.5 - '@chain-registry/types': ^0.14.0 - '@chakra-ui/form-control': ^2.0.17 - '@chakra-ui/icon': ^3.0.15 - '@chakra-ui/layout': ^2.1.16 - '@chakra-ui/media-query': ^3.2.12 - '@chakra-ui/menu': ^2.1.9 - '@chakra-ui/react': ^2.5.1 - '@chakra-ui/spinner': ^2.0.12 - '@chakra-ui/system': ^2.5.1 - '@commitlint/cli': ^17.0.0 - '@commitlint/config-conventional': ^17.0.0 - '@cosmjs/amino': ^0.29.5 - '@cosmjs/cosmwasm-stargate': ^0.29.5 - '@cosmjs/encoding': ^0.29.5 - '@cosmjs/math': ^0.29.5 - '@cosmjs/proto-signing': ^0.29.5 - '@cosmjs/stargate': ^0.29.5 - '@cosmjs/tendermint-rpc': ^0.29.5 - '@cosmos-kit/core': ^1.1.4 - '@cosmos-kit/keplr': ^0.33.4 - '@cosmos-kit/react': ^1.3.1 - '@emotion/babel-plugin': 11.10.6 - '@emotion/react': 11.10.6 - '@emotion/server': 11.10.0 - '@emotion/styled': 11.10.6 - '@nrwl/cypress': 15.8.5 - '@nrwl/eslint-plugin-nx': 15.7.2 - '@nrwl/jest': 15.8.5 - '@nrwl/js': 15.8.5 - '@nrwl/linter': 15.7.2 - '@nrwl/next': ^15.8.5 - '@nrwl/nx-cloud': latest - '@nrwl/react': 15.8.5 - '@nrwl/vite': 15.7.2 - '@nrwl/workspace': 15.7.2 - '@testing-library/react': 14.0.0 - '@theunderscorer/nx-semantic-release': ^2.0.1 - '@types/jest': ^29.4.0 - '@types/node': 18.14.2 - '@types/react': 18.0.28 - '@types/react-dom': 18.0.11 - '@types/react-router-dom': 5.3.3 - '@typescript-eslint/eslint-plugin': ^5.36.1 - '@typescript-eslint/parser': ^5.36.1 - '@vitejs/plugin-react': ^3.0.0 - '@vitest/coverage-c8': ~0.25.8 - '@vitest/ui': ^0.25.8 - '@xstate/react': ^3.2.1 - babel-jest: ^29.4.1 - buffer: ^6.0.3 - chain-registry: ^1.9.0 - cosmjs-types: ^0.6.1 - cypress: ^12.2.0 - eslint: ~8.15.0 - eslint-config-next: 13.1.1 - eslint-config-prettier: 8.1.0 - eslint-plugin-cypress: ^2.10.3 - eslint-plugin-import: 2.27.5 - eslint-plugin-jsx-a11y: 6.7.1 - eslint-plugin-react: 7.32.2 - eslint-plugin-react-hooks: 4.6.0 - framer-motion: ^10.0.1 - husky: ^8.0.0 - jest: ^29.4.1 - jest-environment-jsdom: ^29.4.1 - jsdom: ~20.0.3 - long: ^5.2.1 - next: ^13.2.3 - nx: 15.7.2 - osmojs: 14.0.0-rc.0 - prettier: ^2.6.2 - react: 18.2.0 - react-dom: 18.2.0 - react-router-dom: 6.8.1 - react-test-renderer: 18.2.0 - ts-jest: ^29.0.5 - ts-node: 10.9.1 - tslib: ^2.3.0 - typescript: ~4.9.5 - vite: ^4.0.1 - vite-plugin-eslint: ^1.8.1 - vite-tsconfig-paths: ^4.0.2 - vitest: ^0.25.8 - webpack: ^5.75.0 - xstate: ^4.37.0 - xstream: ^11.14.0 +lockfileVersion: '6.0' dependencies: - '@babel/core': 7.21.0 - '@chakra-ui/form-control': 2.0.17_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/icon': 3.0.15_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/layout': 2.1.16_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/media-query': 3.2.12_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/menu': 2.1.9_rbqan4k27g4r7dhta4dxhf6vse - '@chakra-ui/react': 2.5.1_llidv3byuxn3l2nsibklt32qgu - '@chakra-ui/spinner': 2.0.12_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba - '@cosmjs/amino': 0.29.5 - '@cosmjs/cosmwasm-stargate': 0.29.5 - '@cosmjs/encoding': 0.29.5 - '@cosmjs/math': 0.29.5 - '@cosmjs/proto-signing': 0.29.5 - '@cosmjs/stargate': 0.29.5 - '@cosmjs/tendermint-rpc': 0.29.5 - '@cosmos-kit/core': 1.1.4_ach3gg3rjjnrrttgxbpr4latru - '@cosmos-kit/keplr': 0.33.4_ach3gg3rjjnrrttgxbpr4latru - '@cosmos-kit/react': 1.3.1_qu2lxkbrpqsiyhxwrb2fllwbiq - '@emotion/react': 11.10.6_pmekkgnqduwlme35zpnqhenc34 - '@emotion/server': 11.10.0 - '@emotion/styled': 11.10.6_oouaibmszuch5k64ms7uxp2aia - '@nrwl/next': 15.8.5_6ejl4ke6ostkqvscdn3ibv3biu - '@xstate/react': 3.2.1_o53l3h553defh3ruq4yellezcm - buffer: 6.0.3 - chain-registry: 1.9.0 - framer-motion: 10.0.1_biqbaboplfbrettd7655fr4n2y - long: 5.2.1 - next: 13.2.3_6m24vuloj5ihw4zc5lbsktc4fu - osmojs: 14.0.0-rc.0 - react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 - react-router-dom: 6.8.1_biqbaboplfbrettd7655fr4n2y - tslib: 2.5.0 - webpack: 5.75.0 - xstate: 4.37.0 - xstream: 11.14.0 + '@babel/core': + specifier: ^7.21.0 + version: 7.21.0 + '@chakra-ui/form-control': + specifier: ^2.0.17 + version: 2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/icon': + specifier: ^3.0.15 + version: 3.0.15(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/layout': + specifier: ^2.1.16 + version: 2.1.16(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/media-query': + specifier: ^3.2.12 + version: 3.2.12(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/menu': + specifier: ^2.1.9 + version: 2.1.9(@chakra-ui/system@2.5.1)(framer-motion@10.0.1)(react@18.2.0) + '@chakra-ui/react': + specifier: ^2.5.1 + version: 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(@types/react@18.0.28)(framer-motion@10.0.1)(react-dom@18.2.0)(react@18.2.0) + '@chakra-ui/spinner': + specifier: ^2.0.12 + version: 2.0.12(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/system': + specifier: ^2.5.1 + version: 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) + '@cosmjs/amino': + specifier: ^0.29.5 + version: 0.29.5 + '@cosmjs/cosmwasm-stargate': + specifier: ^0.29.5 + version: 0.29.5 + '@cosmjs/encoding': + specifier: ^0.29.5 + version: 0.29.5 + '@cosmjs/math': + specifier: ^0.29.5 + version: 0.29.5 + '@cosmjs/proto-signing': + specifier: ^0.29.5 + version: 0.29.5 + '@cosmjs/stargate': + specifier: ^0.29.5 + version: 0.29.5 + '@cosmjs/tendermint-rpc': + specifier: ^0.29.5 + version: 0.29.5 + '@cosmos-kit/core': + specifier: ^1.1.4 + version: 1.1.4(@cosmjs/amino@0.29.5)(@cosmjs/cosmwasm-stargate@0.29.5)(@cosmjs/proto-signing@0.29.5)(@cosmjs/stargate@0.29.5)(@types/node@18.14.2)(cosmjs-types@0.6.1)(typescript@4.9.5) + '@cosmos-kit/keplr': + specifier: ^0.33.4 + version: 0.33.4(@cosmjs/amino@0.29.5)(@cosmjs/cosmwasm-stargate@0.29.5)(@cosmjs/proto-signing@0.29.5)(@cosmjs/stargate@0.29.5)(@types/node@18.14.2)(cosmjs-types@0.6.1)(typescript@4.9.5) + '@cosmos-kit/react': + specifier: ^1.3.1 + version: 1.3.1(@chakra-ui/form-control@2.0.17)(@chakra-ui/icon@3.0.15)(@chakra-ui/layout@2.1.16)(@chakra-ui/media-query@3.2.12)(@chakra-ui/menu@2.1.9)(@chakra-ui/spinner@2.0.12)(@chakra-ui/system@2.5.1)(@cosmjs/amino@0.29.5)(@cosmjs/cosmwasm-stargate@0.29.5)(@cosmjs/proto-signing@0.29.5)(@cosmjs/stargate@0.29.5)(@types/node@18.14.2)(@types/react@18.0.28)(cosmjs-types@0.6.1)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5) + '@emotion/react': + specifier: 11.10.6 + version: 11.10.6(@types/react@18.0.28)(react@18.2.0) + '@emotion/server': + specifier: 11.10.0 + version: 11.10.0 + '@emotion/styled': + specifier: 11.10.6 + version: 11.10.6(@emotion/react@11.10.6)(@types/react@18.0.28)(react@18.2.0) + '@nrwl/next': + specifier: ^15.8.5 + version: 15.8.5(@babel/core@7.21.0)(@types/node@18.14.2)(cypress@12.7.0)(eslint@8.15.0)(next@13.2.3)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5)(webpack@5.75.0) + '@xstate/react': + specifier: ^3.2.1 + version: 3.2.1(@types/react@18.0.28)(react@18.2.0)(xstate@4.37.0) + buffer: + specifier: ^6.0.3 + version: 6.0.3 + chain-registry: + specifier: ^1.10.0 + version: 1.10.0 + framer-motion: + specifier: ^10.0.1 + version: 10.0.1(react-dom@18.2.0)(react@18.2.0) + long: + specifier: ^5.2.1 + version: 5.2.1 + next: + specifier: ^13.2.3 + version: 13.2.3(@babel/core@7.21.0)(react-dom@18.2.0)(react@18.2.0) + osmojs: + specifier: 14.0.0-rc.0 + version: 14.0.0-rc.0 + react: + specifier: 18.2.0 + version: 18.2.0 + react-dom: + specifier: 18.2.0 + version: 18.2.0(react@18.2.0) + react-router-dom: + specifier: 6.8.1 + version: 6.8.1(react-dom@18.2.0)(react@18.2.0) + tslib: + specifier: ^2.3.0 + version: 2.5.0 + webpack: + specifier: ^5.75.0 + version: 5.75.0 + xstate: + specifier: ^4.37.0 + version: 4.37.0 + xstream: + specifier: ^11.14.0 + version: 11.14.0 devDependencies: - '@babel/preset-react': 7.18.6_@babel+core@7.21.0 - '@chain-registry/types': 0.14.0 - '@commitlint/cli': 17.4.4 - '@commitlint/config-conventional': 17.4.4 - '@emotion/babel-plugin': 11.10.6 - '@nrwl/cypress': 15.8.5_6poz2htxic2oghbdep4xcarnry - '@nrwl/eslint-plugin-nx': 15.7.2_ks45u5mdh5t523vmznpmfvudnu - '@nrwl/jest': 15.8.5_rop5dzwp43jpuzviyddoowhixq - '@nrwl/js': 15.8.5_wi7kwhfbxlhncdveqfqfnunpki - '@nrwl/linter': 15.7.2_uf4p4dfxgfahjoc2ghcxcg6qle - '@nrwl/nx-cloud': 15.1.1 - '@nrwl/react': 15.8.5_wi7kwhfbxlhncdveqfqfnunpki - '@nrwl/vite': 15.7.2_o7cnvsl7edw55qamxhtupdwecm - '@nrwl/workspace': 15.7.2_xbutml5teg6536gsdu4z5mzgvm - '@testing-library/react': 14.0.0_biqbaboplfbrettd7655fr4n2y - '@theunderscorer/nx-semantic-release': 2.0.1_nx@15.7.2+typescript@4.9.5 - '@types/jest': 29.4.0 - '@types/node': 18.14.2 - '@types/react': 18.0.28 - '@types/react-dom': 18.0.11 - '@types/react-router-dom': 5.3.3 - '@typescript-eslint/eslint-plugin': 5.53.0_on2hokawovhpujayhfxxzorgmi - '@typescript-eslint/parser': 5.53.0_hx5tgzcbd2ycqgjduqhliuc3jm - '@vitejs/plugin-react': 3.1.0_vite@4.1.4 - '@vitest/coverage-c8': 0.25.8_eetf2xjpdhuqcs2dx4ndfgw7iq - '@vitest/ui': 0.25.8 - babel-jest: 29.4.3_@babel+core@7.21.0 - cosmjs-types: 0.6.1 - cypress: 12.7.0 - eslint: 8.15.0 - eslint-config-next: 13.1.1_hx5tgzcbd2ycqgjduqhliuc3jm - eslint-config-prettier: 8.1.0_eslint@8.15.0 - eslint-plugin-cypress: 2.12.1_eslint@8.15.0 - eslint-plugin-import: 2.27.5_nfedycquve3k2nl747u4e5phru - eslint-plugin-jsx-a11y: 6.7.1_eslint@8.15.0 - eslint-plugin-react: 7.32.2_eslint@8.15.0 - eslint-plugin-react-hooks: 4.6.0_eslint@8.15.0 - husky: 8.0.3 - jest: 29.4.3_jboh4c3iv3wxuja4m36ecyac7e - jest-environment-jsdom: 29.4.3 - jsdom: 20.0.3 - nx: 15.7.2 - prettier: 2.8.4 - react-test-renderer: 18.2.0_react@18.2.0 - ts-jest: 29.0.5_uvh2lfmfmkxl7pemqrjflcid5y - ts-node: 10.9.1_ellgaeuoqnti3hful2ny2iugba - typescript: 4.9.5 - vite: 4.1.4_@types+node@18.14.2 - vite-plugin-eslint: 1.8.1_eslint@8.15.0+vite@4.1.4 - vite-tsconfig-paths: 4.0.5_typescript@4.9.5 - vitest: 0.25.8_eetf2xjpdhuqcs2dx4ndfgw7iq + '@babel/preset-react': + specifier: ^7.14.5 + version: 7.18.6(@babel/core@7.21.0) + '@chain-registry/types': + specifier: ^0.14.0 + version: 0.14.0 + '@commitlint/cli': + specifier: ^17.0.0 + version: 17.4.4 + '@commitlint/config-conventional': + specifier: ^17.0.0 + version: 17.4.4 + '@emotion/babel-plugin': + specifier: 11.10.6 + version: 11.10.6 + '@nrwl/cypress': + specifier: 15.8.5 + version: 15.8.5(cypress@12.7.0)(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5) + '@nrwl/eslint-plugin-nx': + specifier: 15.7.2 + version: 15.7.2(@typescript-eslint/parser@5.53.0)(eslint-config-prettier@8.1.0)(eslint@8.15.0)(nx@15.7.2)(typescript@4.9.5) + '@nrwl/jest': + specifier: 15.8.5 + version: 15.8.5(@types/node@18.14.2)(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(ts-node@10.9.1)(typescript@4.9.5) + '@nrwl/js': + specifier: 15.8.5 + version: 15.8.5(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5) + '@nrwl/linter': + specifier: 15.7.2 + version: 15.7.2(eslint@8.15.0)(nx@15.7.2)(typescript@4.9.5) + '@nrwl/nx-cloud': + specifier: latest + version: 15.3.5 + '@nrwl/react': + specifier: 15.8.5 + version: 15.8.5(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5) + '@nrwl/vite': + specifier: 15.7.2 + version: 15.7.2(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5)(vite@4.1.4)(vitest@0.25.8) + '@nrwl/workspace': + specifier: 15.7.2 + version: 15.7.2(eslint@8.15.0)(prettier@2.8.4)(typescript@4.9.5) + '@testing-library/react': + specifier: 14.0.0 + version: 14.0.0(react-dom@18.2.0)(react@18.2.0) + '@theunderscorer/nx-semantic-release': + specifier: ^2.0.1 + version: 2.0.1(nx@15.7.2)(typescript@4.9.5) + '@types/jest': + specifier: ^29.4.0 + version: 29.4.0 + '@types/node': + specifier: 18.14.2 + version: 18.14.2 + '@types/react': + specifier: 18.0.28 + version: 18.0.28 + '@types/react-dom': + specifier: 18.0.11 + version: 18.0.11 + '@types/react-router-dom': + specifier: 5.3.3 + version: 5.3.3 + '@typescript-eslint/eslint-plugin': + specifier: ^5.36.1 + version: 5.53.0(@typescript-eslint/parser@5.53.0)(eslint@8.15.0)(typescript@4.9.5) + '@typescript-eslint/parser': + specifier: ^5.36.1 + version: 5.53.0(eslint@8.15.0)(typescript@4.9.5) + '@vitejs/plugin-react': + specifier: ^3.0.0 + version: 3.1.0(vite@4.1.4) + '@vitest/coverage-c8': + specifier: ~0.25.8 + version: 0.25.8(@vitest/ui@0.25.8)(jsdom@20.0.3)(less@4.1.3)(stylus@0.55.0) + '@vitest/ui': + specifier: ^0.25.8 + version: 0.25.8 + babel-jest: + specifier: ^29.4.1 + version: 29.4.3(@babel/core@7.21.0) + cosmjs-types: + specifier: ^0.6.1 + version: 0.6.1 + cypress: + specifier: ^12.2.0 + version: 12.7.0 + eslint: + specifier: ~8.15.0 + version: 8.15.0 + eslint-config-next: + specifier: 13.1.1 + version: 13.1.1(eslint@8.15.0)(typescript@4.9.5) + eslint-config-prettier: + specifier: 8.1.0 + version: 8.1.0(eslint@8.15.0) + eslint-plugin-cypress: + specifier: ^2.10.3 + version: 2.12.1(eslint@8.15.0) + eslint-plugin-import: + specifier: 2.27.5 + version: 2.27.5(@typescript-eslint/parser@5.53.0)(eslint-import-resolver-typescript@3.5.3)(eslint@8.15.0) + eslint-plugin-jsx-a11y: + specifier: 6.7.1 + version: 6.7.1(eslint@8.15.0) + eslint-plugin-react: + specifier: 7.32.2 + version: 7.32.2(eslint@8.15.0) + eslint-plugin-react-hooks: + specifier: 4.6.0 + version: 4.6.0(eslint@8.15.0) + husky: + specifier: ^8.0.0 + version: 8.0.3 + jest: + specifier: ^29.4.1 + version: 29.4.3(@types/node@18.14.2)(ts-node@10.9.1) + jest-environment-jsdom: + specifier: ^29.4.1 + version: 29.4.3 + jsdom: + specifier: ~20.0.3 + version: 20.0.3 + nx: + specifier: 15.7.2 + version: 15.7.2 + prettier: + specifier: ^2.6.2 + version: 2.8.4 + react-test-renderer: + specifier: 18.2.0 + version: 18.2.0(react@18.2.0) + ts-jest: + specifier: ^29.0.5 + version: 29.0.5(@babel/core@7.21.0)(babel-jest@29.4.3)(jest@29.4.3)(typescript@4.9.5) + ts-node: + specifier: 10.9.1 + version: 10.9.1(@types/node@18.14.2)(typescript@4.9.5) + typescript: + specifier: ~4.9.5 + version: 4.9.5 + vite: + specifier: ^4.0.1 + version: 4.1.4(@types/node@18.14.2)(less@4.1.3)(stylus@0.55.0) + vite-plugin-eslint: + specifier: ^1.8.1 + version: 1.8.1(eslint@8.15.0)(vite@4.1.4) + vite-tsconfig-paths: + specifier: ^4.0.2 + version: 4.0.5(typescript@4.9.5) + vitest: + specifier: ^0.25.8 + version: 0.25.8(@vitest/ui@0.25.8)(jsdom@20.0.3)(less@4.1.3)(stylus@0.55.0) packages: - /@ampproject/remapping/2.2.0: + /@ampproject/remapping@2.2.0: resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==} engines: {node: '>=6.0.0'} dependencies: '@jridgewell/gen-mapping': 0.1.1 '@jridgewell/trace-mapping': 0.3.17 - /@babel/code-frame/7.18.6: + /@babel/code-frame@7.18.6: resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==} engines: {node: '>=6.9.0'} dependencies: '@babel/highlight': 7.18.6 - /@babel/compat-data/7.21.0: + /@babel/compat-data@7.21.0: resolution: {integrity: sha512-gMuZsmsgxk/ENC3O/fRw5QY8A9/uxQbbCEypnLIiYYc/qVJtEV7ouxC3EllIIwNzMqAQee5tanFabWsUOutS7g==} engines: {node: '>=6.9.0'} - /@babel/core/7.21.0: + /@babel/core@7.21.0: resolution: {integrity: sha512-PuxUbxcW6ZYe656yL3EAhpy7qXKq0DmYsrJLpbB8XrsCP9Nm+XCg9XFMb5vIDliPD7+U/+M+QJlH17XOcB7eXA==} engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': 2.2.0 '@babel/code-frame': 7.18.6 '@babel/generator': 7.21.1 - '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.0 + '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.21.0) '@babel/helper-module-transforms': 7.21.2 '@babel/helpers': 7.21.0 '@babel/parser': 7.21.2 @@ -216,14 +302,14 @@ packages: '@babel/traverse': 7.21.2 '@babel/types': 7.21.2 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.0 transitivePeerDependencies: - supports-color - /@babel/generator/7.21.1: + /@babel/generator@7.21.1: resolution: {integrity: sha512-1lT45bAYlQhFn/BHivJs43AiW2rg3/UbLyShGfF3C0KmHvO5fSghWd5kBJy30kpRRucGzXStvnnCFniCR2kXAA==} engines: {node: '>=6.9.0'} dependencies: @@ -232,20 +318,20 @@ packages: '@jridgewell/trace-mapping': 0.3.17 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.21.2 - /@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: '@babel/helper-explode-assignable-expression': 7.18.6 '@babel/types': 7.21.2 - /@babel/helper-compilation-targets/7.20.7_@babel+core@7.21.0: + /@babel/helper-compilation-targets@7.20.7(@babel/core@7.21.0): resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -258,7 +344,7 @@ packages: lru-cache: 5.1.1 semver: 6.3.0 - /@babel/helper-create-class-features-plugin/7.21.0_@babel+core@7.21.0: + /@babel/helper-create-class-features-plugin@7.21.0(@babel/core@7.21.0): resolution: {integrity: sha512-Q8wNiMIdwsv5la5SPxNYzzkPnjgC0Sy0i7jLkVOCdllu/xcVNkr3TeZzbHBJrj+XXRqzX5uCyCoV9eu6xUG7KQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -276,7 +362,7 @@ packages: transitivePeerDependencies: - supports-color - /@babel/helper-create-regexp-features-plugin/7.21.0_@babel+core@7.21.0: + /@babel/helper-create-regexp-features-plugin@7.21.0(@babel/core@7.21.0): resolution: {integrity: sha512-N+LaFW/auRSWdx7SHD/HiARwXQju1vXTW4fKr4u5SgBUTm51OKEjKgj+cs00ggW3kEvNqwErnlwuq7Y3xBe4eg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -286,57 +372,57 @@ packages: '@babel/helper-annotate-as-pure': 7.18.6 regexpu-core: 5.3.1 - /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.21.0: + /@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.21.0): resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==} peerDependencies: '@babel/core': ^7.4.0-0 dependencies: '@babel/core': 7.21.0 - '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.0 + '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.21.0) '@babel/helper-plugin-utils': 7.20.2 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) lodash.debounce: 4.0.8 resolve: 1.22.1 semver: 6.3.0 transitivePeerDependencies: - supports-color - /@babel/helper-environment-visitor/7.18.9: + /@babel/helper-environment-visitor@7.18.9: resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==} 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.21.2 - /@babel/helper-function-name/7.21.0: + /@babel/helper-function-name@7.21.0: resolution: {integrity: sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==} engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.20.7 '@babel/types': 7.21.2 - /@babel/helper-hoist-variables/7.18.6: + /@babel/helper-hoist-variables@7.18.6: resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.21.2 - /@babel/helper-member-expression-to-functions/7.21.0: + /@babel/helper-member-expression-to-functions@7.21.0: resolution: {integrity: sha512-Muu8cdZwNN6mRRNG6lAYErJ5X3bRevgYR2O8wN0yn7jJSnGDu6eG59RfT29JHxGUovyfrh6Pj0XzmR7drNVL3Q==} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.21.2 - /@babel/helper-module-imports/7.18.6: + /@babel/helper-module-imports@7.18.6: resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.21.2 - /@babel/helper-module-transforms/7.21.2: + /@babel/helper-module-transforms@7.21.2: resolution: {integrity: sha512-79yj2AR4U/Oqq/WOV7Lx6hUjau1Zfo4cI+JLAVYeMV5XIlbOhmjEk5ulbTc9fMpmlojzZHkUUxAiK+UKn+hNQQ==} engines: {node: '>=6.9.0'} dependencies: @@ -351,17 +437,17 @@ packages: transitivePeerDependencies: - supports-color - /@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.21.2 - /@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-remap-async-to-generator/7.18.9_@babel+core@7.21.0: + /@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.21.0): resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -375,7 +461,7 @@ packages: transitivePeerDependencies: - supports-color - /@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: @@ -388,37 +474,37 @@ packages: transitivePeerDependencies: - supports-color - /@babel/helper-simple-access/7.20.2: + /@babel/helper-simple-access@7.20.2: resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.21.2 - /@babel/helper-skip-transparent-expression-wrappers/7.20.0: + /@babel/helper-skip-transparent-expression-wrappers@7.20.0: resolution: {integrity: sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.21.2 - /@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.21.2 - /@babel/helper-string-parser/7.19.4: + /@babel/helper-string-parser@7.19.4: resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==} engines: {node: '>=6.9.0'} - /@babel/helper-validator-identifier/7.19.1: + /@babel/helper-validator-identifier@7.19.1: resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==} engines: {node: '>=6.9.0'} - /@babel/helper-validator-option/7.21.0: + /@babel/helper-validator-option@7.21.0: resolution: {integrity: sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==} engines: {node: '>=6.9.0'} - /@babel/helper-wrap-function/7.20.5: + /@babel/helper-wrap-function@7.20.5: resolution: {integrity: sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==} engines: {node: '>=6.9.0'} dependencies: @@ -429,7 +515,7 @@ packages: transitivePeerDependencies: - supports-color - /@babel/helpers/7.21.0: + /@babel/helpers@7.21.0: resolution: {integrity: sha512-XXve0CBtOW0pd7MRzzmoyuSj0e3SEzj8pgyFxnTT1NJZL38BD1MK7yYrm8yefRPIDvNNe14xR4FdbHwpInD4rA==} engines: {node: '>=6.9.0'} dependencies: @@ -439,7 +525,7 @@ packages: transitivePeerDependencies: - supports-color - /@babel/highlight/7.18.6: + /@babel/highlight@7.18.6: resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==} engines: {node: '>=6.9.0'} dependencies: @@ -447,14 +533,14 @@ packages: chalk: 2.4.2 js-tokens: 4.0.0 - /@babel/parser/7.21.2: + /@babel/parser@7.21.2: resolution: {integrity: sha512-URpaIJQwEkEC2T9Kn+Ai6Xe/02iNaVCuT/PtoRz3GPVJVDpPd7mLo+VddTbhCRU9TXqW5mSrQfXZyi8kDKOVpQ==} engines: {node: '>=6.0.0'} hasBin: true dependencies: '@babel/types': 7.21.2 - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.21.0: + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.21.0): resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -463,7 +549,7 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.20.7_@babel+core@7.21.0: + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7(@babel/core@7.21.0): resolution: {integrity: sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -472,9 +558,9 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 - '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.21.0 + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.21.0) - /@babel/plugin-proposal-async-generator-functions/7.20.7_@babel+core@7.21.0: + /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.21.0): resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -483,52 +569,52 @@ packages: '@babel/core': 7.21.0 '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.21.0 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.21.0 + '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.21.0) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.21.0) transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.21.0: + /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.21.0): 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.21.0 - '@babel/helper-create-class-features-plugin': 7.21.0_@babel+core@7.21.0 + '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.21.0) '@babel/helper-plugin-utils': 7.20.2 transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-class-static-block/7.21.0_@babel+core@7.21.0: + /@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.21.0): resolution: {integrity: sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 dependencies: '@babel/core': 7.21.0 - '@babel/helper-create-class-features-plugin': 7.21.0_@babel+core@7.21.0 + '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.21.0) '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.21.0 + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.21.0) transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-decorators/7.21.0_@babel+core@7.21.0: + /@babel/plugin-proposal-decorators@7.21.0(@babel/core@7.21.0): 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.21.0 - '@babel/helper-create-class-features-plugin': 7.21.0_@babel+core@7.21.0 + '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.21.0) '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-replace-supers': 7.20.7 '@babel/helper-split-export-declaration': 7.18.6 - '@babel/plugin-syntax-decorators': 7.21.0_@babel+core@7.21.0 + '@babel/plugin-syntax-decorators': 7.21.0(@babel/core@7.21.0) transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.21.0: + /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.21.0): resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -536,9 +622,9 @@ packages: dependencies: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.21.0 + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.21.0) - /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.21.0: + /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.21.0): resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -546,9 +632,9 @@ packages: dependencies: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.21.0 + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.21.0) - /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.21.0: + /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.21.0): resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -556,9 +642,9 @@ packages: dependencies: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.21.0 + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.21.0) - /@babel/plugin-proposal-logical-assignment-operators/7.20.7_@babel+core@7.21.0: + /@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.21.0): resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==} engines: {node: '>=6.9.0'} peerDependencies: @@ -566,9 +652,9 @@ packages: dependencies: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.21.0 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.21.0) - /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.21.0: + /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.21.0): resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -576,9 +662,9 @@ packages: dependencies: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.21.0 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.21.0) - /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.21.0: + /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.21.0): resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} engines: {node: '>=6.9.0'} peerDependencies: @@ -586,9 +672,9 @@ packages: dependencies: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.21.0 + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.21.0) - /@babel/plugin-proposal-object-rest-spread/7.20.7_@babel+core@7.21.0: + /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.21.0): resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -596,12 +682,12 @@ packages: dependencies: '@babel/compat-data': 7.21.0 '@babel/core': 7.21.0 - '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.0 + '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.21.0) '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.21.0 - '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.21.0 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.0) + '@babel/plugin-transform-parameters': 7.20.7(@babel/core@7.21.0) - /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.21.0: + /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.21.0): resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -609,9 +695,9 @@ packages: dependencies: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.21.0 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.21.0) - /@babel/plugin-proposal-optional-chaining/7.21.0_@babel+core@7.21.0: + /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.21.0): resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -620,21 +706,21 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.21.0 + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.0) - /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.21.0: + /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.21.0): resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.0 - '@babel/helper-create-class-features-plugin': 7.21.0_@babel+core@7.21.0 + '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.21.0) '@babel/helper-plugin-utils': 7.20.2 transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-private-property-in-object/7.21.0_@babel+core@7.21.0: + /@babel/plugin-proposal-private-property-in-object@7.21.0(@babel/core@7.21.0): resolution: {integrity: sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -642,23 +728,23 @@ packages: dependencies: '@babel/core': 7.21.0 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-create-class-features-plugin': 7.21.0_@babel+core@7.21.0 + '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.21.0) '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.21.0 + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.21.0) transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.21.0: + /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.21.0): resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} engines: {node: '>=4'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.0 - '@babel/helper-create-regexp-features-plugin': 7.21.0_@babel+core@7.21.0 + '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.21.0) '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.21.0: + /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.21.0): resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -666,7 +752,7 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.21.0: + /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.21.0): resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -674,7 +760,7 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.21.0: + /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.21.0): resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -682,7 +768,7 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.21.0: + /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.21.0): resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -691,7 +777,7 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-decorators/7.21.0_@babel+core@7.21.0: + /@babel/plugin-syntax-decorators@7.21.0(@babel/core@7.21.0): resolution: {integrity: sha512-tIoPpGBR8UuM4++ccWN3gifhVvQu7ZizuR1fklhRJrd5ewgbkUS+0KVFeWWxELtn18NTLoW32XV7zyOgIAiz+w==} engines: {node: '>=6.9.0'} peerDependencies: @@ -700,7 +786,7 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.21.0: + /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.21.0): resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -708,7 +794,7 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.21.0: + /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.21.0): resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -716,7 +802,7 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-import-assertions/7.20.0_@babel+core@7.21.0: + /@babel/plugin-syntax-import-assertions@7.20.0(@babel/core@7.21.0): resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -725,7 +811,7 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.21.0: + /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.21.0): resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -733,7 +819,7 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.21.0: + /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.21.0): resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -741,7 +827,7 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.21.0: + /@babel/plugin-syntax-jsx@7.18.6(@babel/core@7.21.0): resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} engines: {node: '>=6.9.0'} peerDependencies: @@ -750,7 +836,7 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.21.0: + /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.21.0): resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -758,7 +844,7 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.21.0: + /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.21.0): resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -766,7 +852,7 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.21.0: + /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.21.0): resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -774,7 +860,7 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.21.0: + /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.21.0): resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -782,7 +868,7 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.21.0: + /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.21.0): resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -790,7 +876,7 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.21.0: + /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.21.0): resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -798,7 +884,7 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.21.0: + /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.21.0): resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -807,7 +893,7 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.21.0: + /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.21.0): resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -816,7 +902,7 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-typescript/7.20.0_@babel+core@7.21.0: + /@babel/plugin-syntax-typescript@7.20.0(@babel/core@7.21.0): resolution: {integrity: sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -825,7 +911,7 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-arrow-functions/7.20.7_@babel+core@7.21.0: + /@babel/plugin-transform-arrow-functions@7.20.7(@babel/core@7.21.0): resolution: {integrity: sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -834,7 +920,7 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-async-to-generator/7.20.7_@babel+core@7.21.0: + /@babel/plugin-transform-async-to-generator@7.20.7(@babel/core@7.21.0): resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==} engines: {node: '>=6.9.0'} peerDependencies: @@ -843,11 +929,11 @@ packages: '@babel/core': 7.21.0 '@babel/helper-module-imports': 7.18.6 '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.21.0 + '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.21.0) transitivePeerDependencies: - supports-color - /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.21.0: + /@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.21.0): resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -856,7 +942,7 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-block-scoping/7.21.0_@babel+core@7.21.0: + /@babel/plugin-transform-block-scoping@7.21.0(@babel/core@7.21.0): resolution: {integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -865,7 +951,7 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-classes/7.21.0_@babel+core@7.21.0: + /@babel/plugin-transform-classes@7.21.0(@babel/core@7.21.0): resolution: {integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -873,7 +959,7 @@ packages: dependencies: '@babel/core': 7.21.0 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.0 + '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.21.0) '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-function-name': 7.21.0 '@babel/helper-optimise-call-expression': 7.18.6 @@ -884,7 +970,7 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-computed-properties/7.20.7_@babel+core@7.21.0: + /@babel/plugin-transform-computed-properties@7.20.7(@babel/core@7.21.0): resolution: {integrity: sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -894,7 +980,7 @@ packages: '@babel/helper-plugin-utils': 7.20.2 '@babel/template': 7.20.7 - /@babel/plugin-transform-destructuring/7.20.7_@babel+core@7.21.0: + /@babel/plugin-transform-destructuring@7.20.7(@babel/core@7.21.0): resolution: {integrity: sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -903,17 +989,17 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.21.0: + /@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.21.0): resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.0 - '@babel/helper-create-regexp-features-plugin': 7.21.0_@babel+core@7.21.0 + '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.21.0) '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.21.0: + /@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.21.0): resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -922,7 +1008,7 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.21.0: + /@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.21.0): resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -932,7 +1018,7 @@ packages: '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-for-of/7.21.0_@babel+core@7.21.0: + /@babel/plugin-transform-for-of@7.21.0(@babel/core@7.21.0): resolution: {integrity: sha512-LlUYlydgDkKpIY7mcBWvyPPmMcOphEyYA27Ef4xpbh1IiDNLr0kZsos2nf92vz3IccvJI25QUwp86Eo5s6HmBQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -941,18 +1027,18 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.21.0: + /@babel/plugin-transform-function-name@7.18.9(@babel/core@7.21.0): resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.0 - '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.0 + '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.21.0) '@babel/helper-function-name': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-literals/7.18.9_@babel+core@7.21.0: + /@babel/plugin-transform-literals@7.18.9(@babel/core@7.21.0): resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -961,7 +1047,7 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.21.0: + /@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.21.0): resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -970,7 +1056,7 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-modules-amd/7.20.11_@babel+core@7.21.0: + /@babel/plugin-transform-modules-amd@7.20.11(@babel/core@7.21.0): resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==} engines: {node: '>=6.9.0'} peerDependencies: @@ -982,7 +1068,7 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-modules-commonjs/7.21.2_@babel+core@7.21.0: + /@babel/plugin-transform-modules-commonjs@7.21.2(@babel/core@7.21.0): resolution: {integrity: sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -995,7 +1081,7 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-modules-systemjs/7.20.11_@babel+core@7.21.0: + /@babel/plugin-transform-modules-systemjs@7.20.11(@babel/core@7.21.0): resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -1009,7 +1095,7 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.21.0: + /@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.21.0): resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -1021,17 +1107,17 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-named-capturing-groups-regex/7.20.5_@babel+core@7.21.0: + /@babel/plugin-transform-named-capturing-groups-regex@7.20.5(@babel/core@7.21.0): resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.21.0 - '@babel/helper-create-regexp-features-plugin': 7.21.0_@babel+core@7.21.0 + '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.21.0) '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.21.0: + /@babel/plugin-transform-new-target@7.18.6(@babel/core@7.21.0): resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -1040,7 +1126,7 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.21.0: + /@babel/plugin-transform-object-super@7.18.6(@babel/core@7.21.0): resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -1052,7 +1138,7 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-parameters/7.20.7_@babel+core@7.21.0: + /@babel/plugin-transform-parameters@7.20.7(@babel/core@7.21.0): resolution: {integrity: sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -1061,7 +1147,7 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.21.0: + /@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.21.0): resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -1070,7 +1156,7 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-react-constant-elements/7.20.2_@babel+core@7.21.0: + /@babel/plugin-transform-react-constant-elements@7.20.2(@babel/core@7.21.0): resolution: {integrity: sha512-KS/G8YI8uwMGKErLFOHS/ekhqdHhpEloxs43NecQHVgo2QuQSyJhGIY1fL8UGl9wy5ItVwwoUL4YxVqsplGq2g==} engines: {node: '>=6.9.0'} peerDependencies: @@ -1080,7 +1166,7 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false - /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.21.0: + /@babel/plugin-transform-react-display-name@7.18.6(@babel/core@7.21.0): resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -1089,16 +1175,16 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.21.0: + /@babel/plugin-transform-react-jsx-development@7.18.6(@babel/core@7.21.0): resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.0 - '@babel/plugin-transform-react-jsx': 7.21.0_@babel+core@7.21.0 + '@babel/plugin-transform-react-jsx': 7.21.0(@babel/core@7.21.0) - /@babel/plugin-transform-react-jsx-self/7.21.0_@babel+core@7.21.0: + /@babel/plugin-transform-react-jsx-self@7.21.0(@babel/core@7.21.0): resolution: {integrity: sha512-f/Eq+79JEu+KUANFks9UZCcvydOOGMgF7jBrcwjHa5jTZD8JivnhCJYvmlhR/WTXBWonDExPoW0eO/CR4QJirA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -1108,7 +1194,7 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-react-jsx-source/7.19.6_@babel+core@7.21.0: + /@babel/plugin-transform-react-jsx-source@7.19.6(@babel/core@7.21.0): resolution: {integrity: sha512-RpAi004QyMNisst/pvSanoRdJ4q+jMCWyk9zdw/CyLB9j8RXEahodR6l2GyttDRyEVWZtbN+TpLiHJ3t34LbsQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -1118,7 +1204,7 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-react-jsx/7.21.0_@babel+core@7.21.0: + /@babel/plugin-transform-react-jsx@7.21.0(@babel/core@7.21.0): resolution: {integrity: sha512-6OAWljMvQrZjR2DaNhVfRz6dkCAVV+ymcLUmaf8bccGOHn2v5rHJK3tTpij0BuhdYWP4LLaqj5lwcdlpAAPuvg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -1128,10 +1214,10 @@ packages: '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-module-imports': 7.18.6 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.21.0 + '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.21.0) '@babel/types': 7.21.2 - /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.21.0: + /@babel/plugin-transform-react-pure-annotations@7.18.6(@babel/core@7.21.0): resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -1141,7 +1227,7 @@ packages: '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-regenerator/7.20.5_@babel+core@7.21.0: + /@babel/plugin-transform-regenerator@7.20.5(@babel/core@7.21.0): resolution: {integrity: sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -1151,7 +1237,7 @@ packages: '@babel/helper-plugin-utils': 7.20.2 regenerator-transform: 0.15.1 - /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.21.0: + /@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.21.0): resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -1160,7 +1246,7 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-runtime/7.21.0_@babel+core@7.21.0: + /@babel/plugin-transform-runtime@7.21.0(@babel/core@7.21.0): resolution: {integrity: sha512-ReY6pxwSzEU0b3r2/T/VhqMKg/AkceBT19X0UptA3/tYi5Pe2eXgEUH+NNMC5nok6c6XQz5tyVTUpuezRfSMSg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -1169,14 +1255,14 @@ packages: '@babel/core': 7.21.0 '@babel/helper-module-imports': 7.18.6 '@babel/helper-plugin-utils': 7.20.2 - babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.21.0 - babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.21.0 - babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.21.0 + babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.21.0) + babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.21.0) + babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.21.0) semver: 6.3.0 transitivePeerDependencies: - supports-color - /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.21.0: + /@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.21.0): resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -1185,7 +1271,7 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-spread/7.20.7_@babel+core@7.21.0: + /@babel/plugin-transform-spread@7.20.7(@babel/core@7.21.0): resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -1195,7 +1281,7 @@ packages: '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 - /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.21.0: + /@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.21.0): resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} engines: {node: '>=6.9.0'} peerDependencies: @@ -1204,7 +1290,7 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.21.0: + /@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.21.0): resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -1213,7 +1299,7 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.21.0: + /@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.21.0): resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -1222,20 +1308,20 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-typescript/7.21.0_@babel+core@7.21.0: + /@babel/plugin-transform-typescript@7.21.0(@babel/core@7.21.0): resolution: {integrity: sha512-xo///XTPp3mDzTtrqXoBlK9eiAYW3wv9JXglcn/u1bi60RW11dEUxIgA8cbnDhutS1zacjMRmAwxE0gMklLnZg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.0 - '@babel/helper-create-class-features-plugin': 7.21.0_@babel+core@7.21.0 + '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.21.0) '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.21.0 + '@babel/plugin-syntax-typescript': 7.20.0(@babel/core@7.21.0) transitivePeerDependencies: - supports-color - /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.21.0: + /@babel/plugin-transform-unicode-escapes@7.18.10(@babel/core@7.21.0): resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -1244,17 +1330,17 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.21.0: + /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.21.0): resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.0 - '@babel/helper-create-regexp-features-plugin': 7.21.0_@babel+core@7.21.0 + '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.21.0) '@babel/helper-plugin-utils': 7.20.2 - /@babel/preset-env/7.20.2_@babel+core@7.21.0: + /@babel/preset-env@7.20.2(@babel/core@7.21.0): resolution: {integrity: sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -1262,96 +1348,96 @@ packages: dependencies: '@babel/compat-data': 7.21.0 '@babel/core': 7.21.0 - '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.0 + '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.21.0) '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-validator-option': 7.21.0 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7_@babel+core@7.21.0 - '@babel/plugin-proposal-async-generator-functions': 7.20.7_@babel+core@7.21.0 - '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-proposal-class-static-block': 7.21.0_@babel+core@7.21.0 - '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.21.0 - '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-proposal-logical-assignment-operators': 7.20.7_@babel+core@7.21.0 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.21.0 - '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.21.0 - '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-proposal-private-property-in-object': 7.21.0_@babel+core@7.21.0 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.21.0 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.21.0 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.21.0 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.21.0 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.21.0 - '@babel/plugin-syntax-import-assertions': 7.20.0_@babel+core@7.21.0 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.21.0 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.21.0 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.21.0 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.21.0 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.21.0 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.21.0 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.21.0 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.21.0 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.21.0 - '@babel/plugin-transform-arrow-functions': 7.20.7_@babel+core@7.21.0 - '@babel/plugin-transform-async-to-generator': 7.20.7_@babel+core@7.21.0 - '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-block-scoping': 7.21.0_@babel+core@7.21.0 - '@babel/plugin-transform-classes': 7.21.0_@babel+core@7.21.0 - '@babel/plugin-transform-computed-properties': 7.20.7_@babel+core@7.21.0 - '@babel/plugin-transform-destructuring': 7.20.7_@babel+core@7.21.0 - '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.21.0 - '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-for-of': 7.21.0_@babel+core@7.21.0 - '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.21.0 - '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.21.0 - '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-modules-amd': 7.20.11_@babel+core@7.21.0 - '@babel/plugin-transform-modules-commonjs': 7.21.2_@babel+core@7.21.0 - '@babel/plugin-transform-modules-systemjs': 7.20.11_@babel+core@7.21.0 - '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5_@babel+core@7.21.0 - '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.21.0 - '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-regenerator': 7.20.5_@babel+core@7.21.0 - '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-spread': 7.20.7_@babel+core@7.21.0 - '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.21.0 - '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.21.0 - '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.21.0 - '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.21.0 - '@babel/preset-modules': 0.1.5_@babel+core@7.21.0 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6(@babel/core@7.21.0) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7(@babel/core@7.21.0) + '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.21.0) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.21.0) + '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.21.0) + '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.21.0) + '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.21.0) + '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.21.0) + '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.21.0) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.21.0) + '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.21.0) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.21.0) + '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.21.0) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.21.0) + '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.21.0) + '@babel/plugin-proposal-private-property-in-object': 7.21.0(@babel/core@7.21.0) + '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.21.0) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.21.0) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.21.0) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.21.0) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.21.0) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.21.0) + '@babel/plugin-syntax-import-assertions': 7.20.0(@babel/core@7.21.0) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.21.0) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.21.0) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.21.0) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.21.0) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.0) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.21.0) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.0) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.21.0) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.21.0) + '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.21.0) + '@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.21.0) + '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.21.0) + '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.21.0) + '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.21.0) + '@babel/plugin-transform-computed-properties': 7.20.7(@babel/core@7.21.0) + '@babel/plugin-transform-destructuring': 7.20.7(@babel/core@7.21.0) + '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.21.0) + '@babel/plugin-transform-duplicate-keys': 7.18.9(@babel/core@7.21.0) + '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.21.0) + '@babel/plugin-transform-for-of': 7.21.0(@babel/core@7.21.0) + '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.21.0) + '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.21.0) + '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.21.0) + '@babel/plugin-transform-modules-amd': 7.20.11(@babel/core@7.21.0) + '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.21.0) + '@babel/plugin-transform-modules-systemjs': 7.20.11(@babel/core@7.21.0) + '@babel/plugin-transform-modules-umd': 7.18.6(@babel/core@7.21.0) + '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.21.0) + '@babel/plugin-transform-new-target': 7.18.6(@babel/core@7.21.0) + '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.21.0) + '@babel/plugin-transform-parameters': 7.20.7(@babel/core@7.21.0) + '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.21.0) + '@babel/plugin-transform-regenerator': 7.20.5(@babel/core@7.21.0) + '@babel/plugin-transform-reserved-words': 7.18.6(@babel/core@7.21.0) + '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.21.0) + '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.21.0) + '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.21.0) + '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.21.0) + '@babel/plugin-transform-typeof-symbol': 7.18.9(@babel/core@7.21.0) + '@babel/plugin-transform-unicode-escapes': 7.18.10(@babel/core@7.21.0) + '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.21.0) + '@babel/preset-modules': 0.1.5(@babel/core@7.21.0) '@babel/types': 7.21.2 - babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.21.0 - babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.21.0 - babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.21.0 + babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.21.0) + babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.21.0) + babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.21.0) core-js-compat: 3.28.0 semver: 6.3.0 transitivePeerDependencies: - supports-color - /@babel/preset-modules/0.1.5_@babel+core@7.21.0: + /@babel/preset-modules@0.1.5(@babel/core@7.21.0): resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.21.0 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.21.0) + '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.21.0) '@babel/types': 7.21.2 esutils: 2.0.3 - /@babel/preset-react/7.18.6_@babel+core@7.21.0: + /@babel/preset-react@7.18.6(@babel/core@7.21.0): resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -1360,12 +1446,12 @@ packages: '@babel/core': 7.21.0 '@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.21.0 - '@babel/plugin-transform-react-jsx': 7.21.0_@babel+core@7.21.0 - '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.21.0 + '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.21.0) + '@babel/plugin-transform-react-jsx': 7.21.0(@babel/core@7.21.0) + '@babel/plugin-transform-react-jsx-development': 7.18.6(@babel/core@7.21.0) + '@babel/plugin-transform-react-pure-annotations': 7.18.6(@babel/core@7.21.0) - /@babel/preset-typescript/7.21.0_@babel+core@7.21.0: + /@babel/preset-typescript@7.21.0(@babel/core@7.21.0): resolution: {integrity: sha512-myc9mpoVA5m1rF8K8DgLEatOYFDpwC+RkMkjZ0Du6uI62YvDe8uxIEYVs/VCdSJ097nlALiU/yBC7//3nI+hNg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -1374,26 +1460,26 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-validator-option': 7.21.0 - '@babel/plugin-transform-typescript': 7.21.0_@babel+core@7.21.0 + '@babel/plugin-transform-typescript': 7.21.0(@babel/core@7.21.0) transitivePeerDependencies: - supports-color - /@babel/regjsgen/0.8.0: + /@babel/regjsgen@0.8.0: resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==} - /@babel/runtime/7.11.2: + /@babel/runtime@7.11.2: resolution: {integrity: sha512-TeWkU52so0mPtDcaCTxNBI/IHiz0pZgr8VEFqXFtZWpYD08ZB6FaSwVAS8MKRQAP3bYKiVjwysOJgMFY28o6Tw==} dependencies: regenerator-runtime: 0.13.11 dev: false - /@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: @@ -1401,7 +1487,7 @@ packages: '@babel/parser': 7.21.2 '@babel/types': 7.21.2 - /@babel/traverse/7.21.2: + /@babel/traverse@7.21.2: resolution: {integrity: sha512-ts5FFU/dSUPS13tv8XiEObDu9K+iagEKME9kAbaP7r0Y9KtZJZ+NGndDvWoRAYNpeWafbpFeki3q9QoMD6gxyw==} engines: {node: '>=6.9.0'} dependencies: @@ -1413,12 +1499,12 @@ packages: '@babel/helper-split-export-declaration': 7.18.6 '@babel/parser': 7.21.2 '@babel/types': 7.21.2 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) globals: 11.12.0 transitivePeerDependencies: - supports-color - /@babel/types/7.21.2: + /@babel/types@7.21.2: resolution: {integrity: sha512-3wRZSs7jiFaB8AjxiiD+VqN5DTG2iRvJGQ+qYFrs/654lg6kGTQWIOFjlBo5RaXuAZjBmP3+OQH4dmhqiiyYxw==} engines: {node: '>=6.9.0'} dependencies: @@ -1426,10 +1512,10 @@ packages: '@babel/helper-validator-identifier': 7.19.1 to-fast-properties: 2.0.0 - /@bcoe/v8-coverage/0.2.3: + /@bcoe/v8-coverage@0.2.3: resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} - /@chain-registry/keplr/1.8.0: + /@chain-registry/keplr@1.8.0: resolution: {integrity: sha512-P1IyZihR/rZUBgFZm5DGs4LAVpMSJ7QfQ5YV1ofpMNeB0iXEEGC4BuuT8NonwgAyWGOw9/c8Z/cNN8f9m5nFkQ==} dependencies: '@babel/runtime': 7.21.0 @@ -1441,7 +1527,7 @@ packages: - debug dev: false - /@chain-registry/types/0.13.0: + /@chain-registry/types@0.13.0: resolution: {integrity: sha512-2xgKaRK6T3qkkzWkj2n5nHzGNl+0RuDDB8nS+oyssBe4tCq835yMkxrVAOivFfEm5YGl92FcaVDLrzmfPUO0MA==} dependencies: '@babel/runtime': 7.21.0 @@ -1451,359 +1537,359 @@ packages: - debug dev: false - /@chain-registry/types/0.13.1: + /@chain-registry/types@0.13.1: resolution: {integrity: sha512-NF4x7pqkQJ/zSQLoT28sYlBdzWUyCTFvWgVE9hJ2jkirX+It9VUHP5j1wtTq+vxQ74SZk2V8vRBo2uuoEYBB1A==} dependencies: '@babel/runtime': 7.21.0 dev: false - /@chain-registry/types/0.14.0: + /@chain-registry/types@0.14.0: resolution: {integrity: sha512-TlIqc3CijT734no7RiYBfUvCG2fory0blwrBcK4XTYOCi2vANsxfDdiPLFQcaSETYDd14DdjhrdXwMocEeOnLQ==} dependencies: '@babel/runtime': 7.21.0 - /@chakra-ui/accordion/2.1.9_rbqan4k27g4r7dhta4dxhf6vse: + /@chakra-ui/accordion@2.1.9(@chakra-ui/system@2.5.1)(framer-motion@10.0.1)(react@18.2.0): resolution: {integrity: sha512-a9CKIAUHezc0f5FR/SQ4GVxnWuIb2HbDTxTEKTp58w/J9pecIbJaNrJ5TUZ0MVbDU9jkgO9RsZ29jkja8PomAw==} peerDependencies: '@chakra-ui/system': '>=2.0.0' framer-motion: '>=4.0.0' react: '>=18' dependencies: - '@chakra-ui/descendant': 3.0.13_react@18.2.0 - '@chakra-ui/icon': 3.0.16_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/react-context': 2.0.7_react@18.2.0 - '@chakra-ui/react-use-controllable-state': 2.0.8_react@18.2.0 - '@chakra-ui/react-use-merge-refs': 2.0.7_react@18.2.0 + '@chakra-ui/descendant': 3.0.13(react@18.2.0) + '@chakra-ui/icon': 3.0.16(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/react-context': 2.0.7(react@18.2.0) + '@chakra-ui/react-use-controllable-state': 2.0.8(react@18.2.0) + '@chakra-ui/react-use-merge-refs': 2.0.7(react@18.2.0) '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba - '@chakra-ui/transition': 2.0.15_vexppao3ect22qrf7pe276h5iq - framer-motion: 10.0.1_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) + '@chakra-ui/transition': 2.0.15(framer-motion@10.0.1)(react@18.2.0) + framer-motion: 10.0.1(react-dom@18.2.0)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/accordion/2.1.9_uvmwz4ujdteijqix7ts4qbucni: + /@chakra-ui/accordion@2.1.9(@chakra-ui/system@2.5.1)(framer-motion@9.1.7)(react@18.2.0): resolution: {integrity: sha512-a9CKIAUHezc0f5FR/SQ4GVxnWuIb2HbDTxTEKTp58w/J9pecIbJaNrJ5TUZ0MVbDU9jkgO9RsZ29jkja8PomAw==} peerDependencies: '@chakra-ui/system': '>=2.0.0' framer-motion: '>=4.0.0' react: '>=18' dependencies: - '@chakra-ui/descendant': 3.0.13_react@18.2.0 - '@chakra-ui/icon': 3.0.16_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/react-context': 2.0.7_react@18.2.0 - '@chakra-ui/react-use-controllable-state': 2.0.8_react@18.2.0 - '@chakra-ui/react-use-merge-refs': 2.0.7_react@18.2.0 + '@chakra-ui/descendant': 3.0.13(react@18.2.0) + '@chakra-ui/icon': 3.0.16(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/react-context': 2.0.7(react@18.2.0) + '@chakra-ui/react-use-controllable-state': 2.0.8(react@18.2.0) + '@chakra-ui/react-use-merge-refs': 2.0.7(react@18.2.0) '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba - '@chakra-ui/transition': 2.0.15_vs4eiolfr5o6gkrfj7pnlrsapu - framer-motion: 9.1.7_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) + '@chakra-ui/transition': 2.0.15(framer-motion@9.1.7)(react@18.2.0) + framer-motion: 9.1.7(react-dom@18.2.0)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/alert/2.0.17_n3dxrjldmk5gnycgnw7noyo5tu: + /@chakra-ui/alert@2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0): resolution: {integrity: sha512-0Y5vw+HkeXpwbL1roVpSSNM6luMRmUbwduUSHEA4OnX1ismvsDb1ZBfpi4Vxp6w8euJ2Uj6df3krbd5tbCP6tg==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/icon': 3.0.16_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/react-context': 2.0.7_react@18.2.0 + '@chakra-ui/icon': 3.0.16(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/react-context': 2.0.7(react@18.2.0) '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/spinner': 2.0.13_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba + '@chakra-ui/spinner': 2.0.13(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/anatomy/2.1.2: + /@chakra-ui/anatomy@2.1.2: resolution: {integrity: sha512-pKfOS/mztc4sUXHNc8ypJ1gPWSolWT770jrgVRfolVbYlki8y5Y+As996zMF6k5lewTu6j9DQequ7Cc9a69IVQ==} dev: false - /@chakra-ui/avatar/2.2.5_n3dxrjldmk5gnycgnw7noyo5tu: + /@chakra-ui/avatar@2.2.5(@chakra-ui/system@2.5.1)(react@18.2.0): resolution: {integrity: sha512-TEHXuGE79+fEn61qJ7J/A0Ec+WjyNwobrDTATcLg9Zx2/WEMmZNfrWIAlI5ANQAwVbdSWeGVbyoLAK5mbcrE0A==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/image': 2.0.15_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/react-children-utils': 2.0.6_react@18.2.0 - '@chakra-ui/react-context': 2.0.7_react@18.2.0 + '@chakra-ui/image': 2.0.15(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/react-children-utils': 2.0.6(react@18.2.0) + '@chakra-ui/react-context': 2.0.7(react@18.2.0) '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/breadcrumb/2.1.4_n3dxrjldmk5gnycgnw7noyo5tu: + /@chakra-ui/breadcrumb@2.1.4(@chakra-ui/system@2.5.1)(react@18.2.0): resolution: {integrity: sha512-vyBx5TAxPnHhb0b8nyRGfqyjleD//9mySFhk96c9GL+T6YDO4swHw5y/kvDv3Ngc/iRwJ9hdI49PZKwPxLqsEg==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/react-children-utils': 2.0.6_react@18.2.0 - '@chakra-ui/react-context': 2.0.7_react@18.2.0 + '@chakra-ui/react-children-utils': 2.0.6(react@18.2.0) + '@chakra-ui/react-context': 2.0.7(react@18.2.0) '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/breakpoint-utils/2.0.8: + /@chakra-ui/breakpoint-utils@2.0.8: resolution: {integrity: sha512-Pq32MlEX9fwb5j5xx8s18zJMARNHlQZH2VH1RZgfgRDpp7DcEgtRW5AInfN5CfqdHLO1dGxA7I3MqEuL5JnIsA==} dependencies: '@chakra-ui/shared-utils': 2.0.5 dev: false - /@chakra-ui/button/2.0.16_n3dxrjldmk5gnycgnw7noyo5tu: + /@chakra-ui/button@2.0.16(@chakra-ui/system@2.5.1)(react@18.2.0): resolution: {integrity: sha512-NjuTKa7gNhnGSUutKuTc8HoAOe9WWIigpciBG7yj3ok67kg8bXtSzPyQFZlgTY6XGdAckWTT+Do4tvhwa5LA+g==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/react-context': 2.0.7_react@18.2.0 - '@chakra-ui/react-use-merge-refs': 2.0.7_react@18.2.0 + '@chakra-ui/react-context': 2.0.7(react@18.2.0) + '@chakra-ui/react-use-merge-refs': 2.0.7(react@18.2.0) '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/spinner': 2.0.13_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba + '@chakra-ui/spinner': 2.0.13(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/card/2.1.6_n3dxrjldmk5gnycgnw7noyo5tu: + /@chakra-ui/card@2.1.6(@chakra-ui/system@2.5.1)(react@18.2.0): resolution: {integrity: sha512-fFd/WAdRNVY/WOSQv4skpy0WeVhhI0f7dTY1Sm0jVl0KLmuP/GnpsWtKtqWjNcV00K963EXDyhlk6+9oxbP4gw==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/checkbox/2.2.10_n3dxrjldmk5gnycgnw7noyo5tu: + /@chakra-ui/checkbox@2.2.10(@chakra-ui/system@2.5.1)(react@18.2.0): resolution: {integrity: sha512-vzxEjw99qj7loxAdP1WuHNt4EAvj/t6cc8oxyOB2mEvkAzhxI34rLR+3zWDuHWsmhyUO+XEDh4FiWdR+DK5Siw==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/form-control': 2.0.17_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/react-context': 2.0.7_react@18.2.0 - '@chakra-ui/react-types': 2.0.7_react@18.2.0 - '@chakra-ui/react-use-callback-ref': 2.0.7_react@18.2.0 - '@chakra-ui/react-use-controllable-state': 2.0.8_react@18.2.0 - '@chakra-ui/react-use-merge-refs': 2.0.7_react@18.2.0 - '@chakra-ui/react-use-safe-layout-effect': 2.0.5_react@18.2.0 - '@chakra-ui/react-use-update-effect': 2.0.7_react@18.2.0 + '@chakra-ui/form-control': 2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/react-context': 2.0.7(react@18.2.0) + '@chakra-ui/react-types': 2.0.7(react@18.2.0) + '@chakra-ui/react-use-callback-ref': 2.0.7(react@18.2.0) + '@chakra-ui/react-use-controllable-state': 2.0.8(react@18.2.0) + '@chakra-ui/react-use-merge-refs': 2.0.7(react@18.2.0) + '@chakra-ui/react-use-safe-layout-effect': 2.0.5(react@18.2.0) + '@chakra-ui/react-use-update-effect': 2.0.7(react@18.2.0) '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba - '@chakra-ui/visually-hidden': 2.0.15_n3dxrjldmk5gnycgnw7noyo5tu + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) + '@chakra-ui/visually-hidden': 2.0.15(@chakra-ui/system@2.5.1)(react@18.2.0) '@zag-js/focus-visible': 0.2.1 react: 18.2.0 dev: false - /@chakra-ui/clickable/2.0.14_react@18.2.0: + /@chakra-ui/clickable@2.0.14(react@18.2.0): resolution: {integrity: sha512-jfsM1qaD74ZykLHmvmsKRhDyokLUxEfL8Il1VoZMNX5RBI0xW/56vKpLTFF/v/+vLPLS+Te2cZdD4+2O+G6ulA==} peerDependencies: react: '>=18' dependencies: - '@chakra-ui/react-use-merge-refs': 2.0.7_react@18.2.0 + '@chakra-ui/react-use-merge-refs': 2.0.7(react@18.2.0) '@chakra-ui/shared-utils': 2.0.5 react: 18.2.0 dev: false - /@chakra-ui/close-button/2.0.17_n3dxrjldmk5gnycgnw7noyo5tu: + /@chakra-ui/close-button@2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0): resolution: {integrity: sha512-05YPXk456t1Xa3KpqTrvm+7smx+95dmaPiwjiBN3p7LHUQVHJd8ZXSDB0V+WKi419k3cVQeJUdU/azDO2f40sw==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/icon': 3.0.16_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba + '@chakra-ui/icon': 3.0.16(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/color-mode/2.1.12_react@18.2.0: + /@chakra-ui/color-mode@2.1.12(react@18.2.0): resolution: {integrity: sha512-sYyfJGDoJSLYO+V2hxV9r033qhte5Nw/wAn5yRGGZnEEN1dKPEdWQ3XZvglWSDTNd0w9zkoH2w6vP4FBBYb/iw==} peerDependencies: react: '>=18' dependencies: - '@chakra-ui/react-use-safe-layout-effect': 2.0.5_react@18.2.0 + '@chakra-ui/react-use-safe-layout-effect': 2.0.5(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/control-box/2.0.13_n3dxrjldmk5gnycgnw7noyo5tu: + /@chakra-ui/control-box@2.0.13(@chakra-ui/system@2.5.1)(react@18.2.0): resolution: {integrity: sha512-FEyrU4crxati80KUF/+1Z1CU3eZK6Sa0Yv7Z/ydtz9/tvGblXW9NFanoomXAOvcIFLbaLQPPATm9Gmpr7VG05A==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/counter/2.0.14_react@18.2.0: + /@chakra-ui/counter@2.0.14(react@18.2.0): resolution: {integrity: sha512-KxcSRfUbb94dP77xTip2myoE7P2HQQN4V5fRJmNAGbzcyLciJ+aDylUU/UxgNcEjawUp6Q242NbWb1TSbKoqog==} peerDependencies: react: '>=18' dependencies: '@chakra-ui/number-utils': 2.0.7 - '@chakra-ui/react-use-callback-ref': 2.0.7_react@18.2.0 + '@chakra-ui/react-use-callback-ref': 2.0.7(react@18.2.0) '@chakra-ui/shared-utils': 2.0.5 react: 18.2.0 dev: false - /@chakra-ui/css-reset/2.0.12_3og6jmu6wvzuytygvdoxepq3x4: + /@chakra-ui/css-reset@2.0.12(@emotion/react@11.10.6)(react@18.2.0): resolution: {integrity: sha512-Q5OYIMvqTl2vZ947kIYxcS5DhQXeStB84BzzBd6C10wOx1gFUu9pL+jLpOnHR3hhpWRMdX5o7eT+gMJWIYUZ0Q==} peerDependencies: '@emotion/react': '>=10.0.35' react: '>=18' dependencies: - '@emotion/react': 11.10.6_pmekkgnqduwlme35zpnqhenc34 + '@emotion/react': 11.10.6(@types/react@18.0.28)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/descendant/3.0.13_react@18.2.0: + /@chakra-ui/descendant@3.0.13(react@18.2.0): resolution: {integrity: sha512-9nzxZVxUSMc4xPL5fSaRkEOQjDQWUGjGvrZI7VzWk9eq63cojOtIxtWMSW383G9148PzWJjJYt30Eud5tdZzlg==} peerDependencies: react: '>=18' dependencies: - '@chakra-ui/react-context': 2.0.7_react@18.2.0 - '@chakra-ui/react-use-merge-refs': 2.0.7_react@18.2.0 + '@chakra-ui/react-context': 2.0.7(react@18.2.0) + '@chakra-ui/react-use-merge-refs': 2.0.7(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/dom-utils/2.0.6: + /@chakra-ui/dom-utils@2.0.6: resolution: {integrity: sha512-PVtDkPrDD5b8aoL6Atg7SLjkwhWb7BwMcLOF1L449L3nZN+DAO3nyAh6iUhZVJyunELj9d0r65CDlnMREyJZmA==} dev: false - /@chakra-ui/editable/2.0.19_n3dxrjldmk5gnycgnw7noyo5tu: + /@chakra-ui/editable@2.0.19(@chakra-ui/system@2.5.1)(react@18.2.0): resolution: {integrity: sha512-YxRJsJ2JQd42zfPBgTKzIhg1HugT+gfQz1ZosmUN+IZT9YZXL2yodHTUz6Lee04Vc/CdEqgBFLuREXEUNBfGtA==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/react-context': 2.0.7_react@18.2.0 - '@chakra-ui/react-types': 2.0.7_react@18.2.0 - '@chakra-ui/react-use-callback-ref': 2.0.7_react@18.2.0 - '@chakra-ui/react-use-controllable-state': 2.0.8_react@18.2.0 - '@chakra-ui/react-use-focus-on-pointer-down': 2.0.6_react@18.2.0 - '@chakra-ui/react-use-merge-refs': 2.0.7_react@18.2.0 - '@chakra-ui/react-use-safe-layout-effect': 2.0.5_react@18.2.0 - '@chakra-ui/react-use-update-effect': 2.0.7_react@18.2.0 + '@chakra-ui/react-context': 2.0.7(react@18.2.0) + '@chakra-ui/react-types': 2.0.7(react@18.2.0) + '@chakra-ui/react-use-callback-ref': 2.0.7(react@18.2.0) + '@chakra-ui/react-use-controllable-state': 2.0.8(react@18.2.0) + '@chakra-ui/react-use-focus-on-pointer-down': 2.0.6(react@18.2.0) + '@chakra-ui/react-use-merge-refs': 2.0.7(react@18.2.0) + '@chakra-ui/react-use-safe-layout-effect': 2.0.5(react@18.2.0) + '@chakra-ui/react-use-update-effect': 2.0.7(react@18.2.0) '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/event-utils/2.0.8: + /@chakra-ui/event-utils@2.0.8: resolution: {integrity: sha512-IGM/yGUHS+8TOQrZGpAKOJl/xGBrmRYJrmbHfUE7zrG3PpQyXvbLDP1M+RggkCFVgHlJi2wpYIf0QtQlU0XZfw==} dev: false - /@chakra-ui/focus-lock/2.0.16_pmekkgnqduwlme35zpnqhenc34: + /@chakra-ui/focus-lock@2.0.16(@types/react@18.0.28)(react@18.2.0): resolution: {integrity: sha512-UuAdGCPVrCa1lecoAvpOQD7JFT7a9RdmhKWhFt5ioIcekSLJcerdLHuuL3w0qz//8kd1/SOt7oP0aJqdAJQrCw==} peerDependencies: react: '>=18' dependencies: '@chakra-ui/dom-utils': 2.0.6 react: 18.2.0 - react-focus-lock: 2.9.4_pmekkgnqduwlme35zpnqhenc34 + react-focus-lock: 2.9.4(@types/react@18.0.28)(react@18.2.0) transitivePeerDependencies: - '@types/react' dev: false - /@chakra-ui/form-control/2.0.17_n3dxrjldmk5gnycgnw7noyo5tu: + /@chakra-ui/form-control@2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0): resolution: {integrity: sha512-34ptCaJ2LNvQNOlB6MAKsmH1AkT1xo7E+3Vw10Urr81yTOjDTM/iU6vG3JKPfRDMyXeowPjXmutlnuk72SSjRg==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/icon': 3.0.16_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/react-context': 2.0.7_react@18.2.0 - '@chakra-ui/react-types': 2.0.7_react@18.2.0 - '@chakra-ui/react-use-merge-refs': 2.0.7_react@18.2.0 + '@chakra-ui/icon': 3.0.16(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/react-context': 2.0.7(react@18.2.0) + '@chakra-ui/react-types': 2.0.7(react@18.2.0) + '@chakra-ui/react-use-merge-refs': 2.0.7(react@18.2.0) '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/hooks/2.1.6_react@18.2.0: + /@chakra-ui/hooks@2.1.6(react@18.2.0): resolution: {integrity: sha512-oMSOeoOF6/UpwTVlDFHSROAA4hPY8WgJ0erdHs1ZkuwAwHv7UzjDkvrb6xYzAAH9qHoFzc5RIBm6jVoh3LCc+Q==} peerDependencies: react: '>=18' dependencies: - '@chakra-ui/react-utils': 2.0.12_react@18.2.0 + '@chakra-ui/react-utils': 2.0.12(react@18.2.0) '@chakra-ui/utils': 2.0.15 compute-scroll-into-view: 1.0.20 copy-to-clipboard: 3.3.3 react: 18.2.0 dev: false - /@chakra-ui/icon/3.0.15_n3dxrjldmk5gnycgnw7noyo5tu: + /@chakra-ui/icon@3.0.15(@chakra-ui/system@2.5.1)(react@18.2.0): resolution: {integrity: sha512-6RRppml4kW3hOMgMCtgeKc73nJhJEZXOvzDvmZKKW9WrLsDpWiI7WDQb5VIxUXqZlbrh88K5WVRY0YivIefCDA==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: '@chakra-ui/shared-utils': 2.0.4 - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/icon/3.0.16_n3dxrjldmk5gnycgnw7noyo5tu: + /@chakra-ui/icon@3.0.16(@chakra-ui/system@2.5.1)(react@18.2.0): resolution: {integrity: sha512-RpA1X5Ptz8Mt39HSyEIW1wxAz2AXyf9H0JJ5HVx/dBdMZaGMDJ0HyyPBVci0m4RCoJuyG1HHG/DXJaVfUTVAeg==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/image/2.0.15_n3dxrjldmk5gnycgnw7noyo5tu: + /@chakra-ui/image@2.0.15(@chakra-ui/system@2.5.1)(react@18.2.0): resolution: {integrity: sha512-w2rElXtI3FHXuGpMCsSklus+pO1Pl2LWDwsCGdpBQUvGFbnHfl7MftQgTlaGHeD5OS95Pxva39hKrA2VklKHiQ==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/react-use-safe-layout-effect': 2.0.5_react@18.2.0 + '@chakra-ui/react-use-safe-layout-effect': 2.0.5(react@18.2.0) '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/input/2.0.20_n3dxrjldmk5gnycgnw7noyo5tu: + /@chakra-ui/input@2.0.20(@chakra-ui/system@2.5.1)(react@18.2.0): resolution: {integrity: sha512-ypmsy4n4uNBVgn6Gd24Zrpi+qRf/T9WEzWkysuYC9Qfxo+i7yuf3snp7XmBy8KSGVSiXE11eO8ZN5oCg6Xg0jg==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/form-control': 2.0.17_n3dxrjldmk5gnycgnw7noyo5tu + '@chakra-ui/form-control': 2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0) '@chakra-ui/object-utils': 2.0.8 - '@chakra-ui/react-children-utils': 2.0.6_react@18.2.0 - '@chakra-ui/react-context': 2.0.7_react@18.2.0 + '@chakra-ui/react-children-utils': 2.0.6(react@18.2.0) + '@chakra-ui/react-context': 2.0.7(react@18.2.0) '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/layout/2.1.16_n3dxrjldmk5gnycgnw7noyo5tu: + /@chakra-ui/layout@2.1.16(@chakra-ui/system@2.5.1)(react@18.2.0): resolution: {integrity: sha512-QFS3feozIGsvB0H74lUocev55aRF26eNrdmhfJifwikZAiq+zzZAMdBdNU9UJhHClnMOU8/iGZ0MF7ti4zQS1A==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: '@chakra-ui/breakpoint-utils': 2.0.8 - '@chakra-ui/icon': 3.0.16_n3dxrjldmk5gnycgnw7noyo5tu + '@chakra-ui/icon': 3.0.16(@chakra-ui/system@2.5.1)(react@18.2.0) '@chakra-ui/object-utils': 2.0.8 - '@chakra-ui/react-children-utils': 2.0.6_react@18.2.0 - '@chakra-ui/react-context': 2.0.7_react@18.2.0 + '@chakra-ui/react-children-utils': 2.0.6(react@18.2.0) + '@chakra-ui/react-context': 2.0.7(react@18.2.0) '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/lazy-utils/2.0.5: + /@chakra-ui/lazy-utils@2.0.5: resolution: {integrity: sha512-UULqw7FBvcckQk2n3iPO56TMJvDsNv0FKZI6PlUNJVaGsPbsYxK/8IQ60vZgaTVPtVcjY6BE+y6zg8u9HOqpyg==} dev: false - /@chakra-ui/live-region/2.0.13_react@18.2.0: + /@chakra-ui/live-region@2.0.13(react@18.2.0): resolution: {integrity: sha512-Ja+Slk6ZkxSA5oJzU2VuGU7TpZpbMb/4P4OUhIf2D30ctmIeXkxTWw1Bs1nGJAVtAPcGS5sKA+zb89i8g+0cTQ==} peerDependencies: react: '>=18' @@ -1811,74 +1897,74 @@ packages: react: 18.2.0 dev: false - /@chakra-ui/media-query/3.2.12_n3dxrjldmk5gnycgnw7noyo5tu: + /@chakra-ui/media-query@3.2.12(@chakra-ui/system@2.5.1)(react@18.2.0): resolution: {integrity: sha512-8pSLDf3oxxhFrhd40rs7vSeIBfvOmIKHA7DJlGUC/y+9irD24ZwgmCtFnn+y3gI47hTJsopbSX+wb8nr7XPswA==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: '@chakra-ui/breakpoint-utils': 2.0.8 - '@chakra-ui/react-env': 3.0.0_react@18.2.0 + '@chakra-ui/react-env': 3.0.0(react@18.2.0) '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/menu/2.1.9_rbqan4k27g4r7dhta4dxhf6vse: + /@chakra-ui/menu@2.1.9(@chakra-ui/system@2.5.1)(framer-motion@10.0.1)(react@18.2.0): resolution: {integrity: sha512-ue5nD4QJcl3H3UwN0zZNJmH89XUebnvEdW6THAUL41hDjJ0J/Fjpg9Sgzwug2aBbBXBNbVMsUuhcCj6x91d+IQ==} peerDependencies: '@chakra-ui/system': '>=2.0.0' framer-motion: '>=4.0.0' react: '>=18' dependencies: - '@chakra-ui/clickable': 2.0.14_react@18.2.0 - '@chakra-ui/descendant': 3.0.13_react@18.2.0 + '@chakra-ui/clickable': 2.0.14(react@18.2.0) + '@chakra-ui/descendant': 3.0.13(react@18.2.0) '@chakra-ui/lazy-utils': 2.0.5 - '@chakra-ui/popper': 3.0.13_react@18.2.0 - '@chakra-ui/react-children-utils': 2.0.6_react@18.2.0 - '@chakra-ui/react-context': 2.0.7_react@18.2.0 - '@chakra-ui/react-use-animation-state': 2.0.8_react@18.2.0 - '@chakra-ui/react-use-controllable-state': 2.0.8_react@18.2.0 - '@chakra-ui/react-use-disclosure': 2.0.8_react@18.2.0 - '@chakra-ui/react-use-focus-effect': 2.0.9_react@18.2.0 - '@chakra-ui/react-use-merge-refs': 2.0.7_react@18.2.0 - '@chakra-ui/react-use-outside-click': 2.0.7_react@18.2.0 - '@chakra-ui/react-use-update-effect': 2.0.7_react@18.2.0 + '@chakra-ui/popper': 3.0.13(react@18.2.0) + '@chakra-ui/react-children-utils': 2.0.6(react@18.2.0) + '@chakra-ui/react-context': 2.0.7(react@18.2.0) + '@chakra-ui/react-use-animation-state': 2.0.8(react@18.2.0) + '@chakra-ui/react-use-controllable-state': 2.0.8(react@18.2.0) + '@chakra-ui/react-use-disclosure': 2.0.8(react@18.2.0) + '@chakra-ui/react-use-focus-effect': 2.0.9(react@18.2.0) + '@chakra-ui/react-use-merge-refs': 2.0.7(react@18.2.0) + '@chakra-ui/react-use-outside-click': 2.0.7(react@18.2.0) + '@chakra-ui/react-use-update-effect': 2.0.7(react@18.2.0) '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba - '@chakra-ui/transition': 2.0.15_vexppao3ect22qrf7pe276h5iq - framer-motion: 10.0.1_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) + '@chakra-ui/transition': 2.0.15(framer-motion@10.0.1)(react@18.2.0) + framer-motion: 10.0.1(react-dom@18.2.0)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/menu/2.1.9_uvmwz4ujdteijqix7ts4qbucni: + /@chakra-ui/menu@2.1.9(@chakra-ui/system@2.5.1)(framer-motion@9.1.7)(react@18.2.0): resolution: {integrity: sha512-ue5nD4QJcl3H3UwN0zZNJmH89XUebnvEdW6THAUL41hDjJ0J/Fjpg9Sgzwug2aBbBXBNbVMsUuhcCj6x91d+IQ==} peerDependencies: '@chakra-ui/system': '>=2.0.0' framer-motion: '>=4.0.0' react: '>=18' dependencies: - '@chakra-ui/clickable': 2.0.14_react@18.2.0 - '@chakra-ui/descendant': 3.0.13_react@18.2.0 + '@chakra-ui/clickable': 2.0.14(react@18.2.0) + '@chakra-ui/descendant': 3.0.13(react@18.2.0) '@chakra-ui/lazy-utils': 2.0.5 - '@chakra-ui/popper': 3.0.13_react@18.2.0 - '@chakra-ui/react-children-utils': 2.0.6_react@18.2.0 - '@chakra-ui/react-context': 2.0.7_react@18.2.0 - '@chakra-ui/react-use-animation-state': 2.0.8_react@18.2.0 - '@chakra-ui/react-use-controllable-state': 2.0.8_react@18.2.0 - '@chakra-ui/react-use-disclosure': 2.0.8_react@18.2.0 - '@chakra-ui/react-use-focus-effect': 2.0.9_react@18.2.0 - '@chakra-ui/react-use-merge-refs': 2.0.7_react@18.2.0 - '@chakra-ui/react-use-outside-click': 2.0.7_react@18.2.0 - '@chakra-ui/react-use-update-effect': 2.0.7_react@18.2.0 + '@chakra-ui/popper': 3.0.13(react@18.2.0) + '@chakra-ui/react-children-utils': 2.0.6(react@18.2.0) + '@chakra-ui/react-context': 2.0.7(react@18.2.0) + '@chakra-ui/react-use-animation-state': 2.0.8(react@18.2.0) + '@chakra-ui/react-use-controllable-state': 2.0.8(react@18.2.0) + '@chakra-ui/react-use-disclosure': 2.0.8(react@18.2.0) + '@chakra-ui/react-use-focus-effect': 2.0.9(react@18.2.0) + '@chakra-ui/react-use-merge-refs': 2.0.7(react@18.2.0) + '@chakra-ui/react-use-outside-click': 2.0.7(react@18.2.0) + '@chakra-ui/react-use-update-effect': 2.0.7(react@18.2.0) '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba - '@chakra-ui/transition': 2.0.15_vs4eiolfr5o6gkrfj7pnlrsapu - framer-motion: 9.1.7_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) + '@chakra-ui/transition': 2.0.15(framer-motion@9.1.7)(react@18.2.0) + framer-motion: 9.1.7(react-dom@18.2.0)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/modal/2.2.9_f5djqfkoryynopvtwe6puwazpe: + /@chakra-ui/modal@2.2.9(@chakra-ui/system@2.5.1)(@types/react@18.0.28)(framer-motion@10.0.1)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-nTfNp7XsVwn5+xJOtstoFA8j0kq/9sJj7KesyYzjEDaMKvCZvIOntRYowoydho43jb4+YC7ebKhp0KOIINS0gg==} peerDependencies: '@chakra-ui/system': '>=2.0.0' @@ -1886,25 +1972,25 @@ packages: react: '>=18' react-dom: '>=18' dependencies: - '@chakra-ui/close-button': 2.0.17_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/focus-lock': 2.0.16_pmekkgnqduwlme35zpnqhenc34 - '@chakra-ui/portal': 2.0.15_biqbaboplfbrettd7655fr4n2y - '@chakra-ui/react-context': 2.0.7_react@18.2.0 - '@chakra-ui/react-types': 2.0.7_react@18.2.0 - '@chakra-ui/react-use-merge-refs': 2.0.7_react@18.2.0 + '@chakra-ui/close-button': 2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/focus-lock': 2.0.16(@types/react@18.0.28)(react@18.2.0) + '@chakra-ui/portal': 2.0.15(react-dom@18.2.0)(react@18.2.0) + '@chakra-ui/react-context': 2.0.7(react@18.2.0) + '@chakra-ui/react-types': 2.0.7(react@18.2.0) + '@chakra-ui/react-use-merge-refs': 2.0.7(react@18.2.0) '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba - '@chakra-ui/transition': 2.0.15_vexppao3ect22qrf7pe276h5iq + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) + '@chakra-ui/transition': 2.0.15(framer-motion@10.0.1)(react@18.2.0) aria-hidden: 1.2.3 - framer-motion: 10.0.1_biqbaboplfbrettd7655fr4n2y + framer-motion: 10.0.1(react-dom@18.2.0)(react@18.2.0) react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 - react-remove-scroll: 2.5.5_pmekkgnqduwlme35zpnqhenc34 + react-dom: 18.2.0(react@18.2.0) + react-remove-scroll: 2.5.5(@types/react@18.0.28)(react@18.2.0) transitivePeerDependencies: - '@types/react' dev: false - /@chakra-ui/modal/2.2.9_hmbgi7dlwu4h6cvj66zqyp34ci: + /@chakra-ui/modal@2.2.9(@chakra-ui/system@2.5.1)(@types/react@18.0.28)(framer-motion@9.1.7)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-nTfNp7XsVwn5+xJOtstoFA8j0kq/9sJj7KesyYzjEDaMKvCZvIOntRYowoydho43jb4+YC7ebKhp0KOIINS0gg==} peerDependencies: '@chakra-ui/system': '>=2.0.0' @@ -1912,151 +1998,151 @@ packages: react: '>=18' react-dom: '>=18' dependencies: - '@chakra-ui/close-button': 2.0.17_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/focus-lock': 2.0.16_pmekkgnqduwlme35zpnqhenc34 - '@chakra-ui/portal': 2.0.15_biqbaboplfbrettd7655fr4n2y - '@chakra-ui/react-context': 2.0.7_react@18.2.0 - '@chakra-ui/react-types': 2.0.7_react@18.2.0 - '@chakra-ui/react-use-merge-refs': 2.0.7_react@18.2.0 + '@chakra-ui/close-button': 2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/focus-lock': 2.0.16(@types/react@18.0.28)(react@18.2.0) + '@chakra-ui/portal': 2.0.15(react-dom@18.2.0)(react@18.2.0) + '@chakra-ui/react-context': 2.0.7(react@18.2.0) + '@chakra-ui/react-types': 2.0.7(react@18.2.0) + '@chakra-ui/react-use-merge-refs': 2.0.7(react@18.2.0) '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba - '@chakra-ui/transition': 2.0.15_vs4eiolfr5o6gkrfj7pnlrsapu + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) + '@chakra-ui/transition': 2.0.15(framer-motion@9.1.7)(react@18.2.0) aria-hidden: 1.2.3 - framer-motion: 9.1.7_biqbaboplfbrettd7655fr4n2y + framer-motion: 9.1.7(react-dom@18.2.0)(react@18.2.0) react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 - react-remove-scroll: 2.5.5_pmekkgnqduwlme35zpnqhenc34 + react-dom: 18.2.0(react@18.2.0) + react-remove-scroll: 2.5.5(@types/react@18.0.28)(react@18.2.0) transitivePeerDependencies: - '@types/react' dev: false - /@chakra-ui/number-input/2.0.18_n3dxrjldmk5gnycgnw7noyo5tu: + /@chakra-ui/number-input@2.0.18(@chakra-ui/system@2.5.1)(react@18.2.0): resolution: {integrity: sha512-cPkyAFFHHzeFBselrT1BtjlzMkJ6TKrTDUnHFlzqXy6aqeXuhrjFhMfXucjedSpOqedsP9ZbKFTdIAhu9DdL/A==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/counter': 2.0.14_react@18.2.0 - '@chakra-ui/form-control': 2.0.17_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/icon': 3.0.16_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/react-context': 2.0.7_react@18.2.0 - '@chakra-ui/react-types': 2.0.7_react@18.2.0 - '@chakra-ui/react-use-callback-ref': 2.0.7_react@18.2.0 - '@chakra-ui/react-use-event-listener': 2.0.7_react@18.2.0 - '@chakra-ui/react-use-interval': 2.0.5_react@18.2.0 - '@chakra-ui/react-use-merge-refs': 2.0.7_react@18.2.0 - '@chakra-ui/react-use-safe-layout-effect': 2.0.5_react@18.2.0 - '@chakra-ui/react-use-update-effect': 2.0.7_react@18.2.0 + '@chakra-ui/counter': 2.0.14(react@18.2.0) + '@chakra-ui/form-control': 2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/icon': 3.0.16(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/react-context': 2.0.7(react@18.2.0) + '@chakra-ui/react-types': 2.0.7(react@18.2.0) + '@chakra-ui/react-use-callback-ref': 2.0.7(react@18.2.0) + '@chakra-ui/react-use-event-listener': 2.0.7(react@18.2.0) + '@chakra-ui/react-use-interval': 2.0.5(react@18.2.0) + '@chakra-ui/react-use-merge-refs': 2.0.7(react@18.2.0) + '@chakra-ui/react-use-safe-layout-effect': 2.0.5(react@18.2.0) + '@chakra-ui/react-use-update-effect': 2.0.7(react@18.2.0) '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/number-utils/2.0.7: + /@chakra-ui/number-utils@2.0.7: resolution: {integrity: sha512-yOGxBjXNvLTBvQyhMDqGU0Oj26s91mbAlqKHiuw737AXHt0aPllOthVUqQMeaYLwLCjGMg0jtI7JReRzyi94Dg==} dev: false - /@chakra-ui/object-utils/2.0.8: + /@chakra-ui/object-utils@2.0.8: resolution: {integrity: sha512-2upjT2JgRuiupdrtBWklKBS6tqeGMA77Nh6Q0JaoQuH/8yq+15CGckqn3IUWkWoGI0Fg3bK9LDlbbD+9DLw95Q==} dev: false - /@chakra-ui/pin-input/2.0.19_n3dxrjldmk5gnycgnw7noyo5tu: + /@chakra-ui/pin-input@2.0.19(@chakra-ui/system@2.5.1)(react@18.2.0): resolution: {integrity: sha512-6O7s4vWz4cqQ6zvMov9sYj6ZqWAsTxR/MNGe3DNgu1zWQg8veNCYtj1rNGhNS3eZNUMAa8uM2dXIphGTP53Xow==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/descendant': 3.0.13_react@18.2.0 - '@chakra-ui/react-children-utils': 2.0.6_react@18.2.0 - '@chakra-ui/react-context': 2.0.7_react@18.2.0 - '@chakra-ui/react-use-controllable-state': 2.0.8_react@18.2.0 - '@chakra-ui/react-use-merge-refs': 2.0.7_react@18.2.0 + '@chakra-ui/descendant': 3.0.13(react@18.2.0) + '@chakra-ui/react-children-utils': 2.0.6(react@18.2.0) + '@chakra-ui/react-context': 2.0.7(react@18.2.0) + '@chakra-ui/react-use-controllable-state': 2.0.8(react@18.2.0) + '@chakra-ui/react-use-merge-refs': 2.0.7(react@18.2.0) '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/popover/2.1.8_rbqan4k27g4r7dhta4dxhf6vse: + /@chakra-ui/popover@2.1.8(@chakra-ui/system@2.5.1)(framer-motion@10.0.1)(react@18.2.0): resolution: {integrity: sha512-ob7fAz+WWmXIq7iGHVB3wDKzZTj+T+noYBT/U1Q+jIf+jMr2WOpJLTfb0HTZcfhvn4EBFlfBg7Wk5qbXNaOn7g==} peerDependencies: '@chakra-ui/system': '>=2.0.0' framer-motion: '>=4.0.0' react: '>=18' dependencies: - '@chakra-ui/close-button': 2.0.17_n3dxrjldmk5gnycgnw7noyo5tu + '@chakra-ui/close-button': 2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0) '@chakra-ui/lazy-utils': 2.0.5 - '@chakra-ui/popper': 3.0.13_react@18.2.0 - '@chakra-ui/react-context': 2.0.7_react@18.2.0 - '@chakra-ui/react-types': 2.0.7_react@18.2.0 - '@chakra-ui/react-use-animation-state': 2.0.8_react@18.2.0 - '@chakra-ui/react-use-disclosure': 2.0.8_react@18.2.0 - '@chakra-ui/react-use-focus-effect': 2.0.9_react@18.2.0 - '@chakra-ui/react-use-focus-on-pointer-down': 2.0.6_react@18.2.0 - '@chakra-ui/react-use-merge-refs': 2.0.7_react@18.2.0 + '@chakra-ui/popper': 3.0.13(react@18.2.0) + '@chakra-ui/react-context': 2.0.7(react@18.2.0) + '@chakra-ui/react-types': 2.0.7(react@18.2.0) + '@chakra-ui/react-use-animation-state': 2.0.8(react@18.2.0) + '@chakra-ui/react-use-disclosure': 2.0.8(react@18.2.0) + '@chakra-ui/react-use-focus-effect': 2.0.9(react@18.2.0) + '@chakra-ui/react-use-focus-on-pointer-down': 2.0.6(react@18.2.0) + '@chakra-ui/react-use-merge-refs': 2.0.7(react@18.2.0) '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba - framer-motion: 10.0.1_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) + framer-motion: 10.0.1(react-dom@18.2.0)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/popover/2.1.8_uvmwz4ujdteijqix7ts4qbucni: + /@chakra-ui/popover@2.1.8(@chakra-ui/system@2.5.1)(framer-motion@9.1.7)(react@18.2.0): resolution: {integrity: sha512-ob7fAz+WWmXIq7iGHVB3wDKzZTj+T+noYBT/U1Q+jIf+jMr2WOpJLTfb0HTZcfhvn4EBFlfBg7Wk5qbXNaOn7g==} peerDependencies: '@chakra-ui/system': '>=2.0.0' framer-motion: '>=4.0.0' react: '>=18' dependencies: - '@chakra-ui/close-button': 2.0.17_n3dxrjldmk5gnycgnw7noyo5tu + '@chakra-ui/close-button': 2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0) '@chakra-ui/lazy-utils': 2.0.5 - '@chakra-ui/popper': 3.0.13_react@18.2.0 - '@chakra-ui/react-context': 2.0.7_react@18.2.0 - '@chakra-ui/react-types': 2.0.7_react@18.2.0 - '@chakra-ui/react-use-animation-state': 2.0.8_react@18.2.0 - '@chakra-ui/react-use-disclosure': 2.0.8_react@18.2.0 - '@chakra-ui/react-use-focus-effect': 2.0.9_react@18.2.0 - '@chakra-ui/react-use-focus-on-pointer-down': 2.0.6_react@18.2.0 - '@chakra-ui/react-use-merge-refs': 2.0.7_react@18.2.0 + '@chakra-ui/popper': 3.0.13(react@18.2.0) + '@chakra-ui/react-context': 2.0.7(react@18.2.0) + '@chakra-ui/react-types': 2.0.7(react@18.2.0) + '@chakra-ui/react-use-animation-state': 2.0.8(react@18.2.0) + '@chakra-ui/react-use-disclosure': 2.0.8(react@18.2.0) + '@chakra-ui/react-use-focus-effect': 2.0.9(react@18.2.0) + '@chakra-ui/react-use-focus-on-pointer-down': 2.0.6(react@18.2.0) + '@chakra-ui/react-use-merge-refs': 2.0.7(react@18.2.0) '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba - framer-motion: 9.1.7_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) + framer-motion: 9.1.7(react-dom@18.2.0)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/popper/3.0.13_react@18.2.0: + /@chakra-ui/popper@3.0.13(react@18.2.0): resolution: {integrity: sha512-FwtmYz80Ju8oK3Z1HQfisUE7JIMmDsCQsRBu6XuJ3TFQnBHit73yjZmxKjuRJ4JgyT4WBnZoTF3ATbRKSagBeg==} peerDependencies: react: '>=18' dependencies: - '@chakra-ui/react-types': 2.0.7_react@18.2.0 - '@chakra-ui/react-use-merge-refs': 2.0.7_react@18.2.0 + '@chakra-ui/react-types': 2.0.7(react@18.2.0) + '@chakra-ui/react-use-merge-refs': 2.0.7(react@18.2.0) '@popperjs/core': 2.11.6 react: 18.2.0 dev: false - /@chakra-ui/portal/2.0.15_biqbaboplfbrettd7655fr4n2y: + /@chakra-ui/portal@2.0.15(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-z8v7K3j1/nMuBzp2+wRIIw7s/eipVtnXLdjK5yqbMxMRa44E8Mu5VNJLz3aQFLHXEUST+ifqrjImQeli9do6LQ==} peerDependencies: react: '>=18' react-dom: '>=18' dependencies: - '@chakra-ui/react-context': 2.0.7_react@18.2.0 - '@chakra-ui/react-use-safe-layout-effect': 2.0.5_react@18.2.0 + '@chakra-ui/react-context': 2.0.7(react@18.2.0) + '@chakra-ui/react-use-safe-layout-effect': 2.0.5(react@18.2.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 - /@chakra-ui/progress/2.1.5_n3dxrjldmk5gnycgnw7noyo5tu: + /@chakra-ui/progress@2.1.5(@chakra-ui/system@2.5.1)(react@18.2.0): resolution: {integrity: sha512-jj5Vp4lxUchuwp4RPCepM0yAyKi344bgsOd3Apd+ldxclDcewPc82fbwDu7g/Xv27LqJkT+7E/SlQy04wGrk0g==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/react-context': 2.0.7_react@18.2.0 - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba + '@chakra-ui/react-context': 2.0.7(react@18.2.0) + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/provider/2.1.2_fbxtuirhogpez7m7qjkm3itwca: + /@chakra-ui/provider@2.1.2(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-4lLlz8QuJv00BhfyKzWpzfoti9MDOdJ/MqXixJV/EZ02RMBOdE9qy9bSz/WckPC2MVhtRUuwMkxH+0QY21PXuw==} peerDependencies: '@emotion/react': ^11.0.0 @@ -2064,34 +2150,34 @@ packages: react: '>=18' react-dom: '>=18' dependencies: - '@chakra-ui/css-reset': 2.0.12_3og6jmu6wvzuytygvdoxepq3x4 - '@chakra-ui/portal': 2.0.15_biqbaboplfbrettd7655fr4n2y - '@chakra-ui/react-env': 3.0.0_react@18.2.0 - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba + '@chakra-ui/css-reset': 2.0.12(@emotion/react@11.10.6)(react@18.2.0) + '@chakra-ui/portal': 2.0.15(react-dom@18.2.0)(react@18.2.0) + '@chakra-ui/react-env': 3.0.0(react@18.2.0) + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) '@chakra-ui/utils': 2.0.15 - '@emotion/react': 11.10.6_pmekkgnqduwlme35zpnqhenc34 - '@emotion/styled': 11.10.6_oouaibmszuch5k64ms7uxp2aia + '@emotion/react': 11.10.6(@types/react@18.0.28)(react@18.2.0) + '@emotion/styled': 11.10.6(@emotion/react@11.10.6)(@types/react@18.0.28)(react@18.2.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 - /@chakra-ui/radio/2.0.19_n3dxrjldmk5gnycgnw7noyo5tu: + /@chakra-ui/radio@2.0.19(@chakra-ui/system@2.5.1)(react@18.2.0): resolution: {integrity: sha512-PlJiV59eGSmeKP4v/4+ccQUWGRd0cjPKkj/p3L+UbOf8pl9dWm8y9kIeL5TYbghQSDv0nzkrH4+yMnnDTZjdMQ==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/form-control': 2.0.17_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/react-context': 2.0.7_react@18.2.0 - '@chakra-ui/react-types': 2.0.7_react@18.2.0 - '@chakra-ui/react-use-merge-refs': 2.0.7_react@18.2.0 + '@chakra-ui/form-control': 2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/react-context': 2.0.7(react@18.2.0) + '@chakra-ui/react-types': 2.0.7(react@18.2.0) + '@chakra-ui/react-use-merge-refs': 2.0.7(react@18.2.0) '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) '@zag-js/focus-visible': 0.2.1 react: 18.2.0 dev: false - /@chakra-ui/react-children-utils/2.0.6_react@18.2.0: + /@chakra-ui/react-children-utils@2.0.6(react@18.2.0): resolution: {integrity: sha512-QVR2RC7QsOsbWwEnq9YduhpqSFnZGvjjGREV8ygKi8ADhXh93C8azLECCUVgRJF2Wc+So1fgxmjLcbZfY2VmBA==} peerDependencies: react: '>=18' @@ -2099,7 +2185,7 @@ packages: react: 18.2.0 dev: false - /@chakra-ui/react-context/2.0.7_react@18.2.0: + /@chakra-ui/react-context@2.0.7(react@18.2.0): resolution: {integrity: sha512-i7EGmSU+h2GB30cwrKB4t1R5BMHyGoJM5L2Zz7b+ZUX4aAqyPcfe97wPiQB6Rgr1ImGXrUeov4CDVrRZ2FPgLQ==} peerDependencies: react: '>=18' @@ -2107,16 +2193,16 @@ packages: react: 18.2.0 dev: false - /@chakra-ui/react-env/3.0.0_react@18.2.0: + /@chakra-ui/react-env@3.0.0(react@18.2.0): resolution: {integrity: sha512-tfMRO2v508HQWAqSADFrwZgR9oU10qC97oV6zGbjHh9ALP0/IcFR+Bi71KRTveDTm85fMeAzZYGj57P3Dsipkw==} peerDependencies: react: '>=18' dependencies: - '@chakra-ui/react-use-safe-layout-effect': 2.0.5_react@18.2.0 + '@chakra-ui/react-use-safe-layout-effect': 2.0.5(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/react-types/2.0.7_react@18.2.0: + /@chakra-ui/react-types@2.0.7(react@18.2.0): resolution: {integrity: sha512-12zv2qIZ8EHwiytggtGvo4iLT0APris7T0qaAWqzpUGS0cdUtR8W+V1BJ5Ocq+7tA6dzQ/7+w5hmXih61TuhWQ==} peerDependencies: react: '>=18' @@ -2124,17 +2210,17 @@ packages: react: 18.2.0 dev: false - /@chakra-ui/react-use-animation-state/2.0.8_react@18.2.0: + /@chakra-ui/react-use-animation-state@2.0.8(react@18.2.0): resolution: {integrity: sha512-xv9zSF2Rd1mHWQ+m5DLBWeh4atF8qrNvsOs3MNrvxKYBS3f79N3pqcQGrWAEvirXWXfiCeje2VAkEggqFRIo+Q==} peerDependencies: react: '>=18' dependencies: '@chakra-ui/dom-utils': 2.0.6 - '@chakra-ui/react-use-event-listener': 2.0.7_react@18.2.0 + '@chakra-ui/react-use-event-listener': 2.0.7(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/react-use-callback-ref/2.0.7_react@18.2.0: + /@chakra-ui/react-use-callback-ref@2.0.7(react@18.2.0): resolution: {integrity: sha512-YjT76nTpfHAK5NxplAlZsQwNju5KmQExnqsWNPFeOR6vvbC34+iPSTr+r91i1Hdy7gBSbevsOsd5Wm6RN3GuMw==} peerDependencies: react: '>=18' @@ -2142,64 +2228,64 @@ packages: react: 18.2.0 dev: false - /@chakra-ui/react-use-controllable-state/2.0.8_react@18.2.0: + /@chakra-ui/react-use-controllable-state@2.0.8(react@18.2.0): resolution: {integrity: sha512-F7rdCbLEmRjwwODqWZ3y+mKgSSHPcLQxeUygwk1BkZPXbKkJJKymOIjIynil2cbH7ku3hcSIWRvuhpCcfQWJ7Q==} peerDependencies: react: '>=18' dependencies: - '@chakra-ui/react-use-callback-ref': 2.0.7_react@18.2.0 + '@chakra-ui/react-use-callback-ref': 2.0.7(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/react-use-disclosure/2.0.8_react@18.2.0: + /@chakra-ui/react-use-disclosure@2.0.8(react@18.2.0): resolution: {integrity: sha512-2ir/mHe1YND40e+FyLHnDsnDsBQPwzKDLzfe9GZri7y31oU83JSbHdlAXAhp3bpjohslwavtRCp+S/zRxfO9aQ==} peerDependencies: react: '>=18' dependencies: - '@chakra-ui/react-use-callback-ref': 2.0.7_react@18.2.0 + '@chakra-ui/react-use-callback-ref': 2.0.7(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/react-use-event-listener/2.0.7_react@18.2.0: + /@chakra-ui/react-use-event-listener@2.0.7(react@18.2.0): resolution: {integrity: sha512-4wvpx4yudIO3B31pOrXuTHDErawmwiXnvAN7gLEOVREi16+YGNcFnRJ5X5nRrmB7j2MDUtsEDpRBFfw5Z9xQ5g==} peerDependencies: react: '>=18' dependencies: - '@chakra-ui/react-use-callback-ref': 2.0.7_react@18.2.0 + '@chakra-ui/react-use-callback-ref': 2.0.7(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/react-use-focus-effect/2.0.9_react@18.2.0: + /@chakra-ui/react-use-focus-effect@2.0.9(react@18.2.0): resolution: {integrity: sha512-20nfNkpbVwyb41q9wxp8c4jmVp6TUGAPE3uFTDpiGcIOyPW5aecQtPmTXPMJH+2aa8Nu1wyoT1btxO+UYiQM3g==} peerDependencies: react: '>=18' dependencies: '@chakra-ui/dom-utils': 2.0.6 - '@chakra-ui/react-use-event-listener': 2.0.7_react@18.2.0 - '@chakra-ui/react-use-safe-layout-effect': 2.0.5_react@18.2.0 - '@chakra-ui/react-use-update-effect': 2.0.7_react@18.2.0 + '@chakra-ui/react-use-event-listener': 2.0.7(react@18.2.0) + '@chakra-ui/react-use-safe-layout-effect': 2.0.5(react@18.2.0) + '@chakra-ui/react-use-update-effect': 2.0.7(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/react-use-focus-on-pointer-down/2.0.6_react@18.2.0: + /@chakra-ui/react-use-focus-on-pointer-down@2.0.6(react@18.2.0): resolution: {integrity: sha512-OigXiLRVySn3tyVqJ/rn57WGuukW8TQe8fJYiLwXbcNyAMuYYounvRxvCy2b53sQ7QIZamza0N0jhirbH5FNoQ==} peerDependencies: react: '>=18' dependencies: - '@chakra-ui/react-use-event-listener': 2.0.7_react@18.2.0 + '@chakra-ui/react-use-event-listener': 2.0.7(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/react-use-interval/2.0.5_react@18.2.0: + /@chakra-ui/react-use-interval@2.0.5(react@18.2.0): resolution: {integrity: sha512-1nbdwMi2K87V6p5f5AseOKif2CkldLaJlq1TOqaPRwb7v3aU9rltBtYdf+fIyuHSToNJUV6wd9budCFdLCl3Fg==} peerDependencies: react: '>=18' dependencies: - '@chakra-ui/react-use-callback-ref': 2.0.7_react@18.2.0 + '@chakra-ui/react-use-callback-ref': 2.0.7(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/react-use-latest-ref/2.0.5_react@18.2.0: + /@chakra-ui/react-use-latest-ref@2.0.5(react@18.2.0): resolution: {integrity: sha512-3mIuFzMyIo3Ok/D8uhV9voVg7KkrYVO/pwVvNPJOHsDQqCA6DpYE4WDsrIx+fVcwad3Ta7SupexR5PoI+kq6QQ==} peerDependencies: react: '>=18' @@ -2207,7 +2293,7 @@ packages: react: 18.2.0 dev: false - /@chakra-ui/react-use-merge-refs/2.0.7_react@18.2.0: + /@chakra-ui/react-use-merge-refs@2.0.7(react@18.2.0): resolution: {integrity: sha512-zds4Uhsc+AMzdH8JDDkLVet9baUBgtOjPbhC5r3A0ZXjZvGhCztFAVE3aExYiVoMPoHLKbLcqvCWE6ioFKz1lw==} peerDependencies: react: '>=18' @@ -2215,27 +2301,27 @@ packages: react: 18.2.0 dev: false - /@chakra-ui/react-use-outside-click/2.0.7_react@18.2.0: + /@chakra-ui/react-use-outside-click@2.0.7(react@18.2.0): resolution: {integrity: sha512-MsAuGLkwYNxNJ5rb8lYNvXApXxYMnJ3MzqBpQj1kh5qP/+JSla9XMjE/P94ub4fSEttmNSqs43SmPPrmPuihsQ==} peerDependencies: react: '>=18' dependencies: - '@chakra-ui/react-use-callback-ref': 2.0.7_react@18.2.0 + '@chakra-ui/react-use-callback-ref': 2.0.7(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/react-use-pan-event/2.0.9_react@18.2.0: + /@chakra-ui/react-use-pan-event@2.0.9(react@18.2.0): resolution: {integrity: sha512-xu35QXkiyrgsHUOnctl+SwNcwf9Rl62uYE5y8soKOZdBm8E+FvZIt2hxUzK1EoekbJCMzEZ0Yv1ZQCssVkSLaQ==} peerDependencies: react: '>=18' dependencies: '@chakra-ui/event-utils': 2.0.8 - '@chakra-ui/react-use-latest-ref': 2.0.5_react@18.2.0 + '@chakra-ui/react-use-latest-ref': 2.0.5(react@18.2.0) framesync: 6.1.2 react: 18.2.0 dev: false - /@chakra-ui/react-use-previous/2.0.5_react@18.2.0: + /@chakra-ui/react-use-previous@2.0.5(react@18.2.0): resolution: {integrity: sha512-BIZgjycPE4Xr+MkhKe0h67uHXzQQkBX/u5rYPd65iMGdX1bCkbE0oorZNfOHLKdTmnEb4oVsNvfN6Rfr+Mnbxw==} peerDependencies: react: '>=18' @@ -2243,7 +2329,7 @@ packages: react: 18.2.0 dev: false - /@chakra-ui/react-use-safe-layout-effect/2.0.5_react@18.2.0: + /@chakra-ui/react-use-safe-layout-effect@2.0.5(react@18.2.0): resolution: {integrity: sha512-MwAQBz3VxoeFLaesaSEN87reVNVbjcQBDex2WGexAg6hUB6n4gc1OWYH/iXp4tzp4kuggBNhEHkk9BMYXWfhJQ==} peerDependencies: react: '>=18' @@ -2251,7 +2337,7 @@ packages: react: 18.2.0 dev: false - /@chakra-ui/react-use-size/2.0.9_react@18.2.0: + /@chakra-ui/react-use-size@2.0.9(react@18.2.0): resolution: {integrity: sha512-Jce7QmO1jlQZq+Y77VKckWzroRnajChzUQ8xhLQZO6VbYvrpg3cu+X2QCz3G+MZzB+1/hnvvAqmZ+uJLd8rEJg==} peerDependencies: react: '>=18' @@ -2260,16 +2346,16 @@ packages: react: 18.2.0 dev: false - /@chakra-ui/react-use-timeout/2.0.5_react@18.2.0: + /@chakra-ui/react-use-timeout@2.0.5(react@18.2.0): resolution: {integrity: sha512-QqmB+jVphh3h/CS60PieorpY7UqSPkrQCB7f7F+i9vwwIjtP8fxVHMmkb64K7VlzQiMPzv12nlID5dqkzlv0mw==} peerDependencies: react: '>=18' dependencies: - '@chakra-ui/react-use-callback-ref': 2.0.7_react@18.2.0 + '@chakra-ui/react-use-callback-ref': 2.0.7(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/react-use-update-effect/2.0.7_react@18.2.0: + /@chakra-ui/react-use-update-effect@2.0.7(react@18.2.0): resolution: {integrity: sha512-vBM2bmmM83ZdDtasWv3PXPznpTUd+FvqBC8J8rxoRmvdMEfrxTiQRBJhiGHLpS9BPLLPQlosN6KdFU97csB6zg==} peerDependencies: react: '>=18' @@ -2277,7 +2363,7 @@ packages: react: 18.2.0 dev: false - /@chakra-ui/react-utils/2.0.12_react@18.2.0: + /@chakra-ui/react-utils@2.0.12(react@18.2.0): resolution: {integrity: sha512-GbSfVb283+YA3kA8w8xWmzbjNWk14uhNpntnipHCftBibl0lxtQ9YqMFQLwuFOO0U2gYVocszqqDWX+XNKq9hw==} peerDependencies: react: '>=18' @@ -2286,7 +2372,7 @@ packages: react: 18.2.0 dev: false - /@chakra-ui/react/2.5.1_ggaycw6syoxhvshmbg2schgw2y: + /@chakra-ui/react@2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(@types/react@18.0.28)(framer-motion@10.0.1)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-ugkaqfcNMb9L4TkalWiF3rnqfr0TlUUD46JZaDIZiORVisaSwXTZTQrVfG40VghhaJT28rnC5WtiE8kd567ZBQ==} peerDependencies: '@emotion/react': ^11.0.0 @@ -2295,67 +2381,67 @@ packages: react: '>=18' react-dom: '>=18' dependencies: - '@chakra-ui/accordion': 2.1.9_uvmwz4ujdteijqix7ts4qbucni - '@chakra-ui/alert': 2.0.17_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/avatar': 2.2.5_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/breadcrumb': 2.1.4_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/button': 2.0.16_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/card': 2.1.6_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/checkbox': 2.2.10_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/close-button': 2.0.17_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/control-box': 2.0.13_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/counter': 2.0.14_react@18.2.0 - '@chakra-ui/css-reset': 2.0.12_3og6jmu6wvzuytygvdoxepq3x4 - '@chakra-ui/editable': 2.0.19_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/focus-lock': 2.0.16_pmekkgnqduwlme35zpnqhenc34 - '@chakra-ui/form-control': 2.0.17_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/hooks': 2.1.6_react@18.2.0 - '@chakra-ui/icon': 3.0.16_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/image': 2.0.15_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/input': 2.0.20_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/layout': 2.1.16_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/live-region': 2.0.13_react@18.2.0 - '@chakra-ui/media-query': 3.2.12_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/menu': 2.1.9_uvmwz4ujdteijqix7ts4qbucni - '@chakra-ui/modal': 2.2.9_hmbgi7dlwu4h6cvj66zqyp34ci - '@chakra-ui/number-input': 2.0.18_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/pin-input': 2.0.19_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/popover': 2.1.8_uvmwz4ujdteijqix7ts4qbucni - '@chakra-ui/popper': 3.0.13_react@18.2.0 - '@chakra-ui/portal': 2.0.15_biqbaboplfbrettd7655fr4n2y - '@chakra-ui/progress': 2.1.5_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/provider': 2.1.2_fbxtuirhogpez7m7qjkm3itwca - '@chakra-ui/radio': 2.0.19_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/react-env': 3.0.0_react@18.2.0 - '@chakra-ui/select': 2.0.18_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/skeleton': 2.0.24_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/slider': 2.0.21_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/spinner': 2.0.13_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/stat': 2.0.17_n3dxrjldmk5gnycgnw7noyo5tu + '@chakra-ui/accordion': 2.1.9(@chakra-ui/system@2.5.1)(framer-motion@10.0.1)(react@18.2.0) + '@chakra-ui/alert': 2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/avatar': 2.2.5(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/breadcrumb': 2.1.4(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/button': 2.0.16(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/card': 2.1.6(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/checkbox': 2.2.10(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/close-button': 2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/control-box': 2.0.13(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/counter': 2.0.14(react@18.2.0) + '@chakra-ui/css-reset': 2.0.12(@emotion/react@11.10.6)(react@18.2.0) + '@chakra-ui/editable': 2.0.19(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/focus-lock': 2.0.16(@types/react@18.0.28)(react@18.2.0) + '@chakra-ui/form-control': 2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/hooks': 2.1.6(react@18.2.0) + '@chakra-ui/icon': 3.0.16(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/image': 2.0.15(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/input': 2.0.20(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/layout': 2.1.16(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/live-region': 2.0.13(react@18.2.0) + '@chakra-ui/media-query': 3.2.12(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/menu': 2.1.9(@chakra-ui/system@2.5.1)(framer-motion@10.0.1)(react@18.2.0) + '@chakra-ui/modal': 2.2.9(@chakra-ui/system@2.5.1)(@types/react@18.0.28)(framer-motion@10.0.1)(react-dom@18.2.0)(react@18.2.0) + '@chakra-ui/number-input': 2.0.18(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/pin-input': 2.0.19(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/popover': 2.1.8(@chakra-ui/system@2.5.1)(framer-motion@10.0.1)(react@18.2.0) + '@chakra-ui/popper': 3.0.13(react@18.2.0) + '@chakra-ui/portal': 2.0.15(react-dom@18.2.0)(react@18.2.0) + '@chakra-ui/progress': 2.1.5(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/provider': 2.1.2(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react-dom@18.2.0)(react@18.2.0) + '@chakra-ui/radio': 2.0.19(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/react-env': 3.0.0(react@18.2.0) + '@chakra-ui/select': 2.0.18(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/skeleton': 2.0.24(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/slider': 2.0.21(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/spinner': 2.0.13(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/stat': 2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0) '@chakra-ui/styled-system': 2.6.1 - '@chakra-ui/switch': 2.0.22_uvmwz4ujdteijqix7ts4qbucni - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba - '@chakra-ui/table': 2.0.16_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/tabs': 2.1.8_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/tag': 2.0.17_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/textarea': 2.0.18_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/theme': 2.2.5_es2flcfvdj7o2v4vs237ptvmhy + '@chakra-ui/switch': 2.0.22(@chakra-ui/system@2.5.1)(framer-motion@10.0.1)(react@18.2.0) + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) + '@chakra-ui/table': 2.0.16(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/tabs': 2.1.8(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/tag': 2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/textarea': 2.0.18(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/theme': 2.2.5(@chakra-ui/styled-system@2.6.1) '@chakra-ui/theme-utils': 2.0.11 - '@chakra-ui/toast': 6.0.1_lgjjrw2bpexqc3htqwfitnvqey - '@chakra-ui/tooltip': 2.2.6_lgjjrw2bpexqc3htqwfitnvqey - '@chakra-ui/transition': 2.0.15_vs4eiolfr5o6gkrfj7pnlrsapu + '@chakra-ui/toast': 6.0.1(@chakra-ui/system@2.5.1)(framer-motion@10.0.1)(react-dom@18.2.0)(react@18.2.0) + '@chakra-ui/tooltip': 2.2.6(@chakra-ui/system@2.5.1)(framer-motion@10.0.1)(react-dom@18.2.0)(react@18.2.0) + '@chakra-ui/transition': 2.0.15(framer-motion@10.0.1)(react@18.2.0) '@chakra-ui/utils': 2.0.15 - '@chakra-ui/visually-hidden': 2.0.15_n3dxrjldmk5gnycgnw7noyo5tu - '@emotion/react': 11.10.6_pmekkgnqduwlme35zpnqhenc34 - '@emotion/styled': 11.10.6_oouaibmszuch5k64ms7uxp2aia - framer-motion: 9.1.7_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/visually-hidden': 2.0.15(@chakra-ui/system@2.5.1)(react@18.2.0) + '@emotion/react': 11.10.6(@types/react@18.0.28)(react@18.2.0) + '@emotion/styled': 11.10.6(@emotion/react@11.10.6)(@types/react@18.0.28)(react@18.2.0) + framer-motion: 10.0.1(react-dom@18.2.0)(react@18.2.0) react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 + react-dom: 18.2.0(react@18.2.0) transitivePeerDependencies: - '@types/react' dev: false - /@chakra-ui/react/2.5.1_llidv3byuxn3l2nsibklt32qgu: + /@chakra-ui/react@2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(@types/react@18.0.28)(framer-motion@9.1.7)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-ugkaqfcNMb9L4TkalWiF3rnqfr0TlUUD46JZaDIZiORVisaSwXTZTQrVfG40VghhaJT28rnC5WtiE8kd567ZBQ==} peerDependencies: '@emotion/react': ^11.0.0 @@ -2364,155 +2450,155 @@ packages: react: '>=18' react-dom: '>=18' dependencies: - '@chakra-ui/accordion': 2.1.9_rbqan4k27g4r7dhta4dxhf6vse - '@chakra-ui/alert': 2.0.17_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/avatar': 2.2.5_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/breadcrumb': 2.1.4_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/button': 2.0.16_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/card': 2.1.6_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/checkbox': 2.2.10_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/close-button': 2.0.17_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/control-box': 2.0.13_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/counter': 2.0.14_react@18.2.0 - '@chakra-ui/css-reset': 2.0.12_3og6jmu6wvzuytygvdoxepq3x4 - '@chakra-ui/editable': 2.0.19_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/focus-lock': 2.0.16_pmekkgnqduwlme35zpnqhenc34 - '@chakra-ui/form-control': 2.0.17_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/hooks': 2.1.6_react@18.2.0 - '@chakra-ui/icon': 3.0.16_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/image': 2.0.15_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/input': 2.0.20_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/layout': 2.1.16_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/live-region': 2.0.13_react@18.2.0 - '@chakra-ui/media-query': 3.2.12_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/menu': 2.1.9_rbqan4k27g4r7dhta4dxhf6vse - '@chakra-ui/modal': 2.2.9_f5djqfkoryynopvtwe6puwazpe - '@chakra-ui/number-input': 2.0.18_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/pin-input': 2.0.19_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/popover': 2.1.8_rbqan4k27g4r7dhta4dxhf6vse - '@chakra-ui/popper': 3.0.13_react@18.2.0 - '@chakra-ui/portal': 2.0.15_biqbaboplfbrettd7655fr4n2y - '@chakra-ui/progress': 2.1.5_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/provider': 2.1.2_fbxtuirhogpez7m7qjkm3itwca - '@chakra-ui/radio': 2.0.19_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/react-env': 3.0.0_react@18.2.0 - '@chakra-ui/select': 2.0.18_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/skeleton': 2.0.24_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/slider': 2.0.21_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/spinner': 2.0.13_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/stat': 2.0.17_n3dxrjldmk5gnycgnw7noyo5tu + '@chakra-ui/accordion': 2.1.9(@chakra-ui/system@2.5.1)(framer-motion@9.1.7)(react@18.2.0) + '@chakra-ui/alert': 2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/avatar': 2.2.5(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/breadcrumb': 2.1.4(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/button': 2.0.16(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/card': 2.1.6(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/checkbox': 2.2.10(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/close-button': 2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/control-box': 2.0.13(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/counter': 2.0.14(react@18.2.0) + '@chakra-ui/css-reset': 2.0.12(@emotion/react@11.10.6)(react@18.2.0) + '@chakra-ui/editable': 2.0.19(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/focus-lock': 2.0.16(@types/react@18.0.28)(react@18.2.0) + '@chakra-ui/form-control': 2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/hooks': 2.1.6(react@18.2.0) + '@chakra-ui/icon': 3.0.16(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/image': 2.0.15(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/input': 2.0.20(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/layout': 2.1.16(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/live-region': 2.0.13(react@18.2.0) + '@chakra-ui/media-query': 3.2.12(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/menu': 2.1.9(@chakra-ui/system@2.5.1)(framer-motion@9.1.7)(react@18.2.0) + '@chakra-ui/modal': 2.2.9(@chakra-ui/system@2.5.1)(@types/react@18.0.28)(framer-motion@9.1.7)(react-dom@18.2.0)(react@18.2.0) + '@chakra-ui/number-input': 2.0.18(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/pin-input': 2.0.19(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/popover': 2.1.8(@chakra-ui/system@2.5.1)(framer-motion@9.1.7)(react@18.2.0) + '@chakra-ui/popper': 3.0.13(react@18.2.0) + '@chakra-ui/portal': 2.0.15(react-dom@18.2.0)(react@18.2.0) + '@chakra-ui/progress': 2.1.5(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/provider': 2.1.2(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react-dom@18.2.0)(react@18.2.0) + '@chakra-ui/radio': 2.0.19(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/react-env': 3.0.0(react@18.2.0) + '@chakra-ui/select': 2.0.18(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/skeleton': 2.0.24(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/slider': 2.0.21(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/spinner': 2.0.13(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/stat': 2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0) '@chakra-ui/styled-system': 2.6.1 - '@chakra-ui/switch': 2.0.22_rbqan4k27g4r7dhta4dxhf6vse - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba - '@chakra-ui/table': 2.0.16_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/tabs': 2.1.8_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/tag': 2.0.17_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/textarea': 2.0.18_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/theme': 2.2.5_es2flcfvdj7o2v4vs237ptvmhy + '@chakra-ui/switch': 2.0.22(@chakra-ui/system@2.5.1)(framer-motion@9.1.7)(react@18.2.0) + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) + '@chakra-ui/table': 2.0.16(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/tabs': 2.1.8(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/tag': 2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/textarea': 2.0.18(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/theme': 2.2.5(@chakra-ui/styled-system@2.6.1) '@chakra-ui/theme-utils': 2.0.11 - '@chakra-ui/toast': 6.0.1_4wvzdjbq7b7fvo5etdvvxlketm - '@chakra-ui/tooltip': 2.2.6_4wvzdjbq7b7fvo5etdvvxlketm - '@chakra-ui/transition': 2.0.15_vexppao3ect22qrf7pe276h5iq + '@chakra-ui/toast': 6.0.1(@chakra-ui/system@2.5.1)(framer-motion@9.1.7)(react-dom@18.2.0)(react@18.2.0) + '@chakra-ui/tooltip': 2.2.6(@chakra-ui/system@2.5.1)(framer-motion@9.1.7)(react-dom@18.2.0)(react@18.2.0) + '@chakra-ui/transition': 2.0.15(framer-motion@9.1.7)(react@18.2.0) '@chakra-ui/utils': 2.0.15 - '@chakra-ui/visually-hidden': 2.0.15_n3dxrjldmk5gnycgnw7noyo5tu - '@emotion/react': 11.10.6_pmekkgnqduwlme35zpnqhenc34 - '@emotion/styled': 11.10.6_oouaibmszuch5k64ms7uxp2aia - framer-motion: 10.0.1_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/visually-hidden': 2.0.15(@chakra-ui/system@2.5.1)(react@18.2.0) + '@emotion/react': 11.10.6(@types/react@18.0.28)(react@18.2.0) + '@emotion/styled': 11.10.6(@emotion/react@11.10.6)(@types/react@18.0.28)(react@18.2.0) + framer-motion: 9.1.7(react-dom@18.2.0)(react@18.2.0) react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 + react-dom: 18.2.0(react@18.2.0) transitivePeerDependencies: - '@types/react' dev: false - /@chakra-ui/select/2.0.18_n3dxrjldmk5gnycgnw7noyo5tu: + /@chakra-ui/select@2.0.18(@chakra-ui/system@2.5.1)(react@18.2.0): resolution: {integrity: sha512-1d2lUT5LM6oOs5x4lzBh4GFDuXX62+lr+sgV7099g951/5UNbb0CS2hSZHsO7yZThLNbr7QTWZvAOAayVcGzdw==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/form-control': 2.0.17_n3dxrjldmk5gnycgnw7noyo5tu + '@chakra-ui/form-control': 2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0) '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/shared-utils/2.0.4: + /@chakra-ui/shared-utils@2.0.4: resolution: {integrity: sha512-JGWr+BBj3PXGZQ2gxbKSD1wYjESbYsZjkCeE2nevyVk4rN3amV1wQzCnBAhsuJktMaZD6KC/lteo9ou9QUDzpA==} dev: false - /@chakra-ui/shared-utils/2.0.5: + /@chakra-ui/shared-utils@2.0.5: resolution: {integrity: sha512-4/Wur0FqDov7Y0nCXl7HbHzCg4aq86h+SXdoUeuCMD3dSj7dpsVnStLYhng1vxvlbUnLpdF4oz5Myt3i/a7N3Q==} dev: false - /@chakra-ui/skeleton/2.0.24_n3dxrjldmk5gnycgnw7noyo5tu: + /@chakra-ui/skeleton@2.0.24(@chakra-ui/system@2.5.1)(react@18.2.0): resolution: {integrity: sha512-1jXtVKcl/jpbrJlc/TyMsFyI651GTXY5ma30kWyTXoby2E+cxbV6OR8GB/NMZdGxbQBax8/VdtYVjI0n+OBqWA==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/media-query': 3.2.12_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/react-use-previous': 2.0.5_react@18.2.0 + '@chakra-ui/media-query': 3.2.12(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/react-use-previous': 2.0.5(react@18.2.0) '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/slider/2.0.21_n3dxrjldmk5gnycgnw7noyo5tu: + /@chakra-ui/slider@2.0.21(@chakra-ui/system@2.5.1)(react@18.2.0): resolution: {integrity: sha512-Mm76yJxEqJl21+3waEcKg3tM8Y4elJ7mcViN6Brj35PTfzUJfSJxeBGo1nLPJ+X5jLj7o/L4kfBmUk3lY4QYEQ==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: '@chakra-ui/number-utils': 2.0.7 - '@chakra-ui/react-context': 2.0.7_react@18.2.0 - '@chakra-ui/react-types': 2.0.7_react@18.2.0 - '@chakra-ui/react-use-callback-ref': 2.0.7_react@18.2.0 - '@chakra-ui/react-use-controllable-state': 2.0.8_react@18.2.0 - '@chakra-ui/react-use-latest-ref': 2.0.5_react@18.2.0 - '@chakra-ui/react-use-merge-refs': 2.0.7_react@18.2.0 - '@chakra-ui/react-use-pan-event': 2.0.9_react@18.2.0 - '@chakra-ui/react-use-size': 2.0.9_react@18.2.0 - '@chakra-ui/react-use-update-effect': 2.0.7_react@18.2.0 - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba + '@chakra-ui/react-context': 2.0.7(react@18.2.0) + '@chakra-ui/react-types': 2.0.7(react@18.2.0) + '@chakra-ui/react-use-callback-ref': 2.0.7(react@18.2.0) + '@chakra-ui/react-use-controllable-state': 2.0.8(react@18.2.0) + '@chakra-ui/react-use-latest-ref': 2.0.5(react@18.2.0) + '@chakra-ui/react-use-merge-refs': 2.0.7(react@18.2.0) + '@chakra-ui/react-use-pan-event': 2.0.9(react@18.2.0) + '@chakra-ui/react-use-size': 2.0.9(react@18.2.0) + '@chakra-ui/react-use-update-effect': 2.0.7(react@18.2.0) + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/spinner/2.0.12_n3dxrjldmk5gnycgnw7noyo5tu: + /@chakra-ui/spinner@2.0.12(@chakra-ui/system@2.5.1)(react@18.2.0): resolution: {integrity: sha512-c9R0k7RUgff5g79Q5kX1mE4lsXqLKIskIbPksL7Qm3Zw/ZbDHyNILFFltPLt7350rC9mGzqzEZbizAFlksbdLw==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: '@chakra-ui/shared-utils': 2.0.4 - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/spinner/2.0.13_n3dxrjldmk5gnycgnw7noyo5tu: + /@chakra-ui/spinner@2.0.13(@chakra-ui/system@2.5.1)(react@18.2.0): resolution: {integrity: sha512-T1/aSkVpUIuiYyrjfn1+LsQEG7Onbi1UE9ccS/evgf61Dzy4GgTXQUnDuWFSgpV58owqirqOu6jn/9eCwDlzlg==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/stat/2.0.17_n3dxrjldmk5gnycgnw7noyo5tu: + /@chakra-ui/stat@2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0): resolution: {integrity: sha512-PhD+5oVLWjQmGLfeZSmexp3AtLcaggWBwoMZ4z8QMZIQzf/fJJWMk0bMqxlpTv8ORDkfY/4ImuFB/RJHvcqlcA==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/icon': 3.0.16_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/react-context': 2.0.7_react@18.2.0 + '@chakra-ui/icon': 3.0.16(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/react-context': 2.0.7(react@18.2.0) '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/styled-system/2.6.1: + /@chakra-ui/styled-system@2.6.1: resolution: {integrity: sha512-jy/1dVi1LxjoRCm+Eo5mqBgvPy5SCWMlIcz6GbIZBDpkGeKZwtqrZLjekxxLBCy8ORY+kJlUB0FT6AzVR/1tjw==} dependencies: '@chakra-ui/shared-utils': 2.0.5 @@ -2520,109 +2606,109 @@ packages: lodash.mergewith: 4.6.2 dev: false - /@chakra-ui/switch/2.0.22_rbqan4k27g4r7dhta4dxhf6vse: + /@chakra-ui/switch@2.0.22(@chakra-ui/system@2.5.1)(framer-motion@10.0.1)(react@18.2.0): resolution: {integrity: sha512-+/Yy6y7VFD91uSPruF8ZvePi3tl5D8UNVATtWEQ+QBI92DLSM+PtgJ2F0Y9GMZ9NzMxpZ80DqwY7/kqcPCfLvw==} peerDependencies: '@chakra-ui/system': '>=2.0.0' framer-motion: '>=4.0.0' react: '>=18' dependencies: - '@chakra-ui/checkbox': 2.2.10_n3dxrjldmk5gnycgnw7noyo5tu + '@chakra-ui/checkbox': 2.2.10(@chakra-ui/system@2.5.1)(react@18.2.0) '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba - framer-motion: 10.0.1_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) + framer-motion: 10.0.1(react-dom@18.2.0)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/switch/2.0.22_uvmwz4ujdteijqix7ts4qbucni: + /@chakra-ui/switch@2.0.22(@chakra-ui/system@2.5.1)(framer-motion@9.1.7)(react@18.2.0): resolution: {integrity: sha512-+/Yy6y7VFD91uSPruF8ZvePi3tl5D8UNVATtWEQ+QBI92DLSM+PtgJ2F0Y9GMZ9NzMxpZ80DqwY7/kqcPCfLvw==} peerDependencies: '@chakra-ui/system': '>=2.0.0' framer-motion: '>=4.0.0' react: '>=18' dependencies: - '@chakra-ui/checkbox': 2.2.10_n3dxrjldmk5gnycgnw7noyo5tu + '@chakra-ui/checkbox': 2.2.10(@chakra-ui/system@2.5.1)(react@18.2.0) '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba - framer-motion: 9.1.7_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) + framer-motion: 9.1.7(react-dom@18.2.0)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/system/2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba: + /@chakra-ui/system@2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0): resolution: {integrity: sha512-4+86OrcSoq7lGkm5fh+sJ3IWXSTzjz+HOllRbCW2Rtnmcg7ritiXVNV2VygEg2DrCcx5+tNqRHDM764zW+AEug==} peerDependencies: '@emotion/react': ^11.0.0 '@emotion/styled': ^11.0.0 react: '>=18' dependencies: - '@chakra-ui/color-mode': 2.1.12_react@18.2.0 + '@chakra-ui/color-mode': 2.1.12(react@18.2.0) '@chakra-ui/object-utils': 2.0.8 - '@chakra-ui/react-utils': 2.0.12_react@18.2.0 + '@chakra-ui/react-utils': 2.0.12(react@18.2.0) '@chakra-ui/styled-system': 2.6.1 '@chakra-ui/theme-utils': 2.0.11 '@chakra-ui/utils': 2.0.15 - '@emotion/react': 11.10.6_pmekkgnqduwlme35zpnqhenc34 - '@emotion/styled': 11.10.6_oouaibmszuch5k64ms7uxp2aia + '@emotion/react': 11.10.6(@types/react@18.0.28)(react@18.2.0) + '@emotion/styled': 11.10.6(@emotion/react@11.10.6)(@types/react@18.0.28)(react@18.2.0) react: 18.2.0 react-fast-compare: 3.2.0 dev: false - /@chakra-ui/table/2.0.16_n3dxrjldmk5gnycgnw7noyo5tu: + /@chakra-ui/table@2.0.16(@chakra-ui/system@2.5.1)(react@18.2.0): resolution: {integrity: sha512-vWDXZ6Ad3Aj66curp1tZBHvCfQHX2FJ4ijLiqGgQszWFIchfhJ5vMgEBJaFMZ+BN1draAjuRTZqaQefOApzvRg==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/react-context': 2.0.7_react@18.2.0 + '@chakra-ui/react-context': 2.0.7(react@18.2.0) '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/tabs/2.1.8_n3dxrjldmk5gnycgnw7noyo5tu: + /@chakra-ui/tabs@2.1.8(@chakra-ui/system@2.5.1)(react@18.2.0): resolution: {integrity: sha512-B7LeFN04Ny2jsSy5TFOQxnbZ6ITxGxLxsB2PE0vvQjMSblBrUryOxdjw80HZhfiw6od0ikK9CeKQOIt9QCguSw==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/clickable': 2.0.14_react@18.2.0 - '@chakra-ui/descendant': 3.0.13_react@18.2.0 + '@chakra-ui/clickable': 2.0.14(react@18.2.0) + '@chakra-ui/descendant': 3.0.13(react@18.2.0) '@chakra-ui/lazy-utils': 2.0.5 - '@chakra-ui/react-children-utils': 2.0.6_react@18.2.0 - '@chakra-ui/react-context': 2.0.7_react@18.2.0 - '@chakra-ui/react-use-controllable-state': 2.0.8_react@18.2.0 - '@chakra-ui/react-use-merge-refs': 2.0.7_react@18.2.0 - '@chakra-ui/react-use-safe-layout-effect': 2.0.5_react@18.2.0 + '@chakra-ui/react-children-utils': 2.0.6(react@18.2.0) + '@chakra-ui/react-context': 2.0.7(react@18.2.0) + '@chakra-ui/react-use-controllable-state': 2.0.8(react@18.2.0) + '@chakra-ui/react-use-merge-refs': 2.0.7(react@18.2.0) + '@chakra-ui/react-use-safe-layout-effect': 2.0.5(react@18.2.0) '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/tag/2.0.17_n3dxrjldmk5gnycgnw7noyo5tu: + /@chakra-ui/tag@2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0): resolution: {integrity: sha512-A47zE9Ft9qxOJ+5r1cUseKRCoEdqCRzFm0pOtZgRcckqavglk75Xjgz8HbBpUO2zqqd49MlqdOwR8o87fXS1vg==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/icon': 3.0.16_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/react-context': 2.0.7_react@18.2.0 - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba + '@chakra-ui/icon': 3.0.16(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/react-context': 2.0.7(react@18.2.0) + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/textarea/2.0.18_n3dxrjldmk5gnycgnw7noyo5tu: + /@chakra-ui/textarea@2.0.18(@chakra-ui/system@2.5.1)(react@18.2.0): resolution: {integrity: sha512-aGHHb29vVifO0OtcK/k8cMykzjOKo/coDTU0NJqz7OOLAWIMNV2eGenvmO1n9tTZbmbqHiX+Sa1nPRX+pd14lg==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/form-control': 2.0.17_n3dxrjldmk5gnycgnw7noyo5tu + '@chakra-ui/form-control': 2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0) '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/theme-tools/2.0.17_es2flcfvdj7o2v4vs237ptvmhy: + /@chakra-ui/theme-tools@2.0.17(@chakra-ui/styled-system@2.6.1): resolution: {integrity: sha512-Auu38hnihlJZQcPok6itRDBbwof3TpXGYtDPnOvrq4Xp7jnab36HLt7KEXSDPXbtOk3ZqU99pvI1en5LbDrdjg==} peerDependencies: '@chakra-ui/styled-system': '>=2.0.0' @@ -2633,16 +2719,16 @@ packages: color2k: 2.0.2 dev: false - /@chakra-ui/theme-utils/2.0.11: + /@chakra-ui/theme-utils@2.0.11: resolution: {integrity: sha512-lBAay6Sq3/fl7exd3mFxWAbzgdQowytor0fnlHrpNStn1HgFjXukwsf6356XQOie2Vd8qaMM7qZtMh4AiC0dcg==} dependencies: '@chakra-ui/shared-utils': 2.0.5 '@chakra-ui/styled-system': 2.6.1 - '@chakra-ui/theme': 2.2.5_es2flcfvdj7o2v4vs237ptvmhy + '@chakra-ui/theme': 2.2.5(@chakra-ui/styled-system@2.6.1) lodash.mergewith: 4.6.2 dev: false - /@chakra-ui/theme/2.2.5_es2flcfvdj7o2v4vs237ptvmhy: + /@chakra-ui/theme@2.2.5(@chakra-ui/styled-system@2.6.1): resolution: {integrity: sha512-hYASZMwu0NqEv6PPydu+F3I+kMNd44yR4TwjR/lXBz/LEh64L6UPY6kQjebCfgdVtsGdl3HKg+eLlfa7SvfRgw==} peerDependencies: '@chakra-ui/styled-system': '>=2.0.0' @@ -2650,10 +2736,10 @@ packages: '@chakra-ui/anatomy': 2.1.2 '@chakra-ui/shared-utils': 2.0.5 '@chakra-ui/styled-system': 2.6.1 - '@chakra-ui/theme-tools': 2.0.17_es2flcfvdj7o2v4vs237ptvmhy + '@chakra-ui/theme-tools': 2.0.17(@chakra-ui/styled-system@2.6.1) dev: false - /@chakra-ui/toast/6.0.1_4wvzdjbq7b7fvo5etdvvxlketm: + /@chakra-ui/toast@6.0.1(@chakra-ui/system@2.5.1)(framer-motion@10.0.1)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-ej2kJXvu/d2h6qnXU5D8XTyw0qpsfmbiU7hUffo/sPxkz89AUOQ08RUuUmB1ssW/FZcQvNMJ5WgzCTKHGBxtxw==} peerDependencies: '@chakra-ui/system': 2.5.1 @@ -2661,22 +2747,22 @@ packages: react: '>=18' react-dom: '>=18' dependencies: - '@chakra-ui/alert': 2.0.17_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/close-button': 2.0.17_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/portal': 2.0.15_biqbaboplfbrettd7655fr4n2y - '@chakra-ui/react-context': 2.0.7_react@18.2.0 - '@chakra-ui/react-use-timeout': 2.0.5_react@18.2.0 - '@chakra-ui/react-use-update-effect': 2.0.7_react@18.2.0 + '@chakra-ui/alert': 2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/close-button': 2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/portal': 2.0.15(react-dom@18.2.0)(react@18.2.0) + '@chakra-ui/react-context': 2.0.7(react@18.2.0) + '@chakra-ui/react-use-timeout': 2.0.5(react@18.2.0) + '@chakra-ui/react-use-update-effect': 2.0.7(react@18.2.0) '@chakra-ui/shared-utils': 2.0.5 '@chakra-ui/styled-system': 2.6.1 - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba - '@chakra-ui/theme': 2.2.5_es2flcfvdj7o2v4vs237ptvmhy - framer-motion: 10.0.1_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) + '@chakra-ui/theme': 2.2.5(@chakra-ui/styled-system@2.6.1) + framer-motion: 10.0.1(react-dom@18.2.0)(react@18.2.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 - /@chakra-ui/toast/6.0.1_lgjjrw2bpexqc3htqwfitnvqey: + /@chakra-ui/toast@6.0.1(@chakra-ui/system@2.5.1)(framer-motion@9.1.7)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-ej2kJXvu/d2h6qnXU5D8XTyw0qpsfmbiU7hUffo/sPxkz89AUOQ08RUuUmB1ssW/FZcQvNMJ5WgzCTKHGBxtxw==} peerDependencies: '@chakra-ui/system': 2.5.1 @@ -2684,22 +2770,22 @@ packages: react: '>=18' react-dom: '>=18' dependencies: - '@chakra-ui/alert': 2.0.17_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/close-button': 2.0.17_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/portal': 2.0.15_biqbaboplfbrettd7655fr4n2y - '@chakra-ui/react-context': 2.0.7_react@18.2.0 - '@chakra-ui/react-use-timeout': 2.0.5_react@18.2.0 - '@chakra-ui/react-use-update-effect': 2.0.7_react@18.2.0 + '@chakra-ui/alert': 2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/close-button': 2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/portal': 2.0.15(react-dom@18.2.0)(react@18.2.0) + '@chakra-ui/react-context': 2.0.7(react@18.2.0) + '@chakra-ui/react-use-timeout': 2.0.5(react@18.2.0) + '@chakra-ui/react-use-update-effect': 2.0.7(react@18.2.0) '@chakra-ui/shared-utils': 2.0.5 '@chakra-ui/styled-system': 2.6.1 - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba - '@chakra-ui/theme': 2.2.5_es2flcfvdj7o2v4vs237ptvmhy - framer-motion: 9.1.7_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) + '@chakra-ui/theme': 2.2.5(@chakra-ui/styled-system@2.6.1) + framer-motion: 9.1.7(react-dom@18.2.0)(react@18.2.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 - /@chakra-ui/tooltip/2.2.6_4wvzdjbq7b7fvo5etdvvxlketm: + /@chakra-ui/tooltip@2.2.6(@chakra-ui/system@2.5.1)(framer-motion@10.0.1)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-4cbneidZ5+HCWge3OZzewRQieIvhDjSsl+scrl4Scx7E0z3OmqlTIESU5nGIZDBLYqKn/UirEZhqaQ33FOS2fw==} peerDependencies: '@chakra-ui/system': '>=2.0.0' @@ -2707,20 +2793,20 @@ packages: react: '>=18' react-dom: '>=18' dependencies: - '@chakra-ui/popper': 3.0.13_react@18.2.0 - '@chakra-ui/portal': 2.0.15_biqbaboplfbrettd7655fr4n2y - '@chakra-ui/react-types': 2.0.7_react@18.2.0 - '@chakra-ui/react-use-disclosure': 2.0.8_react@18.2.0 - '@chakra-ui/react-use-event-listener': 2.0.7_react@18.2.0 - '@chakra-ui/react-use-merge-refs': 2.0.7_react@18.2.0 + '@chakra-ui/popper': 3.0.13(react@18.2.0) + '@chakra-ui/portal': 2.0.15(react-dom@18.2.0)(react@18.2.0) + '@chakra-ui/react-types': 2.0.7(react@18.2.0) + '@chakra-ui/react-use-disclosure': 2.0.8(react@18.2.0) + '@chakra-ui/react-use-event-listener': 2.0.7(react@18.2.0) + '@chakra-ui/react-use-merge-refs': 2.0.7(react@18.2.0) '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba - framer-motion: 10.0.1_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) + framer-motion: 10.0.1(react-dom@18.2.0)(react@18.2.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 - /@chakra-ui/tooltip/2.2.6_lgjjrw2bpexqc3htqwfitnvqey: + /@chakra-ui/tooltip@2.2.6(@chakra-ui/system@2.5.1)(framer-motion@9.1.7)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-4cbneidZ5+HCWge3OZzewRQieIvhDjSsl+scrl4Scx7E0z3OmqlTIESU5nGIZDBLYqKn/UirEZhqaQ33FOS2fw==} peerDependencies: '@chakra-ui/system': '>=2.0.0' @@ -2728,42 +2814,42 @@ packages: react: '>=18' react-dom: '>=18' dependencies: - '@chakra-ui/popper': 3.0.13_react@18.2.0 - '@chakra-ui/portal': 2.0.15_biqbaboplfbrettd7655fr4n2y - '@chakra-ui/react-types': 2.0.7_react@18.2.0 - '@chakra-ui/react-use-disclosure': 2.0.8_react@18.2.0 - '@chakra-ui/react-use-event-listener': 2.0.7_react@18.2.0 - '@chakra-ui/react-use-merge-refs': 2.0.7_react@18.2.0 + '@chakra-ui/popper': 3.0.13(react@18.2.0) + '@chakra-ui/portal': 2.0.15(react-dom@18.2.0)(react@18.2.0) + '@chakra-ui/react-types': 2.0.7(react@18.2.0) + '@chakra-ui/react-use-disclosure': 2.0.8(react@18.2.0) + '@chakra-ui/react-use-event-listener': 2.0.7(react@18.2.0) + '@chakra-ui/react-use-merge-refs': 2.0.7(react@18.2.0) '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba - framer-motion: 9.1.7_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) + framer-motion: 9.1.7(react-dom@18.2.0)(react@18.2.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 - /@chakra-ui/transition/2.0.15_vexppao3ect22qrf7pe276h5iq: + /@chakra-ui/transition@2.0.15(framer-motion@10.0.1)(react@18.2.0): resolution: {integrity: sha512-o9LBK/llQfUDHF/Ty3cQ6nShpekKTqHUoJlUOzNKhoTsNpoRerr9v0jwojrX1YI02KtVjfhFU6PiqXlDfREoNw==} peerDependencies: framer-motion: '>=4.0.0' react: '>=18' dependencies: '@chakra-ui/shared-utils': 2.0.5 - framer-motion: 10.0.1_biqbaboplfbrettd7655fr4n2y + framer-motion: 10.0.1(react-dom@18.2.0)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/transition/2.0.15_vs4eiolfr5o6gkrfj7pnlrsapu: + /@chakra-ui/transition@2.0.15(framer-motion@9.1.7)(react@18.2.0): resolution: {integrity: sha512-o9LBK/llQfUDHF/Ty3cQ6nShpekKTqHUoJlUOzNKhoTsNpoRerr9v0jwojrX1YI02KtVjfhFU6PiqXlDfREoNw==} peerDependencies: framer-motion: '>=4.0.0' react: '>=18' dependencies: '@chakra-ui/shared-utils': 2.0.5 - framer-motion: 9.1.7_biqbaboplfbrettd7655fr4n2y + framer-motion: 9.1.7(react-dom@18.2.0)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/utils/2.0.15: + /@chakra-ui/utils@2.0.15: resolution: {integrity: sha512-El4+jL0WSaYYs+rJbuYFDbjmfCcfGDmRY95GO4xwzit6YAPZBLcR65rOEwLps+XWluZTy1xdMrusg/hW0c1aAA==} dependencies: '@types/lodash.mergewith': 4.6.7 @@ -2772,23 +2858,23 @@ packages: lodash.mergewith: 4.6.2 dev: false - /@chakra-ui/visually-hidden/2.0.15_n3dxrjldmk5gnycgnw7noyo5tu: + /@chakra-ui/visually-hidden@2.0.15(@chakra-ui/system@2.5.1)(react@18.2.0): resolution: {integrity: sha512-WWULIiucYRBIewHKFA7BssQ2ABLHLVd9lrUo3N3SZgR0u4ZRDDVEUNOy+r+9ruDze8+36dGbN9wsN1IdELtdOw==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) react: 18.2.0 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 optional: true - /@commitlint/cli/17.4.4: + /@commitlint/cli@17.4.4: resolution: {integrity: sha512-HwKlD7CPVMVGTAeFZylVNy14Vm5POVY0WxPkZr7EXLC/os0LH/obs6z4HRvJtH/nHCMYBvUBQhGwnufKfTjd5g==} engines: {node: '>=v14'} hasBin: true @@ -2808,14 +2894,14 @@ packages: - '@swc/wasm' 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-validator/17.4.4: + /@commitlint/config-validator@17.4.4: resolution: {integrity: sha512-bi0+TstqMiqoBAQDvdEP4AFh0GaKyLFlPPEObgI29utoKEYoPQTvF0EYqIwYYLEoJYhj5GfMIhPHJkTJhagfeg==} engines: {node: '>=v14'} dependencies: @@ -2823,7 +2909,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: @@ -2835,12 +2921,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: @@ -2848,7 +2934,7 @@ packages: chalk: 4.1.2 dev: true - /@commitlint/is-ignored/17.4.4: + /@commitlint/is-ignored@17.4.4: resolution: {integrity: sha512-Y3eo1SFJ2JQDik4rWkBC4tlRIxlXEFrRWxcyrzb1PUT2k3kZ/XGNuCDfk/u0bU2/yS0tOA/mTjFsV+C4qyACHw==} engines: {node: '>=v14'} dependencies: @@ -2856,7 +2942,7 @@ packages: semver: 7.3.8 dev: true - /@commitlint/lint/17.4.4: + /@commitlint/lint@17.4.4: resolution: {integrity: sha512-qgkCRRFjyhbMDWsti/5jRYVJkgYZj4r+ZmweZObnbYqPUl5UKLWMf9a/ZZisOI4JfiPmRktYRZ2JmqlSvg+ccw==} engines: {node: '>=v14'} dependencies: @@ -2866,7 +2952,7 @@ packages: '@commitlint/types': 17.4.4 dev: true - /@commitlint/load/17.4.4: + /@commitlint/load@17.4.4: resolution: {integrity: sha512-z6uFIQ7wfKX5FGBe1AkOF4l/ShOQsaa1ml/nLMkbW7R/xF8galGS7Zh0yHvzVp/srtfS0brC+0bUfQfmpMPFVQ==} engines: {node: '>=v14'} dependencies: @@ -2877,24 +2963,24 @@ packages: '@types/node': 18.14.2 chalk: 4.1.2 cosmiconfig: 8.1.0 - cosmiconfig-typescript-loader: 4.3.0_r66scxackjdo2gfsj5qbvkw6ay + cosmiconfig-typescript-loader: 4.3.0(@types/node@18.14.2)(cosmiconfig@8.1.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_ellgaeuoqnti3hful2ny2iugba + ts-node: 10.9.1(@types/node@18.14.2)(typescript@4.9.5) typescript: 4.9.5 transitivePeerDependencies: - '@swc/core' - '@swc/wasm' dev: 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.4.4: + /@commitlint/parse@17.4.4: resolution: {integrity: sha512-EKzz4f49d3/OU0Fplog7nwz/lAfXMaDxtriidyGF9PtR+SRbgv4FhsfF310tKxs6EPj8Y+aWWuX3beN5s+yqGg==} engines: {node: '>=v14'} dependencies: @@ -2903,7 +2989,7 @@ packages: conventional-commits-parser: 3.2.4 dev: true - /@commitlint/read/17.4.4: + /@commitlint/read@17.4.4: resolution: {integrity: sha512-B2TvUMJKK+Svzs6eji23WXsRJ8PAD+orI44lVuVNsm5zmI7O8RSGJMvdEZEikiA4Vohfb+HevaPoWZ7PiFZ3zA==} engines: {node: '>=v14'} dependencies: @@ -2914,7 +3000,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: @@ -2926,7 +3012,7 @@ packages: resolve-global: 1.0.0 dev: true - /@commitlint/rules/17.4.4: + /@commitlint/rules@17.4.4: resolution: {integrity: sha512-0tgvXnHi/mVcyR8Y8mjTFZIa/FEQXA4uEutXS/imH2v1UNkYDSEMsK/68wiXRpfW1euSgEdwRkvE1z23+yhNrQ==} engines: {node: '>=v14'} dependencies: @@ -2937,33 +3023,33 @@ 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 - /@confio/ics23/0.6.8: + /@confio/ics23@0.6.8: resolution: {integrity: sha512-wB6uo+3A50m0sW/EWcU64xpV/8wShZ6bMTa7pF8eYsTrSkQA7oLUIJcs/wb8g4y2Oyq701BaGiO6n/ak5WXO1w==} dependencies: '@noble/hashes': 1.2.0 protobufjs: 6.11.3 dev: false - /@cosmjs/amino/0.29.3: + /@cosmjs/amino@0.29.3: resolution: {integrity: sha512-BFz1++ERerIggiFc7iGHhGe1CeV3rCv8BvkoBQTBN/ZwzHOaKvqQj8smDlRGlQxX3HWlTwgiLN2A+OB5yX4ZRw==} dependencies: '@cosmjs/crypto': 0.29.5 @@ -2972,7 +3058,7 @@ packages: '@cosmjs/utils': 0.29.5 dev: false - /@cosmjs/amino/0.29.5: + /@cosmjs/amino@0.29.5: resolution: {integrity: sha512-Qo8jpC0BiziTSUqpkNatBcwtKNhCovUnFul9SlT/74JUCdLYaeG5hxr3q1cssQt++l4LvlcpF+OUXL48XjNjLw==} dependencies: '@cosmjs/crypto': 0.29.5 @@ -2981,7 +3067,7 @@ packages: '@cosmjs/utils': 0.29.5 dev: false - /@cosmjs/cosmwasm-stargate/0.29.5: + /@cosmjs/cosmwasm-stargate@0.29.5: resolution: {integrity: sha512-TNdSvm2tEE3XMCuxHxquzls56t40hC8qnLeYJWHsY2ECZmRK3KrnpRReEr7N7bLtODToK7X/riYrV0JaYxjrYA==} dependencies: '@cosmjs/amino': 0.29.5 @@ -3001,7 +3087,7 @@ packages: - utf-8-validate dev: false - /@cosmjs/crypto/0.29.5: + /@cosmjs/crypto@0.29.5: resolution: {integrity: sha512-2bKkaLGictaNL0UipQCL6C1afaisv6k8Wr/GCLx9FqiyFkh9ZgRHDyetD64ZsjnWV/N/D44s/esI+k6oPREaiQ==} dependencies: '@cosmjs/encoding': 0.29.5 @@ -3013,7 +3099,7 @@ packages: libsodium-wrappers: 0.7.11 dev: false - /@cosmjs/encoding/0.29.5: + /@cosmjs/encoding@0.29.5: resolution: {integrity: sha512-G4rGl/Jg4dMCw5u6PEZHZcoHnUBlukZODHbm/wcL4Uu91fkn5jVo5cXXZcvs4VCkArVGrEj/52eUgTZCmOBGWQ==} dependencies: base64-js: 1.5.1 @@ -3021,20 +3107,20 @@ packages: readonly-date: 1.0.0 dev: false - /@cosmjs/json-rpc/0.29.5: + /@cosmjs/json-rpc@0.29.5: resolution: {integrity: sha512-C78+X06l+r9xwdM1yFWIpGl03LhB9NdM1xvZpQHwgCOl0Ir/WV8pw48y3Ez2awAoUBRfTeejPe4KvrE6NoIi/w==} dependencies: '@cosmjs/stream': 0.29.5 xstream: 11.14.0 dev: false - /@cosmjs/math/0.29.5: + /@cosmjs/math@0.29.5: resolution: {integrity: sha512-2GjKcv+A9f86MAWYLUkjhw1/WpRl2R1BTb3m9qPG7lzMA7ioYff9jY5SPCfafKdxM4TIQGxXQlYGewQL16O68Q==} dependencies: bn.js: 5.2.1 dev: false - /@cosmjs/proto-signing/0.29.3: + /@cosmjs/proto-signing@0.29.3: resolution: {integrity: sha512-Ai3l9THjMOrLJ4Ebn1Dgptwg6W5ZIRJqtnJjijHhGwTVC1WT0WdYU3aMZ7+PwubcA/cA1rH4ZTK7jrfYbra63g==} dependencies: '@cosmjs/amino': 0.29.5 @@ -3046,7 +3132,7 @@ packages: long: 4.0.0 dev: false - /@cosmjs/proto-signing/0.29.5: + /@cosmjs/proto-signing@0.29.5: resolution: {integrity: sha512-QRrS7CiKaoETdgIqvi/7JC2qCwCR7lnWaUsTzh/XfRy3McLkEd+cXbKAW3cygykv7IN0VAEIhZd2lyIfT8KwNA==} dependencies: '@cosmjs/amino': 0.29.5 @@ -3058,11 +3144,11 @@ packages: long: 4.0.0 dev: false - /@cosmjs/socket/0.29.5: + /@cosmjs/socket@0.29.5: resolution: {integrity: sha512-5VYDupIWbIXq3ftPV1LkS5Ya/T7Ol/AzWVhNxZ79hPe/mBfv1bGau/LqIYOm2zxGlgm9hBHOTmWGqNYDwr9LNQ==} dependencies: '@cosmjs/stream': 0.29.5 - isomorphic-ws: 4.0.1_ws@7.5.9 + isomorphic-ws: 4.0.1(ws@7.5.9) ws: 7.5.9 xstream: 11.14.0 transitivePeerDependencies: @@ -3070,7 +3156,7 @@ packages: - utf-8-validate dev: false - /@cosmjs/stargate/0.29.3: + /@cosmjs/stargate@0.29.3: resolution: {integrity: sha512-455TgXStCi6E8KDjnhDAM8wt6aLSjobH4Dixvd7Up1DfCH6UB9NkC/G0fMJANNcNXMaM4wSX14niTXwD1d31BA==} dependencies: '@confio/ics23': 0.6.8 @@ -3091,7 +3177,7 @@ packages: - utf-8-validate dev: false - /@cosmjs/stargate/0.29.5: + /@cosmjs/stargate@0.29.5: resolution: {integrity: sha512-hjEv8UUlJruLrYGJcUZXM/CziaINOKwfVm2BoSdUnNTMxGvY/jC1ABHKeZUYt9oXHxEJ1n9+pDqzbKc8pT0nBw==} dependencies: '@confio/ics23': 0.6.8 @@ -3112,13 +3198,13 @@ packages: - utf-8-validate dev: false - /@cosmjs/stream/0.29.5: + /@cosmjs/stream@0.29.5: resolution: {integrity: sha512-TToTDWyH1p05GBtF0Y8jFw2C+4783ueDCmDyxOMM6EU82IqpmIbfwcdMOCAm0JhnyMh+ocdebbFvnX/sGKzRAA==} dependencies: xstream: 11.14.0 dev: false - /@cosmjs/tendermint-rpc/0.29.5: + /@cosmjs/tendermint-rpc@0.29.5: resolution: {integrity: sha512-ar80twieuAxsy0x2za/aO3kBr2DFPAXDmk2ikDbmkda+qqfXgl35l9CVAAjKRqd9d+cRvbQyb5M4wy6XQpEV6w==} dependencies: '@cosmjs/crypto': 0.29.5 @@ -3137,29 +3223,29 @@ packages: - utf-8-validate dev: false - /@cosmjs/utils/0.29.5: + /@cosmjs/utils@0.29.5: resolution: {integrity: sha512-m7h+RXDUxOzEOGt4P+3OVPX7PuakZT3GBmaM/Y2u+abN3xZkziykD/NvedYFvvCCdQo714XcGl33bwifS9FZPQ==} dev: false - /@cosmology-ui/react/0.1.21_by6tppoladmjksagqjqofvscte: + /@cosmology-ui/react@0.1.21(@chakra-ui/form-control@2.0.17)(@chakra-ui/icon@3.0.15)(@chakra-ui/layout@2.1.16)(@chakra-ui/media-query@3.2.12)(@chakra-ui/menu@2.1.9)(@chakra-ui/spinner@2.0.12)(@chakra-ui/system@2.5.1)(@types/react@18.0.28)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-eOaYIFhm8XBf1bex49AuZjiv4livhUUXGmq5rJua5m+B4JxKOcyC5w+e38KoYQT9c6yiwsFfBSnIENdTtbRw7g==} peerDependencies: react: 18.2.0 dependencies: '@babel/runtime': 7.21.0 - '@chakra-ui/react': 2.5.1_ggaycw6syoxhvshmbg2schgw2y - '@cosmology-ui/utils': 0.1.24_by6tppoladmjksagqjqofvscte - '@emotion/react': 11.10.6_pmekkgnqduwlme35zpnqhenc34 - '@emotion/styled': 11.10.6_oouaibmszuch5k64ms7uxp2aia + '@chakra-ui/react': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(@types/react@18.0.28)(framer-motion@9.1.7)(react-dom@18.2.0)(react@18.2.0) + '@cosmology-ui/utils': 0.1.24(@chakra-ui/form-control@2.0.17)(@chakra-ui/icon@3.0.15)(@chakra-ui/layout@2.1.16)(@chakra-ui/media-query@3.2.12)(@chakra-ui/menu@2.1.9)(@chakra-ui/spinner@2.0.12)(@chakra-ui/system@2.5.1)(@types/react@18.0.28)(react-dom@18.2.0)(react@18.2.0) + '@emotion/react': 11.10.6(@types/react@18.0.28)(react@18.2.0) + '@emotion/styled': 11.10.6(@emotion/react@11.10.6)(@types/react@18.0.28)(react@18.2.0) bowser: 2.11.0 - chain-registry: 1.9.0 - chakra-react-select: 4.6.0_vwx6e76axjnb5mdydzlrs7wvmm + chain-registry: 1.10.0 + chakra-react-select: 4.6.0(@chakra-ui/form-control@2.0.17)(@chakra-ui/icon@3.0.15)(@chakra-ui/layout@2.1.16)(@chakra-ui/media-query@3.2.12)(@chakra-ui/menu@2.1.9)(@chakra-ui/spinner@2.0.12)(@chakra-ui/system@2.5.1)(@emotion/react@11.10.6)(@types/react@18.0.28)(react-dom@18.2.0)(react@18.2.0) fast-fuzzy: 1.12.0 - framer-motion: 9.1.7_biqbaboplfbrettd7655fr4n2y - qrcode.react: 3.1.0_react@18.2.0 + framer-motion: 9.1.7(react-dom@18.2.0)(react@18.2.0) + qrcode.react: 3.1.0(react@18.2.0) react: 18.2.0 - react-icons: 4.4.0_react@18.2.0 - react-resize-detector: 8.0.4_biqbaboplfbrettd7655fr4n2y + react-icons: 4.4.0(react@18.2.0) + react-resize-detector: 8.0.4(react-dom@18.2.0)(react@18.2.0) transitivePeerDependencies: - '@chakra-ui/form-control' - '@chakra-ui/icon' @@ -3172,24 +3258,24 @@ packages: - react-dom dev: false - /@cosmology-ui/utils/0.1.24_by6tppoladmjksagqjqofvscte: + /@cosmology-ui/utils@0.1.24(@chakra-ui/form-control@2.0.17)(@chakra-ui/icon@3.0.15)(@chakra-ui/layout@2.1.16)(@chakra-ui/media-query@3.2.12)(@chakra-ui/menu@2.1.9)(@chakra-ui/spinner@2.0.12)(@chakra-ui/system@2.5.1)(@types/react@18.0.28)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-jtJGCMVQMt3SrZFMi3WJ+4+ad1Puux4KQmEZGCnlZLMj+6ebEEdkUuYsmVxTdI/qlAo9RlVVIzVgD4gTelbD7w==} peerDependencies: react: 18.2.0 dependencies: '@babel/runtime': 7.21.0 - '@chakra-ui/react': 2.5.1_ggaycw6syoxhvshmbg2schgw2y - '@emotion/react': 11.10.6_pmekkgnqduwlme35zpnqhenc34 - '@emotion/styled': 11.10.6_oouaibmszuch5k64ms7uxp2aia + '@chakra-ui/react': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(@types/react@18.0.28)(framer-motion@9.1.7)(react-dom@18.2.0)(react@18.2.0) + '@emotion/react': 11.10.6(@types/react@18.0.28)(react@18.2.0) + '@emotion/styled': 11.10.6(@emotion/react@11.10.6)(@types/react@18.0.28)(react@18.2.0) bowser: 2.11.0 - chain-registry: 1.9.0 - chakra-react-select: 4.6.0_vwx6e76axjnb5mdydzlrs7wvmm + chain-registry: 1.10.0 + chakra-react-select: 4.6.0(@chakra-ui/form-control@2.0.17)(@chakra-ui/icon@3.0.15)(@chakra-ui/layout@2.1.16)(@chakra-ui/media-query@3.2.12)(@chakra-ui/menu@2.1.9)(@chakra-ui/spinner@2.0.12)(@chakra-ui/system@2.5.1)(@emotion/react@11.10.6)(@types/react@18.0.28)(react-dom@18.2.0)(react@18.2.0) fast-fuzzy: 1.12.0 - framer-motion: 9.1.7_biqbaboplfbrettd7655fr4n2y - qrcode.react: 3.1.0_react@18.2.0 + framer-motion: 9.1.7(react-dom@18.2.0)(react@18.2.0) + qrcode.react: 3.1.0(react@18.2.0) react: 18.2.0 - react-icons: 4.4.0_react@18.2.0 - react-resize-detector: 8.0.4_biqbaboplfbrettd7655fr4n2y + react-icons: 4.4.0(react@18.2.0) + react-resize-detector: 8.0.4(react-dom@18.2.0)(react@18.2.0) transitivePeerDependencies: - '@chakra-ui/form-control' - '@chakra-ui/icon' @@ -3202,7 +3288,7 @@ packages: - react-dom dev: false - /@cosmos-kit/core/1.1.4_ach3gg3rjjnrrttgxbpr4latru: + /@cosmos-kit/core@1.1.4(@cosmjs/amino@0.29.5)(@cosmjs/cosmwasm-stargate@0.29.5)(@cosmjs/proto-signing@0.29.5)(@cosmjs/stargate@0.29.5)(@types/node@18.14.2)(cosmjs-types@0.6.1)(typescript@4.9.5): resolution: {integrity: sha512-DMOHu7HPP8k7pu9TcL5U+1ehUH1eBbnwRt/r2PXRxPdxjxw5ZB6nGJ99A9qXb1hnnuUdGB+2AqtQsv7hnHUIKw==} peerDependencies: '@cosmjs/amino': '>= 0.28' @@ -3216,7 +3302,7 @@ packages: '@cosmjs/cosmwasm-stargate': 0.29.5 '@cosmjs/proto-signing': 0.29.5 '@cosmjs/stargate': 0.29.5 - '@walletconnect/types': 2.2.0_ellgaeuoqnti3hful2ny2iugba + '@walletconnect/types': 2.2.0(@types/node@18.14.2)(typescript@4.9.5) bowser: 2.11.0 cosmjs-types: 0.6.1 events: 3.3.0 @@ -3230,7 +3316,7 @@ packages: - typescript dev: false - /@cosmos-kit/keplr-extension/0.33.4_ach3gg3rjjnrrttgxbpr4latru: + /@cosmos-kit/keplr-extension@0.33.4(@cosmjs/amino@0.29.5)(@cosmjs/cosmwasm-stargate@0.29.5)(@cosmjs/proto-signing@0.29.5)(@cosmjs/stargate@0.29.5)(@types/node@18.14.2)(cosmjs-types@0.6.1)(typescript@4.9.5): resolution: {integrity: sha512-2hdnssEYiys3dRrM/3vanGdbkPP8ufjfvbAbzX95THzmtQylPdXEeZIY7cF3ReJFKCONZccp0jp1kVcJFZnMAg==} peerDependencies: '@cosmjs/amino': '>= 0.28' @@ -3239,7 +3325,7 @@ packages: '@chain-registry/keplr': 1.8.0 '@cosmjs/amino': 0.29.5 '@cosmjs/proto-signing': 0.29.5 - '@cosmos-kit/core': 1.1.4_ach3gg3rjjnrrttgxbpr4latru + '@cosmos-kit/core': 1.1.4(@cosmjs/amino@0.29.5)(@cosmjs/cosmwasm-stargate@0.29.5)(@cosmjs/proto-signing@0.29.5)(@cosmjs/stargate@0.29.5)(@types/node@18.14.2)(cosmjs-types@0.6.1)(typescript@4.9.5) transitivePeerDependencies: - '@cosmjs/cosmwasm-stargate' - '@cosmjs/stargate' @@ -3253,7 +3339,7 @@ packages: - typescript dev: false - /@cosmos-kit/keplr-mobile/0.33.4_ach3gg3rjjnrrttgxbpr4latru: + /@cosmos-kit/keplr-mobile@0.33.4(@cosmjs/amino@0.29.5)(@cosmjs/cosmwasm-stargate@0.29.5)(@cosmjs/proto-signing@0.29.5)(@cosmjs/stargate@0.29.5)(@types/node@18.14.2)(cosmjs-types@0.6.1)(typescript@4.9.5): resolution: {integrity: sha512-3AOXMtMuLNe6NRGD2AgK3A0C+5VL5txSehjx7vkK7qH/M1WrjO1N9ZySfPsit8cbKdY85FCnScjWN/AvK13Ofw==} peerDependencies: '@cosmjs/amino': '>= 0.28' @@ -3262,8 +3348,8 @@ packages: '@chain-registry/keplr': 1.8.0 '@cosmjs/amino': 0.29.5 '@cosmjs/proto-signing': 0.29.5 - '@cosmos-kit/core': 1.1.4_ach3gg3rjjnrrttgxbpr4latru - '@cosmos-kit/walletconnect': 0.2.4_ach3gg3rjjnrrttgxbpr4latru + '@cosmos-kit/core': 1.1.4(@cosmjs/amino@0.29.5)(@cosmjs/cosmwasm-stargate@0.29.5)(@cosmjs/proto-signing@0.29.5)(@cosmjs/stargate@0.29.5)(@types/node@18.14.2)(cosmjs-types@0.6.1)(typescript@4.9.5) + '@cosmos-kit/walletconnect': 0.2.4(@cosmjs/amino@0.29.5)(@cosmjs/cosmwasm-stargate@0.29.5)(@cosmjs/proto-signing@0.29.5)(@cosmjs/stargate@0.29.5)(@types/node@18.14.2)(cosmjs-types@0.6.1)(typescript@4.9.5) transitivePeerDependencies: - '@cosmjs/cosmwasm-stargate' - '@cosmjs/stargate' @@ -3279,7 +3365,7 @@ packages: - utf-8-validate dev: false - /@cosmos-kit/keplr/0.33.4_ach3gg3rjjnrrttgxbpr4latru: + /@cosmos-kit/keplr@0.33.4(@cosmjs/amino@0.29.5)(@cosmjs/cosmwasm-stargate@0.29.5)(@cosmjs/proto-signing@0.29.5)(@cosmjs/stargate@0.29.5)(@types/node@18.14.2)(cosmjs-types@0.6.1)(typescript@4.9.5): resolution: {integrity: sha512-25kwUCERtsek04A7D5mw59zO2rAdK9h1fOrZbBQclzkz+pbOMwC8v0+la4zJt8K/Gq7DjD3J/rG5pRUnZHdgkg==} peerDependencies: '@cosmjs/amino': '>= 0.28' @@ -3291,8 +3377,8 @@ packages: '@cosmjs/cosmwasm-stargate': 0.29.5 '@cosmjs/proto-signing': 0.29.5 '@cosmjs/stargate': 0.29.5 - '@cosmos-kit/keplr-extension': 0.33.4_ach3gg3rjjnrrttgxbpr4latru - '@cosmos-kit/keplr-mobile': 0.33.4_ach3gg3rjjnrrttgxbpr4latru + '@cosmos-kit/keplr-extension': 0.33.4(@cosmjs/amino@0.29.5)(@cosmjs/cosmwasm-stargate@0.29.5)(@cosmjs/proto-signing@0.29.5)(@cosmjs/stargate@0.29.5)(@types/node@18.14.2)(cosmjs-types@0.6.1)(typescript@4.9.5) + '@cosmos-kit/keplr-mobile': 0.33.4(@cosmjs/amino@0.29.5)(@cosmjs/cosmwasm-stargate@0.29.5)(@cosmjs/proto-signing@0.29.5)(@cosmjs/stargate@0.29.5)(@types/node@18.14.2)(cosmjs-types@0.6.1)(typescript@4.9.5) transitivePeerDependencies: - '@react-native-async-storage/async-storage' - '@swc/core' @@ -3306,7 +3392,7 @@ packages: - utf-8-validate dev: false - /@cosmos-kit/react/1.3.1_qu2lxkbrpqsiyhxwrb2fllwbiq: + /@cosmos-kit/react@1.3.1(@chakra-ui/form-control@2.0.17)(@chakra-ui/icon@3.0.15)(@chakra-ui/layout@2.1.16)(@chakra-ui/media-query@3.2.12)(@chakra-ui/menu@2.1.9)(@chakra-ui/spinner@2.0.12)(@chakra-ui/system@2.5.1)(@cosmjs/amino@0.29.5)(@cosmjs/cosmwasm-stargate@0.29.5)(@cosmjs/proto-signing@0.29.5)(@cosmjs/stargate@0.29.5)(@types/node@18.14.2)(@types/react@18.0.28)(cosmjs-types@0.6.1)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5): resolution: {integrity: sha512-h2IXOMS2alGa0YuGVa/dxGT9Qz6p3FpjtPpJkhI4ksMac4qe/OsDD9IrWnuw4xuVE/X/S4QV5eIKcykLJWR6Yg==} peerDependencies: '@cosmjs/cosmwasm-stargate': '>= 0.28' @@ -3316,20 +3402,20 @@ packages: dependencies: '@babel/runtime': 7.11.2 '@chain-registry/types': 0.13.1 - '@chakra-ui/react': 2.5.1_ggaycw6syoxhvshmbg2schgw2y + '@chakra-ui/react': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(@types/react@18.0.28)(framer-motion@9.1.7)(react-dom@18.2.0)(react@18.2.0) '@cosmjs/cosmwasm-stargate': 0.29.5 '@cosmjs/stargate': 0.29.5 - '@cosmology-ui/react': 0.1.21_by6tppoladmjksagqjqofvscte - '@cosmos-kit/core': 1.1.4_ach3gg3rjjnrrttgxbpr4latru - '@emotion/react': 11.10.6_pmekkgnqduwlme35zpnqhenc34 - '@emotion/styled': 11.10.6_oouaibmszuch5k64ms7uxp2aia - '@walletconnect/types': 2.2.0_ellgaeuoqnti3hful2ny2iugba + '@cosmology-ui/react': 0.1.21(@chakra-ui/form-control@2.0.17)(@chakra-ui/icon@3.0.15)(@chakra-ui/layout@2.1.16)(@chakra-ui/media-query@3.2.12)(@chakra-ui/menu@2.1.9)(@chakra-ui/spinner@2.0.12)(@chakra-ui/system@2.5.1)(@types/react@18.0.28)(react-dom@18.2.0)(react@18.2.0) + '@cosmos-kit/core': 1.1.4(@cosmjs/amino@0.29.5)(@cosmjs/cosmwasm-stargate@0.29.5)(@cosmjs/proto-signing@0.29.5)(@cosmjs/stargate@0.29.5)(@types/node@18.14.2)(cosmjs-types@0.6.1)(typescript@4.9.5) + '@emotion/react': 11.10.6(@types/react@18.0.28)(react@18.2.0) + '@emotion/styled': 11.10.6(@emotion/react@11.10.6)(@types/react@18.0.28)(react@18.2.0) + '@walletconnect/types': 2.2.0(@types/node@18.14.2)(typescript@4.9.5) bowser: 2.11.0 - framer-motion: 9.1.7_biqbaboplfbrettd7655fr4n2y - qrcode.react: 3.1.0_react@18.2.0 + framer-motion: 9.1.7(react-dom@18.2.0)(react@18.2.0) + qrcode.react: 3.1.0(react@18.2.0) react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 - react-icons: 4.4.0_react@18.2.0 + react-dom: 18.2.0(react@18.2.0) + react-icons: 4.4.0(react@18.2.0) transitivePeerDependencies: - '@chakra-ui/form-control' - '@chakra-ui/icon' @@ -3351,7 +3437,7 @@ packages: - typescript dev: false - /@cosmos-kit/walletconnect/0.2.4_ach3gg3rjjnrrttgxbpr4latru: + /@cosmos-kit/walletconnect@0.2.4(@cosmjs/amino@0.29.5)(@cosmjs/cosmwasm-stargate@0.29.5)(@cosmjs/proto-signing@0.29.5)(@cosmjs/stargate@0.29.5)(@types/node@18.14.2)(cosmjs-types@0.6.1)(typescript@4.9.5): resolution: {integrity: sha512-uYq8EJTROhQo0yRiW2+E9Xr25sSEpYwXeX7S70QN6/F6XOeT4NkTGqS3/kDJ+9JnrfwyFaN8xk7F/T2w2a1Q8A==} peerDependencies: '@cosmjs/amino': '>= 0.28' @@ -3360,10 +3446,10 @@ packages: '@babel/runtime': 7.11.2 '@cosmjs/amino': 0.29.5 '@cosmjs/proto-signing': 0.29.5 - '@cosmos-kit/core': 1.1.4_ach3gg3rjjnrrttgxbpr4latru - '@walletconnect/sign-client': 2.4.7_ellgaeuoqnti3hful2ny2iugba - '@walletconnect/types': 2.4.7_ellgaeuoqnti3hful2ny2iugba - '@walletconnect/utils': 2.4.7_ellgaeuoqnti3hful2ny2iugba + '@cosmos-kit/core': 1.1.4(@cosmjs/amino@0.29.5)(@cosmjs/cosmwasm-stargate@0.29.5)(@cosmjs/proto-signing@0.29.5)(@cosmjs/stargate@0.29.5)(@types/node@18.14.2)(cosmjs-types@0.6.1)(typescript@4.9.5) + '@walletconnect/sign-client': 2.4.7(@types/node@18.14.2)(typescript@4.9.5) + '@walletconnect/types': 2.4.7(@types/node@18.14.2)(typescript@4.9.5) + '@walletconnect/utils': 2.4.7(@types/node@18.14.2)(typescript@4.9.5) events: 3.3.0 transitivePeerDependencies: - '@cosmjs/cosmwasm-stargate' @@ -3380,13 +3466,13 @@ packages: - utf-8-validate dev: false - /@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 - /@cypress/request/2.88.11: + /@cypress/request@2.88.11: resolution: {integrity: sha512-M83/wfQ1EkspjkE2lNWNV5ui2Cv7UCv1swW1DqljahbzLVWltcsexQh8jYtuS/vzFXP+HySntGM83ZXA9fn17w==} engines: {node: '>= 6'} dependencies: @@ -3409,15 +3495,15 @@ packages: tunnel-agent: 0.6.0 uuid: 8.3.2 - /@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 - /@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.18.6 @@ -3432,7 +3518,7 @@ packages: source-map: 0.5.7 stylis: 4.1.3 - /@emotion/cache/11.10.5: + /@emotion/cache@11.10.5: resolution: {integrity: sha512-dGYHWyzTdmK+f2+EnIGBpkz1lKc4Zbj2KHd4cX3Wi8/OWr5pKslNjc3yABKH4adRGCvSX4VDC0i04mrrq0aiRA==} dependencies: '@emotion/memoize': 0.8.0 @@ -3442,10 +3528,10 @@ packages: stylis: 4.1.3 dev: false - /@emotion/hash/0.9.0: + /@emotion/hash@0.9.0: resolution: {integrity: sha512-14FtKiHhy2QoPIzdTcvh//8OyBlknNs2nXRwIhG904opCby3l+9Xaf/wuPvICBF0rc1ZCNBd3nKe9cd2mecVkQ==} - /@emotion/is-prop-valid/0.8.8: + /@emotion/is-prop-valid@0.8.8: resolution: {integrity: sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==} requiresBuild: true dependencies: @@ -3453,21 +3539,21 @@ packages: dev: false optional: true - /@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.4: + /@emotion/memoize@0.7.4: resolution: {integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==} dev: false optional: true - /@emotion/memoize/0.8.0: + /@emotion/memoize@0.8.0: resolution: {integrity: sha512-G/YwXTkv7Den9mXDO7AhLWkE3q+I92B+VqAE+dYG4NGPaHZGvt3G8Q0p9vmE+sq7rTGphUbAvmQ9YpbfMQGGlA==} - /@emotion/react/11.10.6_pmekkgnqduwlme35zpnqhenc34: + /@emotion/react@11.10.6(@types/react@18.0.28)(react@18.2.0): resolution: {integrity: sha512-6HT8jBmcSkfzO7mc+N1L9uwvOnlcGoix8Zn7srt+9ga0MjREo6lRpuVX0kzo6Jp6oTqDhREOFsygN6Ew4fEQbw==} peerDependencies: '@types/react': '*' @@ -3480,7 +3566,7 @@ packages: '@emotion/babel-plugin': 11.10.6 '@emotion/cache': 11.10.5 '@emotion/serialize': 1.1.1 - '@emotion/use-insertion-effect-with-fallbacks': 1.0.0_react@18.2.0 + '@emotion/use-insertion-effect-with-fallbacks': 1.0.0(react@18.2.0) '@emotion/utils': 1.2.0 '@emotion/weak-memoize': 0.3.0 '@types/react': 18.0.28 @@ -3488,7 +3574,7 @@ packages: react: 18.2.0 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 @@ -3497,7 +3583,7 @@ packages: '@emotion/utils': 1.2.0 csstype: 3.1.1 - /@emotion/server/11.10.0: + /@emotion/server@11.10.0: resolution: {integrity: sha512-MTvJ21JPo9aS02GdjFW4nhdwOi2tNNpMmAM/YED0pkxzjDNi5WbiTwXqaCnvLc2Lr8NFtjhT0az1vTJyLIHYcw==} peerDependencies: '@emotion/css': ^11.0.0-rc.0 @@ -3511,11 +3597,11 @@ packages: through: 2.3.8 dev: false - /@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_oouaibmszuch5k64ms7uxp2aia: + /@emotion/styled@11.10.6(@emotion/react@11.10.6)(@types/react@18.0.28)(react@18.2.0): resolution: {integrity: sha512-OXtBzOmDSJo5Q0AFemHCfl+bUueT8BIcPSxu0EGTpGk6DmI5dnhSzQANm1e1ze0YZL7TDyAyy6s/b/zmGOS3Og==} peerDependencies: '@emotion/react': ^11.0.0-rc.0 @@ -3528,18 +3614,18 @@ packages: '@babel/runtime': 7.21.0 '@emotion/babel-plugin': 11.10.6 '@emotion/is-prop-valid': 1.2.0 - '@emotion/react': 11.10.6_pmekkgnqduwlme35zpnqhenc34 + '@emotion/react': 11.10.6(@types/react@18.0.28)(react@18.2.0) '@emotion/serialize': 1.1.1 - '@emotion/use-insertion-effect-with-fallbacks': 1.0.0_react@18.2.0 + '@emotion/use-insertion-effect-with-fallbacks': 1.0.0(react@18.2.0) '@emotion/utils': 1.2.0 '@types/react': 18.0.28 react: 18.2.0 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@18.2.0: + /@emotion/use-insertion-effect-with-fallbacks@1.0.0(react@18.2.0): resolution: {integrity: sha512-1eEgUGmkaljiBnRMTdksDV1W4kUnmwgp7X9G8B++9GYwl1lUdqSndSriIrTJ0N7LQaoauY9JJ2yhiOYK5+NI4A==} peerDependencies: react: '>=16.8.0' @@ -3547,32 +3633,32 @@ packages: react: 18.2.0 dev: false - /@emotion/utils/1.2.0: + /@emotion/utils@1.2.0: resolution: {integrity: sha512-sn3WH53Kzpw8oQ5mgMmIzzyAaH2ZqFEbozVVBSYp538E06OSE6ytOp7pRAjNQR+Q/orwqdQYJSe2m3hCOeznkw==} - /@emotion/weak-memoize/0.3.0: + /@emotion/weak-memoize@0.3.0: resolution: {integrity: sha512-AHPmaAx+RYfZz0eYu6Gviiagpmiyw98ySSlQvCUhVGDRtDFe4DBS0x1bSjdF3gqUDYOczB+yYvBTtEylYSdRhg==} dev: false - /@esbuild/android-arm/0.16.17: - resolution: {integrity: sha512-N9x1CMXVhtWEAMS7pNNONyA14f71VPQN9Cnavj1XQh6T7bskqiLLrSca4O0Vr8Wdcga943eThxnVp3JLnBMYtw==} + /@esbuild/android-arm64@0.16.17: + resolution: {integrity: sha512-MIGl6p5sc3RDTLLkYL1MyL8BMRN4tLMRCn+yRJJmEDvYZ2M7tmAf80hx1kbNEUX2KJ50RRtxZ4JHLvCfuB6kBg==} engines: {node: '>=12'} - cpu: [arm] + cpu: [arm64] os: [android] requiresBuild: true dev: true optional: true - /@esbuild/android-arm64/0.16.17: - resolution: {integrity: sha512-MIGl6p5sc3RDTLLkYL1MyL8BMRN4tLMRCn+yRJJmEDvYZ2M7tmAf80hx1kbNEUX2KJ50RRtxZ4JHLvCfuB6kBg==} + /@esbuild/android-arm@0.16.17: + resolution: {integrity: sha512-N9x1CMXVhtWEAMS7pNNONyA14f71VPQN9Cnavj1XQh6T7bskqiLLrSca4O0Vr8Wdcga943eThxnVp3JLnBMYtw==} engines: {node: '>=12'} - cpu: [arm64] + cpu: [arm] os: [android] requiresBuild: true dev: true optional: true - /@esbuild/android-x64/0.16.17: + /@esbuild/android-x64@0.16.17: resolution: {integrity: sha512-a3kTv3m0Ghh4z1DaFEuEDfz3OLONKuFvI4Xqczqx4BqLyuFaFkuaG4j2MtA6fuWEFeC5x9IvqnX7drmRq/fyAQ==} engines: {node: '>=12'} cpu: [x64] @@ -3581,7 +3667,7 @@ packages: dev: true optional: true - /@esbuild/darwin-arm64/0.16.17: + /@esbuild/darwin-arm64@0.16.17: resolution: {integrity: sha512-/2agbUEfmxWHi9ARTX6OQ/KgXnOWfsNlTeLcoV7HSuSTv63E4DqtAc+2XqGw1KHxKMHGZgbVCZge7HXWX9Vn+w==} engines: {node: '>=12'} cpu: [arm64] @@ -3590,7 +3676,7 @@ packages: dev: true optional: true - /@esbuild/darwin-x64/0.16.17: + /@esbuild/darwin-x64@0.16.17: resolution: {integrity: sha512-2By45OBHulkd9Svy5IOCZt376Aa2oOkiE9QWUK9fe6Tb+WDr8hXL3dpqi+DeLiMed8tVXspzsTAvd0jUl96wmg==} engines: {node: '>=12'} cpu: [x64] @@ -3599,7 +3685,7 @@ packages: dev: true optional: true - /@esbuild/freebsd-arm64/0.16.17: + /@esbuild/freebsd-arm64@0.16.17: resolution: {integrity: sha512-mt+cxZe1tVx489VTb4mBAOo2aKSnJ33L9fr25JXpqQqzbUIw/yzIzi+NHwAXK2qYV1lEFp4OoVeThGjUbmWmdw==} engines: {node: '>=12'} cpu: [arm64] @@ -3608,7 +3694,7 @@ packages: dev: true optional: true - /@esbuild/freebsd-x64/0.16.17: + /@esbuild/freebsd-x64@0.16.17: resolution: {integrity: sha512-8ScTdNJl5idAKjH8zGAsN7RuWcyHG3BAvMNpKOBaqqR7EbUhhVHOqXRdL7oZvz8WNHL2pr5+eIT5c65kA6NHug==} engines: {node: '>=12'} cpu: [x64] @@ -3617,25 +3703,25 @@ packages: dev: true optional: true - /@esbuild/linux-arm/0.16.17: - resolution: {integrity: sha512-iihzrWbD4gIT7j3caMzKb/RsFFHCwqqbrbH9SqUSRrdXkXaygSZCZg1FybsZz57Ju7N/SHEgPyaR0LZ8Zbe9gQ==} + /@esbuild/linux-arm64@0.16.17: + resolution: {integrity: sha512-7S8gJnSlqKGVJunnMCrXHU9Q8Q/tQIxk/xL8BqAP64wchPCTzuM6W3Ra8cIa1HIflAvDnNOt2jaL17vaW+1V0g==} engines: {node: '>=12'} - cpu: [arm] + cpu: [arm64] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-arm64/0.16.17: - resolution: {integrity: sha512-7S8gJnSlqKGVJunnMCrXHU9Q8Q/tQIxk/xL8BqAP64wchPCTzuM6W3Ra8cIa1HIflAvDnNOt2jaL17vaW+1V0g==} + /@esbuild/linux-arm@0.16.17: + resolution: {integrity: sha512-iihzrWbD4gIT7j3caMzKb/RsFFHCwqqbrbH9SqUSRrdXkXaygSZCZg1FybsZz57Ju7N/SHEgPyaR0LZ8Zbe9gQ==} engines: {node: '>=12'} - cpu: [arm64] + cpu: [arm] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-ia32/0.16.17: + /@esbuild/linux-ia32@0.16.17: resolution: {integrity: sha512-kiX69+wcPAdgl3Lonh1VI7MBr16nktEvOfViszBSxygRQqSpzv7BffMKRPMFwzeJGPxcio0pdD3kYQGpqQ2SSg==} engines: {node: '>=12'} cpu: [ia32] @@ -3644,7 +3730,7 @@ packages: dev: true optional: true - /@esbuild/linux-loong64/0.16.17: + /@esbuild/linux-loong64@0.16.17: resolution: {integrity: sha512-dTzNnQwembNDhd654cA4QhbS9uDdXC3TKqMJjgOWsC0yNCbpzfWoXdZvp0mY7HU6nzk5E0zpRGGx3qoQg8T2DQ==} engines: {node: '>=12'} cpu: [loong64] @@ -3653,7 +3739,7 @@ packages: dev: true optional: true - /@esbuild/linux-mips64el/0.16.17: + /@esbuild/linux-mips64el@0.16.17: resolution: {integrity: sha512-ezbDkp2nDl0PfIUn0CsQ30kxfcLTlcx4Foz2kYv8qdC6ia2oX5Q3E/8m6lq84Dj/6b0FrkgD582fJMIfHhJfSw==} engines: {node: '>=12'} cpu: [mips64el] @@ -3662,7 +3748,7 @@ packages: dev: true optional: true - /@esbuild/linux-ppc64/0.16.17: + /@esbuild/linux-ppc64@0.16.17: resolution: {integrity: sha512-dzS678gYD1lJsW73zrFhDApLVdM3cUF2MvAa1D8K8KtcSKdLBPP4zZSLy6LFZ0jYqQdQ29bjAHJDgz0rVbLB3g==} engines: {node: '>=12'} cpu: [ppc64] @@ -3671,7 +3757,7 @@ packages: dev: true optional: true - /@esbuild/linux-riscv64/0.16.17: + /@esbuild/linux-riscv64@0.16.17: resolution: {integrity: sha512-ylNlVsxuFjZK8DQtNUwiMskh6nT0vI7kYl/4fZgV1llP5d6+HIeL/vmmm3jpuoo8+NuXjQVZxmKuhDApK0/cKw==} engines: {node: '>=12'} cpu: [riscv64] @@ -3680,7 +3766,7 @@ packages: dev: true optional: true - /@esbuild/linux-s390x/0.16.17: + /@esbuild/linux-s390x@0.16.17: resolution: {integrity: sha512-gzy7nUTO4UA4oZ2wAMXPNBGTzZFP7mss3aKR2hH+/4UUkCOyqmjXiKpzGrY2TlEUhbbejzXVKKGazYcQTZWA/w==} engines: {node: '>=12'} cpu: [s390x] @@ -3689,7 +3775,7 @@ packages: dev: true optional: true - /@esbuild/linux-x64/0.16.17: + /@esbuild/linux-x64@0.16.17: resolution: {integrity: sha512-mdPjPxfnmoqhgpiEArqi4egmBAMYvaObgn4poorpUaqmvzzbvqbowRllQ+ZgzGVMGKaPkqUmPDOOFQRUFDmeUw==} engines: {node: '>=12'} cpu: [x64] @@ -3698,7 +3784,7 @@ packages: dev: true optional: true - /@esbuild/netbsd-x64/0.16.17: + /@esbuild/netbsd-x64@0.16.17: resolution: {integrity: sha512-/PzmzD/zyAeTUsduZa32bn0ORug+Jd1EGGAUJvqfeixoEISYpGnAezN6lnJoskauoai0Jrs+XSyvDhppCPoKOA==} engines: {node: '>=12'} cpu: [x64] @@ -3707,7 +3793,7 @@ packages: dev: true optional: true - /@esbuild/openbsd-x64/0.16.17: + /@esbuild/openbsd-x64@0.16.17: resolution: {integrity: sha512-2yaWJhvxGEz2RiftSk0UObqJa/b+rIAjnODJgv2GbGGpRwAfpgzyrg1WLK8rqA24mfZa9GvpjLcBBg8JHkoodg==} engines: {node: '>=12'} cpu: [x64] @@ -3716,7 +3802,7 @@ packages: dev: true optional: true - /@esbuild/sunos-x64/0.16.17: + /@esbuild/sunos-x64@0.16.17: resolution: {integrity: sha512-xtVUiev38tN0R3g8VhRfN7Zl42YCJvyBhRKw1RJjwE1d2emWTVToPLNEQj/5Qxc6lVFATDiy6LjVHYhIPrLxzw==} engines: {node: '>=12'} cpu: [x64] @@ -3725,7 +3811,7 @@ packages: dev: true optional: true - /@esbuild/win32-arm64/0.16.17: + /@esbuild/win32-arm64@0.16.17: resolution: {integrity: sha512-ga8+JqBDHY4b6fQAmOgtJJue36scANy4l/rL97W+0wYmijhxKetzZdKOJI7olaBaMhWt8Pac2McJdZLxXWUEQw==} engines: {node: '>=12'} cpu: [arm64] @@ -3734,7 +3820,7 @@ packages: dev: true optional: true - /@esbuild/win32-ia32/0.16.17: + /@esbuild/win32-ia32@0.16.17: resolution: {integrity: sha512-WnsKaf46uSSF/sZhwnqE4L/F89AYNMiD4YtEcYekBt9Q7nj0DiId2XH2Ng2PHM54qi5oPrQ8luuzGszqi/veig==} engines: {node: '>=12'} cpu: [ia32] @@ -3743,7 +3829,7 @@ packages: dev: true optional: true - /@esbuild/win32-x64/0.16.17: + /@esbuild/win32-x64@0.16.17: resolution: {integrity: sha512-y+EHuSchhL7FjHgvQL/0fnnFmO4T1bhvWANX6gcnqTjtnKWbTvUMCpGnv2+t+31d7RzyEAYAd4u2fnIhHL6N/Q==} engines: {node: '>=12'} cpu: [x64] @@ -3752,12 +3838,12 @@ packages: dev: true optional: true - /@eslint/eslintrc/1.4.1: + /@eslint/eslintrc@1.4.1: resolution: {integrity: sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==} 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.4.1 globals: 13.20.0 ignore: 5.2.4 @@ -3768,7 +3854,7 @@ packages: transitivePeerDependencies: - supports-color - /@ethersproject/address/5.7.0: + /@ethersproject/address@5.7.0: resolution: {integrity: sha512-9wYhYt7aghVGo758POM5nqcOMaE168Q6aRLJZwUmiqSrAungkG74gSSeKEIR7ukixesdRZGPgVqme6vmxs1fkA==} dependencies: '@ethersproject/bignumber': 5.7.0 @@ -3778,7 +3864,7 @@ packages: '@ethersproject/rlp': 5.7.0 dev: false - /@ethersproject/bignumber/5.7.0: + /@ethersproject/bignumber@5.7.0: resolution: {integrity: sha512-n1CAdIHRWjSucQO3MC1zPSVgV/6dy/fjL9pMrPP9peL+QxEg9wOsVqwD4+818B6LUEtaXzVHQiuivzRoxPxUGw==} dependencies: '@ethersproject/bytes': 5.7.0 @@ -3786,54 +3872,54 @@ packages: bn.js: 5.2.1 dev: false - /@ethersproject/bytes/5.7.0: + /@ethersproject/bytes@5.7.0: resolution: {integrity: sha512-nsbxwgFXWh9NyYWo+U8atvmMsSdKJprTcICAkvbBffT75qDocbuggBU0SJiVK2MuTrp0q+xvLkTnGMPK1+uA9A==} dependencies: '@ethersproject/logger': 5.7.0 dev: false - /@ethersproject/keccak256/5.7.0: + /@ethersproject/keccak256@5.7.0: resolution: {integrity: sha512-2UcPboeL/iW+pSg6vZ6ydF8tCnv3Iu/8tUmLLzWWGzxWKFFqOBQFLo6uLUv6BDrLgCDfN28RJ/wtByx+jZ4KBg==} dependencies: '@ethersproject/bytes': 5.7.0 js-sha3: 0.8.0 dev: false - /@ethersproject/logger/5.7.0: + /@ethersproject/logger@5.7.0: resolution: {integrity: sha512-0odtFdXu/XHtjQXJYA3u9G0G8btm0ND5Cu8M7i5vhEcE8/HmF4Lbdqanwyv4uQTr2tx6b7fQRmgLrsnpQlmnig==} dev: false - /@ethersproject/rlp/5.7.0: + /@ethersproject/rlp@5.7.0: resolution: {integrity: sha512-rBxzX2vK8mVF7b0Tol44t5Tb8gomOHkj5guL+HhzQ1yBh/ydjGnpw6at+X6Iw0Kp3OzzzkcKp8N9r0W4kYSs9w==} dependencies: '@ethersproject/bytes': 5.7.0 '@ethersproject/logger': 5.7.0 dev: false - /@floating-ui/core/1.2.2: + /@floating-ui/core@1.2.2: resolution: {integrity: sha512-FaO9KVLFnxknZaGWGmNtjD2CVFuc0u4yeGEofoyXO2wgRA7fLtkngT6UB0vtWQWuhH3iMTZZ/Y89CMeyGfn8pA==} dev: false - /@floating-ui/dom/1.2.3: + /@floating-ui/dom@1.2.3: resolution: {integrity: sha512-lK9cZUrHSJLMVAdCvDqs6Ug8gr0wmqksYiaoj/bxj2gweRQkSuhg2/V6Jswz2KiQ0RAULbqw1oQDJIMpQ5GfGA==} dependencies: '@floating-ui/core': 1.2.2 dev: false - /@humanwhocodes/config-array/0.9.5: + /@humanwhocodes/config-array@0.9.5: resolution: {integrity: sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==} engines: {node: '>=10.10.0'} dependencies: '@humanwhocodes/object-schema': 1.2.1 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) minimatch: 3.1.2 transitivePeerDependencies: - supports-color - /@humanwhocodes/object-schema/1.2.1: + /@humanwhocodes/object-schema@1.2.1: resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} - /@iov/crypto/2.1.0: + /@iov/crypto@2.1.0: resolution: {integrity: sha512-jnb4XuK50admolm7fBxOcxfAW2TO+wYrZlhDWiMETItY/Y5gNNa1zaDSO2wNIjjfGng+8nQ1yqnNhqy7busV2Q==} dependencies: '@iov/encoding': 2.1.0 @@ -3849,7 +3935,7 @@ packages: unorm: 1.6.0 dev: false - /@iov/encoding/2.1.0: + /@iov/encoding@2.1.0: resolution: {integrity: sha512-5IOdLO7Xg/uRykuiCqeMYghQ3IjWDtGxv7NTWXkgpHuna0aewx43mRpT2NPCpOZd1tpuorDtQ7/zbDNRaIIF/w==} dependencies: base64-js: 1.5.1 @@ -3858,11 +3944,11 @@ packages: readonly-date: 1.0.0 dev: false - /@iov/utils/2.0.2: + /@iov/utils@2.0.2: resolution: {integrity: sha512-4D8MEvTcFc/DVy5q25vHxRItmgJyeX85dixMH+MxdKr+yy71h3sYk+sVBEIn70uqGP7VqAJkGOPNFs08/XYELw==} dev: false - /@istanbuljs/load-nyc-config/1.1.0: + /@istanbuljs/load-nyc-config@1.1.0: resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} engines: {node: '>=8'} dependencies: @@ -3872,11 +3958,11 @@ packages: js-yaml: 3.14.1 resolve-from: 5.0.0 - /@istanbuljs/schema/0.1.3: + /@istanbuljs/schema@0.1.3: resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} engines: {node: '>=8'} - /@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: @@ -3887,7 +3973,7 @@ packages: jest-util: 28.1.3 slash: 3.0.0 - /@jest/console/29.4.3: + /@jest/console@29.4.3: resolution: {integrity: sha512-W/o/34+wQuXlgqlPYTansOSiBnuxrTv61dEVkA6HNmpcgHLUjfaUbdqt6oVvOzaawwo9IdW9QOtMgQ1ScSZC4A==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -3899,7 +3985,7 @@ packages: slash: 3.0.0 dev: true - /@jest/core/29.4.3_ts-node@10.9.1: + /@jest/core@29.4.3(ts-node@10.9.1): resolution: {integrity: sha512-56QvBq60fS4SPZCuM7T+7scNrkGIe7Mr6PVIXUpu48ouvRaWOFqRPV91eifvFM0ay2HmfswXiGf97NGUN5KofQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: @@ -3920,7 +4006,7 @@ packages: exit: 0.1.2 graceful-fs: 4.2.10 jest-changed-files: 29.4.3 - jest-config: 29.4.3_jboh4c3iv3wxuja4m36ecyac7e + jest-config: 29.4.3(@types/node@18.14.2)(ts-node@10.9.1) jest-haste-map: 29.4.3 jest-message-util: 29.4.3 jest-regex-util: 29.4.3 @@ -3941,7 +4027,7 @@ packages: - ts-node dev: true - /@jest/environment/28.1.3: + /@jest/environment@28.1.3: resolution: {integrity: sha512-1bf40cMFTEkKyEf585R9Iz1WayDjHoHqvts0XFYEqyKM3cFWDpeMoqKKTAF9LSYQModPUlh8FKptoM2YcMWAXA==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: @@ -3950,7 +4036,7 @@ packages: '@types/node': 18.14.2 jest-mock: 28.1.3 - /@jest/environment/29.4.3: + /@jest/environment@29.4.3: resolution: {integrity: sha512-dq5S6408IxIa+lr54zeqce+QgI+CJT4nmmA+1yzFgtcsGK8c/EyiUb9XQOgz3BMKrRDfKseeOaxj2eO8LlD3lA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -3960,20 +4046,20 @@ packages: jest-mock: 29.4.3 dev: true - /@jest/expect-utils/28.1.3: + /@jest/expect-utils@28.1.3: resolution: {integrity: sha512-wvbi9LUrHJLn3NlDW6wF2hvIMtd4JUl2QNVrjq+IBSHirgfrR3o9RnVtxzdEGO2n9JyIWwHnLfby5KzqBGg2YA==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: jest-get-type: 28.0.2 - /@jest/expect-utils/29.4.3: + /@jest/expect-utils@29.4.3: resolution: {integrity: sha512-/6JWbkxHOP8EoS8jeeTd9dTfc9Uawi+43oLKHfp6zzux3U2hqOOVnV3ai4RpDYHOccL6g+5nrxpoc8DmJxtXVQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: jest-get-type: 29.4.3 dev: true - /@jest/expect/28.1.3: + /@jest/expect@28.1.3: resolution: {integrity: sha512-lzc8CpUbSoE4dqT0U+g1qODQjBRHPpCPXissXD4mS9+sWQdmmpeJ9zSH1rS1HEkrsMN0fb7nKrJ9giAR1d3wBw==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: @@ -3982,7 +4068,7 @@ packages: transitivePeerDependencies: - supports-color - /@jest/expect/29.4.3: + /@jest/expect@29.4.3: resolution: {integrity: sha512-iktRU/YsxEtumI9zsPctYUk7ptpC+AVLLk1Ax3AsA4g1C+8OOnKDkIQBDHtD5hA/+VtgMd5AWI5gNlcAlt2vxQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -3992,7 +4078,7 @@ packages: - supports-color dev: true - /@jest/fake-timers/28.1.3: + /@jest/fake-timers@28.1.3: resolution: {integrity: sha512-D/wOkL2POHv52h+ok5Oj/1gOG9HSywdoPtFsRCUmlCILXNn5eIWmcnd3DIiWlJnpGvQtmajqBP95Ei0EimxfLw==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: @@ -4003,7 +4089,7 @@ packages: jest-mock: 28.1.3 jest-util: 28.1.3 - /@jest/fake-timers/29.4.3: + /@jest/fake-timers@29.4.3: resolution: {integrity: sha512-4Hote2MGcCTWSD2gwl0dwbCpBRHhE6olYEuTj8FMowdg3oQWNKr2YuxenPQYZ7+PfqPY1k98wKDU4Z+Hvd4Tiw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -4015,7 +4101,7 @@ packages: jest-util: 29.4.3 dev: true - /@jest/globals/28.1.3: + /@jest/globals@28.1.3: resolution: {integrity: sha512-XFU4P4phyryCXu1pbcqMO0GSQcYe1IsalYCDzRNyhetyeyxMcIxa11qPNDpVNLeretItNqEmYYQn1UYz/5x1NA==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: @@ -4025,7 +4111,7 @@ packages: transitivePeerDependencies: - supports-color - /@jest/globals/29.4.3: + /@jest/globals@29.4.3: resolution: {integrity: sha512-8BQ/5EzfOLG7AaMcDh7yFCbfRLtsc+09E1RQmRBI4D6QQk4m6NSK/MXo+3bJrBN0yU8A2/VIcqhvsOLFmziioA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -4037,7 +4123,7 @@ packages: - supports-color dev: true - /@jest/reporters/28.1.1: + /@jest/reporters@28.1.1: resolution: {integrity: sha512-597Zj4D4d88sZrzM4atEGLuO7SdA/YrOv9SRXHXRNC+/FwPCWxZhBAEzhXoiJzfRwn8zes/EjS8Lo6DouGN5Gg==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} peerDependencies: @@ -4074,7 +4160,7 @@ packages: transitivePeerDependencies: - supports-color - /@jest/reporters/29.4.3: + /@jest/reporters@29.4.3: resolution: {integrity: sha512-sr2I7BmOjJhyqj9ANC6CTLsL4emMoka7HkQpcoMRlhCbQJjz2zsRzw0BDPiPyEFDXAbxKgGFYuQZiSJ1Y6YoTg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: @@ -4111,20 +4197,20 @@ 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 dev: true - /@jest/source-map/28.1.2: + /@jest/source-map@28.1.2: resolution: {integrity: sha512-cV8Lx3BeStJb8ipPHnqVw/IM2VCMWO3crWZzYodSIkxXnRcXJipCdx1JCK0K5MsJJouZQTH73mzf4vgxRaH9ww==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: @@ -4132,7 +4218,7 @@ packages: callsites: 3.1.0 graceful-fs: 4.2.10 - /@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: @@ -4141,7 +4227,7 @@ packages: graceful-fs: 4.2.10 dev: true - /@jest/test-result/28.1.1: + /@jest/test-result@28.1.1: resolution: {integrity: sha512-hPmkugBktqL6rRzwWAtp1JtYT4VHwv8OQ+9lE5Gymj6dHzubI/oJHMUpPOt8NrdVWSrz9S7bHjJUmv2ggFoUNQ==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: @@ -4150,7 +4236,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: @@ -4159,7 +4245,7 @@ packages: '@types/istanbul-lib-coverage': 2.0.4 collect-v8-coverage: 1.0.1 - /@jest/test-result/29.4.3: + /@jest/test-result@29.4.3: resolution: {integrity: sha512-Oi4u9NfBolMq9MASPwuWTlC5WvmNRwI4S8YrQg5R5Gi47DYlBe3sh7ILTqi/LGrK1XUE4XY9KZcQJTH1WJCLLA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -4169,7 +4255,7 @@ packages: collect-v8-coverage: 1.0.1 dev: true - /@jest/test-sequencer/28.1.3: + /@jest/test-sequencer@28.1.3: resolution: {integrity: sha512-NIMPEqqa59MWnDi1kvXXpYbqsfQmSJsIbnd85mdVGkiDfQ9WQQTXOLsvISUfonmnBT+w85WEgneCigEEdHDFxw==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: @@ -4178,7 +4264,7 @@ packages: jest-haste-map: 28.1.3 slash: 3.0.0 - /@jest/test-sequencer/29.4.3: + /@jest/test-sequencer@29.4.3: resolution: {integrity: sha512-yi/t2nES4GB4G0mjLc0RInCq/cNr9dNwJxcGg8sslajua5Kb4kmozAc+qPLzplhBgfw1vLItbjyHzUN92UXicw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -4188,7 +4274,7 @@ packages: slash: 3.0.0 dev: true - /@jest/transform/28.1.3: + /@jest/transform@28.1.3: resolution: {integrity: sha512-u5dT5di+oFI6hfcLOHGTAfmUxFRrjK+vnaP0kkVow9Md/M7V/MxqQMOz/VV25UZO8pzeA9PjfTpOu6BDuwSPQA==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: @@ -4210,7 +4296,7 @@ packages: transitivePeerDependencies: - supports-color - /@jest/transform/29.4.3: + /@jest/transform@29.4.3: resolution: {integrity: sha512-8u0+fBGWolDshsFgPQJESkDa72da/EVwvL+II0trN2DR66wMwiQ9/CihaGfHdlLGFzbBZwMykFtxuwFdZqlKwg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -4233,7 +4319,7 @@ packages: - supports-color dev: true - /@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: @@ -4244,7 +4330,7 @@ packages: '@types/yargs': 17.0.22 chalk: 4.1.2 - /@jest/types/29.4.3: + /@jest/types@29.4.3: resolution: {integrity: sha512-bPYfw8V65v17m2Od1cv44FH+SiKW7w2Xu7trhcdTLUmSv85rfKsP+qXSjO4KGJr4dtPSzl/gvslZBXctf1qGEA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -4256,14 +4342,14 @@ packages: chalk: 4.1.2 dev: true - /@jridgewell/gen-mapping/0.1.1: + /@jridgewell/gen-mapping@0.1.1: resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==} engines: {node: '>=6.0.0'} dependencies: '@jridgewell/set-array': 1.1.2 '@jridgewell/sourcemap-codec': 1.4.14 - /@jridgewell/gen-mapping/0.3.2: + /@jridgewell/gen-mapping@0.3.2: resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==} engines: {node: '>=6.0.0'} dependencies: @@ -4271,37 +4357,37 @@ packages: '@jridgewell/sourcemap-codec': 1.4.14 '@jridgewell/trace-mapping': 0.3.17 - /@jridgewell/resolve-uri/3.1.0: + /@jridgewell/resolve-uri@3.1.0: resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==} engines: {node: '>=6.0.0'} - /@jridgewell/set-array/1.1.2: + /@jridgewell/set-array@1.1.2: resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} engines: {node: '>=6.0.0'} - /@jridgewell/source-map/0.3.2: + /@jridgewell/source-map@0.3.2: resolution: {integrity: sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==} dependencies: '@jridgewell/gen-mapping': 0.3.2 '@jridgewell/trace-mapping': 0.3.17 dev: false - /@jridgewell/sourcemap-codec/1.4.14: + /@jridgewell/sourcemap-codec@1.4.14: resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==} - /@jridgewell/trace-mapping/0.3.17: + /@jridgewell/trace-mapping@0.3.17: resolution: {integrity: sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==} dependencies: '@jridgewell/resolve-uri': 3.1.0 '@jridgewell/sourcemap-codec': 1.4.14 - /@jridgewell/trace-mapping/0.3.9: + /@jridgewell/trace-mapping@0.3.9: resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} dependencies: '@jridgewell/resolve-uri': 3.1.0 '@jridgewell/sourcemap-codec': 1.4.14 - /@keplr-wallet/common/0.11.16: + /@keplr-wallet/common@0.11.16: resolution: {integrity: sha512-RTbfe8LkPzQQqYntx53dZTuDUgx+W6KRY4g3fIv1c59DS/bp9ZqjYfUDmj3yH0GQk822zqJJwCtjk+qsgvyebg==} dependencies: '@keplr-wallet/crypto': 0.11.16 @@ -4309,7 +4395,7 @@ packages: delay: 4.4.1 dev: false - /@keplr-wallet/common/0.11.44: + /@keplr-wallet/common@0.11.44: resolution: {integrity: sha512-GBaan7SHLwlJxL8qDzpYaywPlAMZA8XoY4igNbiXeCDIKjh+up8qsYofVlxv1HxRnLSuKbefkDekdMfU0PnQ+g==} dependencies: '@keplr-wallet/crypto': 0.11.44 @@ -4317,7 +4403,7 @@ packages: delay: 4.4.1 dev: false - /@keplr-wallet/cosmos/0.11.16: + /@keplr-wallet/cosmos@0.11.16: resolution: {integrity: sha512-Rgch9zw+GKQ2wAKw6I5+J8AAlKHs4MhnkGFfTuqy0e453Ig0+KCHvs+IgMURM9j6E7K0OPQVc4vCvWnQLs6Zbw==} dependencies: '@ethersproject/address': 5.7.0 @@ -4335,7 +4421,7 @@ packages: - debug dev: false - /@keplr-wallet/cosmos/0.11.44: + /@keplr-wallet/cosmos@0.11.44: resolution: {integrity: sha512-k9nD+eIpupuwu4hpocFEgGDM3aZKfAl6biidpRquSYH+2mL+6on9UDs00Us8B1nZA81p4NTe2xju5ZKC2+/zDw==} dependencies: '@ethersproject/address': 5.7.0 @@ -4353,7 +4439,7 @@ packages: - debug dev: false - /@keplr-wallet/crypto/0.11.16: + /@keplr-wallet/crypto@0.11.16: resolution: {integrity: sha512-th3t05Aq+uQLbhhiqIHbevY3pA4dBKr+vKcUpfdshcc78fI1eGpmzGcQKxlvbectBn4UwamTEANssyplXOGQqg==} dependencies: '@ethersproject/keccak256': 5.7.0 @@ -4366,7 +4452,7 @@ packages: sha.js: 2.4.11 dev: false - /@keplr-wallet/crypto/0.11.44: + /@keplr-wallet/crypto@0.11.44: resolution: {integrity: sha512-RNI59Tex/dnuBLC2TdhjkcgYeOqJYoxC3YZQMiM13u7G7OT48h11hJG6eXik/D7AlXxY+Fj/DhDZ75ywS/DOKA==} dependencies: '@ethersproject/keccak256': 5.7.0 @@ -4379,21 +4465,21 @@ packages: sha.js: 2.4.11 dev: false - /@keplr-wallet/proto-types/0.11.16: + /@keplr-wallet/proto-types@0.11.16: resolution: {integrity: sha512-0tX7AN1bmlZdpUwqgjQU6MI+p+qBBaWUxHvOrNYtvX0FShw9RihasWdrV6biciQewVd54fChVIGmYKhCLtwPsg==} dependencies: long: 4.0.0 protobufjs: 6.11.3 dev: false - /@keplr-wallet/proto-types/0.11.44: + /@keplr-wallet/proto-types@0.11.44: resolution: {integrity: sha512-qwq+VJ0nwU1OCyM70jqebWHvl6XlHB6kXRlBeNnL+FPdyYGzQFgsJeNK9fveY2wFE/gqcPc4oQjHuU0fifvipQ==} dependencies: long: 4.0.0 protobufjs: 6.11.3 dev: false - /@keplr-wallet/types/0.11.16: + /@keplr-wallet/types@0.11.16: resolution: {integrity: sha512-jkBWj6bcw6BZqPavLms3EcaK6YG4suoTPA9PuO6+eFjj7TomUrzzYdhXyc7Mm0K/KVEz5CjPxjmx7LsPuWYKgg==} dependencies: axios: 0.27.2 @@ -4403,7 +4489,7 @@ packages: - debug dev: false - /@keplr-wallet/types/0.11.44: + /@keplr-wallet/types@0.11.44: resolution: {integrity: sha512-QR7oh3r2yFP7vBHVh3MnTt+E+sFV4tATD8b6rnO7ym6B3Novm69TQgo4EM9uqh0LUSnWHPQFN9unyTKtnNvApw==} dependencies: axios: 0.27.2 @@ -4412,7 +4498,7 @@ packages: - debug dev: false - /@keplr-wallet/unit/0.11.16: + /@keplr-wallet/unit@0.11.16: resolution: {integrity: sha512-RRVE3oLZq84P4CQONHXDRX+jdqsP9Zar0V9ROAkG4qzitG2glNY/KCVd9SeSOatbGOb/4X88/4pH273TkjtlRA==} dependencies: '@keplr-wallet/types': 0.11.16 @@ -4422,7 +4508,7 @@ packages: - debug dev: false - /@keplr-wallet/unit/0.11.44: + /@keplr-wallet/unit@0.11.44: resolution: {integrity: sha512-gRUDzg/qXaEhQ+fp45RGOMGLrH+5gNlFvSH/9/vFhqlaKKHAhq4Aj8pEZfeZBocpqbrgNca+nv1XnvPgWtzNHw==} dependencies: '@keplr-wallet/types': 0.11.44 @@ -4432,21 +4518,21 @@ packages: - debug dev: false - /@leichtgewicht/ip-codec/2.0.4: + /@leichtgewicht/ip-codec@2.0.4: resolution: {integrity: sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==} dev: false - /@next/env/13.2.3: + /@next/env@13.2.3: resolution: {integrity: sha512-FN50r/E+b8wuqyRjmGaqvqNDuWBWYWQiigfZ50KnSFH0f+AMQQyaZl+Zm2+CIpKk0fL9QxhLxOpTVA3xFHgFow==} dev: false - /@next/eslint-plugin-next/13.1.1: + /@next/eslint-plugin-next@13.1.1: resolution: {integrity: sha512-SBrOFS8PC3nQ5aeZmawJkjKkWjwK9RoxvBSv/86nZp0ubdoVQoko8r8htALd9ufp16NhacCdqhu9bzZLDWtALQ==} dependencies: glob: 7.1.7 dev: true - /@next/swc-android-arm-eabi/13.2.3: + /@next/swc-android-arm-eabi@13.2.3: resolution: {integrity: sha512-mykdVaAXX/gm+eFO2kPeVjnOCKwanJ9mV2U0lsUGLrEdMUifPUjiXKc6qFAIs08PvmTMOLMNnUxqhGsJlWGKSw==} engines: {node: '>= 10'} cpu: [arm] @@ -4455,7 +4541,7 @@ packages: dev: false optional: true - /@next/swc-android-arm64/13.2.3: + /@next/swc-android-arm64@13.2.3: resolution: {integrity: sha512-8XwHPpA12gdIFtope+n9xCtJZM3U4gH4vVTpUwJ2w1kfxFmCpwQ4xmeGSkR67uOg80yRMuF0h9V1ueo05sws5w==} engines: {node: '>= 10'} cpu: [arm64] @@ -4464,7 +4550,7 @@ packages: dev: false optional: true - /@next/swc-darwin-arm64/13.2.3: + /@next/swc-darwin-arm64@13.2.3: resolution: {integrity: sha512-TXOubiFdLpMfMtaRu1K5d1I9ipKbW5iS2BNbu8zJhoqrhk3Kp7aRKTxqFfWrbliAHhWVE/3fQZUYZOWSXVQi1w==} engines: {node: '>= 10'} cpu: [arm64] @@ -4473,7 +4559,7 @@ packages: dev: false optional: true - /@next/swc-darwin-x64/13.2.3: + /@next/swc-darwin-x64@13.2.3: resolution: {integrity: sha512-GZctkN6bJbpjlFiS5pylgB2pifHvgkqLAPumJzxnxkf7kqNm6rOGuNjsROvOWVWXmKhrzQkREO/WPS2aWsr/yw==} engines: {node: '>= 10'} cpu: [x64] @@ -4482,7 +4568,7 @@ packages: dev: false optional: true - /@next/swc-freebsd-x64/13.2.3: + /@next/swc-freebsd-x64@13.2.3: resolution: {integrity: sha512-rK6GpmMt/mU6MPuav0/M7hJ/3t8HbKPCELw/Uqhi4732xoq2hJ2zbo2FkYs56y6w0KiXrIp4IOwNB9K8L/q62g==} engines: {node: '>= 10'} cpu: [x64] @@ -4491,7 +4577,7 @@ packages: dev: false optional: true - /@next/swc-linux-arm-gnueabihf/13.2.3: + /@next/swc-linux-arm-gnueabihf@13.2.3: resolution: {integrity: sha512-yeiCp/Odt1UJ4KUE89XkeaaboIDiVFqKP4esvoLKGJ0fcqJXMofj4ad3tuQxAMs3F+qqrz9MclqhAHkex1aPZA==} engines: {node: '>= 10'} cpu: [arm] @@ -4500,7 +4586,7 @@ packages: dev: false optional: true - /@next/swc-linux-arm64-gnu/13.2.3: + /@next/swc-linux-arm64-gnu@13.2.3: resolution: {integrity: sha512-/miIopDOUsuNlvjBjTipvoyjjaxgkOuvlz+cIbbPcm1eFvzX2ltSfgMgty15GuOiR8Hub4FeTSiq3g2dmCkzGA==} engines: {node: '>= 10'} cpu: [arm64] @@ -4509,7 +4595,7 @@ packages: dev: false optional: true - /@next/swc-linux-arm64-musl/13.2.3: + /@next/swc-linux-arm64-musl@13.2.3: resolution: {integrity: sha512-sujxFDhMMDjqhruup8LLGV/y+nCPi6nm5DlFoThMJFvaaKr/imhkXuk8uCTq4YJDbtRxnjydFv2y8laBSJVC2g==} engines: {node: '>= 10'} cpu: [arm64] @@ -4518,7 +4604,7 @@ packages: dev: false optional: true - /@next/swc-linux-x64-gnu/13.2.3: + /@next/swc-linux-x64-gnu@13.2.3: resolution: {integrity: sha512-w5MyxPknVvC9LVnMenAYMXMx4KxPwXuJRMQFvY71uXg68n7cvcas85U5zkdrbmuZ+JvsO5SIG8k36/6X3nUhmQ==} engines: {node: '>= 10'} cpu: [x64] @@ -4527,7 +4613,7 @@ packages: dev: false optional: true - /@next/swc-linux-x64-musl/13.2.3: + /@next/swc-linux-x64-musl@13.2.3: resolution: {integrity: sha512-CTeelh8OzSOVqpzMFMFnVRJIFAFQoTsI9RmVJWW/92S4xfECGcOzgsX37CZ8K982WHRzKU7exeh7vYdG/Eh4CA==} engines: {node: '>= 10'} cpu: [x64] @@ -4536,7 +4622,7 @@ packages: dev: false optional: true - /@next/swc-win32-arm64-msvc/13.2.3: + /@next/swc-win32-arm64-msvc@13.2.3: resolution: {integrity: sha512-7N1KBQP5mo4xf52cFCHgMjzbc9jizIlkTepe9tMa2WFvEIlKDfdt38QYcr9mbtny17yuaIw02FXOVEytGzqdOQ==} engines: {node: '>= 10'} cpu: [arm64] @@ -4545,7 +4631,7 @@ packages: dev: false optional: true - /@next/swc-win32-ia32-msvc/13.2.3: + /@next/swc-win32-ia32-msvc@13.2.3: resolution: {integrity: sha512-LzWD5pTSipUXTEMRjtxES/NBYktuZdo7xExJqGDMnZU8WOI+v9mQzsmQgZS/q02eIv78JOCSemqVVKZBGCgUvA==} engines: {node: '>= 10'} cpu: [ia32] @@ -4554,7 +4640,7 @@ packages: dev: false optional: true - /@next/swc-win32-x64-msvc/13.2.3: + /@next/swc-win32-x64-msvc@13.2.3: resolution: {integrity: sha512-aLG2MaFs4y7IwaMTosz2r4mVbqRyCnMoFqOcmfTi7/mAS+G4IMH0vJp4oLdbshqiVoiVuKrAfqtXj55/m7Qu1Q==} engines: {node: '>= 10'} cpu: [x64] @@ -4563,29 +4649,29 @@ packages: dev: false optional: true - /@noble/hashes/1.2.0: + /@noble/hashes@1.2.0: resolution: {integrity: sha512-FZfhjEDbT5GRswV3C6uvLPHMiVD6lQBmpoX5+eSiPaMTXte/IKqI5dykDxzZB/WBeK/CDuQRBWarPdi3FNY2zQ==} dev: false - /@nodelib/fs.scandir/2.1.5: + /@nodelib/fs.scandir@2.1.5: resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} engines: {node: '>= 8'} dependencies: '@nodelib/fs.stat': 2.0.5 run-parallel: 1.2.0 - /@nodelib/fs.stat/2.0.5: + /@nodelib/fs.stat@2.0.5: resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} engines: {node: '>= 8'} - /@nodelib/fs.walk/1.2.8: + /@nodelib/fs.walk@1.2.8: resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} engines: {node: '>= 8'} dependencies: '@nodelib/fs.scandir': 2.1.5 fastq: 1.15.0 - /@nrwl/cli/15.7.2: + /@nrwl/cli@15.7.2: resolution: {integrity: sha512-A/72FAW1e0ku8YB/PaCqN9BpVvciO83MS5F5bvX5PA8xCNqe1+iXp/5T2ASnN2lB9zR3fQJmvR7mHKTKQlqQQQ==} dependencies: nx: 15.7.2 @@ -4594,7 +4680,7 @@ packages: - '@swc/core' - debug - /@nrwl/cli/15.8.5: + /@nrwl/cli@15.8.5: resolution: {integrity: sha512-voy16nUO1MxRMRqCpLlhDB9U4KyPfGHZABXtfMEIQk+W3alncatFMMSVvMQZmi8HXwubM8LxWSOnPtTtOCKBrQ==} dependencies: nx: 15.8.5 @@ -4603,7 +4689,7 @@ packages: - '@swc/core' - debug - /@nrwl/cypress/15.8.5_6poz2htxic2oghbdep4xcarnry: + /@nrwl/cypress@15.8.5(cypress@12.7.0)(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5): resolution: {integrity: sha512-y9+mLL5Yw8RRaCBkdmFG8br39rYUPF03P3kx2AI7KbCs0e1kfPe6E7TaPOgdtEeSTvitjE9YeamFlWfOEHXp0A==} peerDependencies: cypress: '>= 3 < 13' @@ -4611,15 +4697,16 @@ packages: cypress: optional: true dependencies: - '@nrwl/devkit': 15.8.5_nx@15.7.2+typescript@4.9.5 - '@nrwl/js': 15.8.5_wi7kwhfbxlhncdveqfqfnunpki - '@nrwl/linter': 15.8.5_wi7kwhfbxlhncdveqfqfnunpki - '@nrwl/workspace': 15.8.5_xbutml5teg6536gsdu4z5mzgvm - '@phenomnomnominal/tsquery': 4.1.1_typescript@4.9.5 + '@nrwl/devkit': 15.8.5(nx@15.7.2)(typescript@4.9.5) + '@nrwl/js': 15.8.5(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5) + '@nrwl/linter': 15.8.5(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5) + '@nrwl/workspace': 15.8.5(eslint@8.15.0)(prettier@2.8.4)(typescript@4.9.5) + '@phenomnomnominal/tsquery': 4.1.1(typescript@4.9.5) cypress: 12.7.0 dotenv: 10.0.0 semver: 7.3.4 transitivePeerDependencies: + - '@babel/traverse' - '@swc-node/register' - '@swc/core' - debug @@ -4629,12 +4716,12 @@ packages: - supports-color - typescript - /@nrwl/devkit/15.7.2_nx@15.7.2+typescript@4.9.5: + /@nrwl/devkit@15.7.2(nx@15.7.2)(typescript@4.9.5): resolution: {integrity: sha512-HMGi7L6w2g4IrYwhb04snD8Zr24Z/gzau5i9WUNkwzrjeR1xAm0Cc9WRre221zaeohtK11gyBt7BerT1tgkNwA==} peerDependencies: nx: '>= 14.1 <= 16' dependencies: - '@phenomnomnominal/tsquery': 4.1.1_typescript@4.9.5 + '@phenomnomnominal/tsquery': 4.1.1(typescript@4.9.5) ejs: 3.1.8 ignore: 5.2.4 nx: 15.7.2 @@ -4644,12 +4731,12 @@ packages: - typescript dev: true - /@nrwl/devkit/15.8.5_nx@15.7.2+typescript@4.9.5: + /@nrwl/devkit@15.8.5(nx@15.7.2)(typescript@4.9.5): resolution: {integrity: sha512-NgpD1I1BfFb6wRxB5i5PGP4hMyRhPsArCyENWWvY4gCn8tylAc7yjpQyiDiy2QnymL2PjWM8QeAeCOy1eF2xgw==} peerDependencies: nx: '>= 14.1 <= 16' dependencies: - '@phenomnomnominal/tsquery': 4.1.1_typescript@4.9.5 + '@phenomnomnominal/tsquery': 4.1.1(typescript@4.9.5) ejs: 3.1.8 ignore: 5.2.4 nx: 15.7.2 @@ -4659,12 +4746,12 @@ packages: transitivePeerDependencies: - typescript - /@nrwl/devkit/15.8.5_nx@15.8.5+typescript@4.9.5: + /@nrwl/devkit@15.8.5(nx@15.8.5)(typescript@4.9.5): resolution: {integrity: sha512-NgpD1I1BfFb6wRxB5i5PGP4hMyRhPsArCyENWWvY4gCn8tylAc7yjpQyiDiy2QnymL2PjWM8QeAeCOy1eF2xgw==} peerDependencies: nx: '>= 14.1 <= 16' dependencies: - '@phenomnomnominal/tsquery': 4.1.1_typescript@4.9.5 + '@phenomnomnominal/tsquery': 4.1.1(typescript@4.9.5) ejs: 3.1.8 ignore: 5.2.4 nx: 15.8.5 @@ -4674,7 +4761,7 @@ packages: transitivePeerDependencies: - typescript - /@nrwl/eslint-plugin-nx/15.7.2_ks45u5mdh5t523vmznpmfvudnu: + /@nrwl/eslint-plugin-nx@15.7.2(@typescript-eslint/parser@5.53.0)(eslint-config-prettier@8.1.0)(eslint@8.15.0)(nx@15.7.2)(typescript@4.9.5): resolution: {integrity: sha512-+lMVkLa8eiGsqMx/Jwf3KKTWes9Ha3jhImiJHEEqaCYTMQaR1BbNT6m5hcYb/xwx8zvtkbrsa1khBsuAEQvezg==} peerDependencies: '@typescript-eslint/parser': ^5.29.0 @@ -4683,12 +4770,12 @@ packages: eslint-config-prettier: optional: true dependencies: - '@nrwl/devkit': 15.7.2_nx@15.7.2+typescript@4.9.5 - '@typescript-eslint/parser': 5.53.0_hx5tgzcbd2ycqgjduqhliuc3jm - '@typescript-eslint/utils': 5.53.0_hx5tgzcbd2ycqgjduqhliuc3jm + '@nrwl/devkit': 15.7.2(nx@15.7.2)(typescript@4.9.5) + '@typescript-eslint/parser': 5.53.0(eslint@8.15.0)(typescript@4.9.5) + '@typescript-eslint/utils': 5.53.0(eslint@8.15.0)(typescript@4.9.5) chalk: 4.1.2 confusing-browser-globals: 1.0.11 - eslint-config-prettier: 8.1.0_eslint@8.15.0 + eslint-config-prettier: 8.1.0(eslint@8.15.0) semver: 7.3.4 transitivePeerDependencies: - eslint @@ -4697,23 +4784,24 @@ packages: - typescript dev: true - /@nrwl/jest/15.8.5_rop5dzwp43jpuzviyddoowhixq: + /@nrwl/jest@15.8.5(@types/node@18.14.2)(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(ts-node@10.9.1)(typescript@4.9.5): resolution: {integrity: sha512-19je0KLYqQnjGvjt8CN4jBnGquRnNnRUnH948atIRjW0AyV1INeHxqtrYUJKaOx3m8snQCa01FqJvJjVjl1oAg==} dependencies: '@jest/reporters': 28.1.1 '@jest/test-result': 28.1.1 - '@nrwl/devkit': 15.8.5_nx@15.7.2+typescript@4.9.5 - '@nrwl/js': 15.8.5_wi7kwhfbxlhncdveqfqfnunpki - '@phenomnomnominal/tsquery': 4.1.1_typescript@4.9.5 + '@nrwl/devkit': 15.8.5(nx@15.7.2)(typescript@4.9.5) + '@nrwl/js': 15.8.5(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(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: 28.1.1_jboh4c3iv3wxuja4m36ecyac7e + jest-config: 28.1.1(@types/node@18.14.2)(ts-node@10.9.1) jest-resolve: 28.1.1 jest-util: 28.1.1 resolve.exports: 1.1.0 tslib: 2.5.0 transitivePeerDependencies: + - '@babel/traverse' - '@swc-node/register' - '@swc/core' - '@types/node' @@ -4726,22 +4814,22 @@ packages: - ts-node - typescript - /@nrwl/js/15.7.2_wi7kwhfbxlhncdveqfqfnunpki: + /@nrwl/js@15.7.2(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5): resolution: {integrity: sha512-3DR9le91BeFBJPFjZSuGRRk72aa0bJt7pskbSIGIumZ/lsuoWRgNP2Wzeikqwt3zA7MN1v9pumO4Dbs0hSa4Sg==} dependencies: '@babel/core': 7.21.0 - '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-proposal-decorators': 7.21.0_@babel+core@7.21.0 - '@babel/plugin-transform-runtime': 7.21.0_@babel+core@7.21.0 - '@babel/preset-env': 7.20.2_@babel+core@7.21.0 - '@babel/preset-typescript': 7.21.0_@babel+core@7.21.0 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.21.0) + '@babel/plugin-proposal-decorators': 7.21.0(@babel/core@7.21.0) + '@babel/plugin-transform-runtime': 7.21.0(@babel/core@7.21.0) + '@babel/preset-env': 7.20.2(@babel/core@7.21.0) + '@babel/preset-typescript': 7.21.0(@babel/core@7.21.0) '@babel/runtime': 7.21.0 - '@nrwl/devkit': 15.7.2_nx@15.7.2+typescript@4.9.5 - '@nrwl/linter': 15.7.2_uf4p4dfxgfahjoc2ghcxcg6qle - '@nrwl/workspace': 15.7.2_xbutml5teg6536gsdu4z5mzgvm - babel-plugin-const-enum: 1.2.0_@babel+core@7.21.0 + '@nrwl/devkit': 15.7.2(nx@15.7.2)(typescript@4.9.5) + '@nrwl/linter': 15.7.2(eslint@8.15.0)(nx@15.7.2)(typescript@4.9.5) + '@nrwl/workspace': 15.7.2(eslint@8.15.0)(prettier@2.8.4)(typescript@4.9.5) + babel-plugin-const-enum: 1.2.0(@babel/core@7.21.0) babel-plugin-macros: 2.8.0 - babel-plugin-transform-typescript-metadata: 0.3.2 + babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.21.0) chalk: 4.1.2 fast-glob: 3.2.7 fs-extra: 11.1.0 @@ -4752,6 +4840,7 @@ packages: tree-kill: 1.2.2 tslib: 2.5.0 transitivePeerDependencies: + - '@babel/traverse' - '@swc-node/register' - '@swc/core' - debug @@ -4762,52 +4851,22 @@ packages: - typescript dev: true - /@nrwl/js/15.8.5_nx@15.8.5+typescript@4.9.5: - resolution: {integrity: sha512-G9CADL++MQCAgiPTUuWs2YIGrhDKU92dVb39e37p/2WH75vEnMoYykW7nCHItGCGVa726INYBPjStqL6GxH8XQ==} - dependencies: - '@babel/core': 7.21.0 - '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-proposal-decorators': 7.21.0_@babel+core@7.21.0 - '@babel/plugin-transform-runtime': 7.21.0_@babel+core@7.21.0 - '@babel/preset-env': 7.20.2_@babel+core@7.21.0 - '@babel/preset-typescript': 7.21.0_@babel+core@7.21.0 - '@babel/runtime': 7.21.0 - '@nrwl/devkit': 15.8.5_nx@15.8.5+typescript@4.9.5 - '@nrwl/workspace': 15.8.5_xbutml5teg6536gsdu4z5mzgvm - '@phenomnomnominal/tsquery': 4.1.1_typescript@4.9.5 - babel-plugin-const-enum: 1.2.0_@babel+core@7.21.0 - babel-plugin-macros: 2.8.0 - babel-plugin-transform-typescript-metadata: 0.3.2 - chalk: 4.1.2 - fast-glob: 3.2.7 - fs-extra: 11.1.0 - ignore: 5.2.4 - js-tokens: 4.0.0 - minimatch: 3.0.5 - source-map-support: 0.5.19 - tree-kill: 1.2.2 - tslib: 2.5.0 - transitivePeerDependencies: - - nx - - supports-color - - typescript - - /@nrwl/js/15.8.5_wi7kwhfbxlhncdveqfqfnunpki: + /@nrwl/js@15.8.5(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5): resolution: {integrity: sha512-G9CADL++MQCAgiPTUuWs2YIGrhDKU92dVb39e37p/2WH75vEnMoYykW7nCHItGCGVa726INYBPjStqL6GxH8XQ==} dependencies: '@babel/core': 7.21.0 - '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-proposal-decorators': 7.21.0_@babel+core@7.21.0 - '@babel/plugin-transform-runtime': 7.21.0_@babel+core@7.21.0 - '@babel/preset-env': 7.20.2_@babel+core@7.21.0 - '@babel/preset-typescript': 7.21.0_@babel+core@7.21.0 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.21.0) + '@babel/plugin-proposal-decorators': 7.21.0(@babel/core@7.21.0) + '@babel/plugin-transform-runtime': 7.21.0(@babel/core@7.21.0) + '@babel/preset-env': 7.20.2(@babel/core@7.21.0) + '@babel/preset-typescript': 7.21.0(@babel/core@7.21.0) '@babel/runtime': 7.21.0 - '@nrwl/devkit': 15.8.5_nx@15.7.2+typescript@4.9.5 - '@nrwl/workspace': 15.8.5_xbutml5teg6536gsdu4z5mzgvm - '@phenomnomnominal/tsquery': 4.1.1_typescript@4.9.5 - babel-plugin-const-enum: 1.2.0_@babel+core@7.21.0 + '@nrwl/devkit': 15.8.5(nx@15.7.2)(typescript@4.9.5) + '@nrwl/workspace': 15.8.5(eslint@8.15.0)(prettier@2.8.4)(typescript@4.9.5) + '@phenomnomnominal/tsquery': 4.1.1(typescript@4.9.5) + babel-plugin-const-enum: 1.2.0(@babel/core@7.21.0) babel-plugin-macros: 2.8.0 - babel-plugin-transform-typescript-metadata: 0.3.2 + babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.21.0) chalk: 4.1.2 fast-glob: 3.2.7 fs-extra: 11.1.0 @@ -4818,6 +4877,7 @@ packages: tree-kill: 1.2.2 tslib: 2.5.0 transitivePeerDependencies: + - '@babel/traverse' - '@swc-node/register' - '@swc/core' - debug @@ -4827,7 +4887,7 @@ packages: - supports-color - typescript - /@nrwl/linter/15.7.2_uf4p4dfxgfahjoc2ghcxcg6qle: + /@nrwl/linter@15.7.2(eslint@8.15.0)(nx@15.7.2)(typescript@4.9.5): resolution: {integrity: sha512-6l0jHvTJBWnFGNJ1LJCldaxNO+p13QOD5g8W0pN9pfubVloU/lYCdSEvUrMVDqCjd34mPBzTZU7/N9ga745mnA==} peerDependencies: eslint: ^8.0.0 @@ -4835,8 +4895,8 @@ packages: eslint: optional: true dependencies: - '@nrwl/devkit': 15.7.2_nx@15.7.2+typescript@4.9.5 - '@phenomnomnominal/tsquery': 4.1.1_typescript@4.9.5 + '@nrwl/devkit': 15.7.2(nx@15.7.2)(typescript@4.9.5) + '@phenomnomnominal/tsquery': 4.1.1(typescript@4.9.5) eslint: 8.15.0 tmp: 0.2.1 tslib: 2.5.0 @@ -4845,7 +4905,7 @@ packages: - typescript dev: true - /@nrwl/linter/15.8.5_fn6s46e5fn3ozammbqo5vj4bdu: + /@nrwl/linter@15.8.5(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5): resolution: {integrity: sha512-EJxIAME87JaE1Iao9S9/yfWdoC3IvKsstjGVQssVZmAoWaDVhW3c/EYDRkrk2c9SFLD+tascvxDV5OpXXRVhSA==} peerDependencies: eslint: ^8.0.0 @@ -4853,32 +4913,14 @@ packages: eslint: optional: true dependencies: - '@nrwl/devkit': 15.8.5_nx@15.8.5+typescript@4.9.5 - '@nrwl/js': 15.8.5_nx@15.8.5+typescript@4.9.5 - '@phenomnomnominal/tsquery': 4.1.1_typescript@4.9.5 - eslint: 8.15.0 - tmp: 0.2.1 - tslib: 2.5.0 - transitivePeerDependencies: - - nx - - supports-color - - typescript - - /@nrwl/linter/15.8.5_wi7kwhfbxlhncdveqfqfnunpki: - resolution: {integrity: sha512-EJxIAME87JaE1Iao9S9/yfWdoC3IvKsstjGVQssVZmAoWaDVhW3c/EYDRkrk2c9SFLD+tascvxDV5OpXXRVhSA==} - peerDependencies: - eslint: ^8.0.0 - peerDependenciesMeta: - eslint: - optional: true - dependencies: - '@nrwl/devkit': 15.8.5_nx@15.7.2+typescript@4.9.5 - '@nrwl/js': 15.8.5_wi7kwhfbxlhncdveqfqfnunpki - '@phenomnomnominal/tsquery': 4.1.1_typescript@4.9.5 + '@nrwl/devkit': 15.8.5(nx@15.7.2)(typescript@4.9.5) + '@nrwl/js': 15.8.5(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5) + '@phenomnomnominal/tsquery': 4.1.1(typescript@4.9.5) eslint: 8.15.0 tmp: 0.2.1 tslib: 2.5.0 transitivePeerDependencies: + - '@babel/traverse' - '@swc-node/register' - '@swc/core' - debug @@ -4887,33 +4929,34 @@ packages: - supports-color - typescript - /@nrwl/next/15.8.5_6ejl4ke6ostkqvscdn3ibv3biu: + /@nrwl/next@15.8.5(@babel/core@7.21.0)(@types/node@18.14.2)(cypress@12.7.0)(eslint@8.15.0)(next@13.2.3)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5)(webpack@5.75.0): resolution: {integrity: sha512-Ch9gHgQfZTloC/gPqkMPmBW6Ec486Ux6IU3bt7RzsN0I+y6WUzmDOVJLg44GQP01R3xBrUyR++Y0+w6HPrx3DQ==} peerDependencies: next: ^13.0.0 dependencies: - '@babel/plugin-proposal-decorators': 7.21.0_@babel+core@7.21.0 - '@nrwl/cypress': 15.8.5_6poz2htxic2oghbdep4xcarnry - '@nrwl/devkit': 15.8.5_nx@15.7.2+typescript@4.9.5 - '@nrwl/jest': 15.8.5_rop5dzwp43jpuzviyddoowhixq - '@nrwl/js': 15.8.5_wi7kwhfbxlhncdveqfqfnunpki - '@nrwl/linter': 15.8.5_wi7kwhfbxlhncdveqfqfnunpki - '@nrwl/react': 15.8.5_wi7kwhfbxlhncdveqfqfnunpki - '@nrwl/webpack': 15.8.5_g7qgszdtzzluyef62cj5d24dyq - '@nrwl/workspace': 15.8.5_xbutml5teg6536gsdu4z5mzgvm + '@babel/plugin-proposal-decorators': 7.21.0(@babel/core@7.21.0) + '@nrwl/cypress': 15.8.5(cypress@12.7.0)(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5) + '@nrwl/devkit': 15.8.5(nx@15.7.2)(typescript@4.9.5) + '@nrwl/jest': 15.8.5(@types/node@18.14.2)(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(ts-node@10.9.1)(typescript@4.9.5) + '@nrwl/js': 15.8.5(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5) + '@nrwl/linter': 15.8.5(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5) + '@nrwl/react': 15.8.5(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5) + '@nrwl/webpack': 15.8.5(@babel/core@7.21.0)(@types/node@18.14.2)(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5) + '@nrwl/workspace': 15.8.5(eslint@8.15.0)(prettier@2.8.4)(typescript@4.9.5) '@svgr/webpack': 6.5.1 chalk: 4.1.2 dotenv: 10.0.0 fs-extra: 11.1.0 ignore: 5.2.4 - next: 13.2.3_6m24vuloj5ihw4zc5lbsktc4fu + next: 13.2.3(@babel/core@7.21.0)(react-dom@18.2.0)(react@18.2.0) semver: 7.3.4 - ts-node: 10.9.1_ellgaeuoqnti3hful2ny2iugba + ts-node: 10.9.1(@types/node@18.14.2)(typescript@4.9.5) tsconfig-paths: 4.1.2 - url-loader: 4.1.1_webpack@5.75.0 + url-loader: 4.1.1(webpack@5.75.0) webpack-merge: 5.8.0 transitivePeerDependencies: - '@babel/core' + - '@babel/traverse' - '@parcel/css' - '@swc-node/register' - '@swc/core' @@ -4943,8 +4986,8 @@ packages: - webpack-cli dev: false - /@nrwl/nx-cloud/15.1.1: - resolution: {integrity: sha512-aIVb87PQpAjwdEaFksQ3rYgFq9MDaBG2KvYZcj/k+z2uWeWH84ha/opO37aCFLf5VXNiyJZGRb/+7vW7BFpNOw==} + /@nrwl/nx-cloud@15.3.5: + resolution: {integrity: sha512-JMKLY0HhdzQ/6jEvfL/EecPPdsdBIM0SyFrWAjikSJAh5MqhpFJWnr6FfTc5P57PJZ+IUNLkJ21VMuoTrA4+4w==} hasBin: true dependencies: axios: 0.21.4 @@ -4959,7 +5002,7 @@ packages: - debug dev: true - /@nrwl/nx-darwin-arm64/15.7.2: + /@nrwl/nx-darwin-arm64@15.7.2: resolution: {integrity: sha512-F82exjuqkAkElSTxEcTFeLMhHpbGiccfTQh2VjXMS+ONldxM+Kd7atJjtUG8wKNXfg0lxxjjAdnzLy3iBuN/HQ==} engines: {node: '>= 10'} cpu: [arm64] @@ -4967,7 +5010,7 @@ packages: requiresBuild: true optional: true - /@nrwl/nx-darwin-arm64/15.8.5: + /@nrwl/nx-darwin-arm64@15.8.5: resolution: {integrity: sha512-/8yXbh1J3k85MAW/A6cDiPeEnbt66SE9BPnM2IPlGoZrXakQvAXEn+gsjQlvnP3q2EaEyv7e5+GA+8d+p6mT5A==} engines: {node: '>= 10'} cpu: [arm64] @@ -4975,7 +5018,7 @@ packages: requiresBuild: true optional: true - /@nrwl/nx-darwin-x64/15.7.2: + /@nrwl/nx-darwin-x64@15.7.2: resolution: {integrity: sha512-MNT7Bxz6yhoVLCgGpR0NtVkj20SER1CbrCaY7tmsKVNY9iA/EOZhz9qa3LeA1KZ4lw8Gpi2vD42mOngn7Mwr7w==} engines: {node: '>= 10'} cpu: [x64] @@ -4983,7 +5026,7 @@ packages: requiresBuild: true optional: true - /@nrwl/nx-darwin-x64/15.8.5: + /@nrwl/nx-darwin-x64@15.8.5: resolution: {integrity: sha512-zEVoi0d+YChLrQMypoGFwu73t3YiD8UkXSozMtUEa2mg/se4e7jh+15tB6Te+Oq5aL0JKwQpr027GE4YtAmpLw==} engines: {node: '>= 10'} cpu: [x64] @@ -4991,7 +5034,7 @@ packages: requiresBuild: true optional: true - /@nrwl/nx-linux-arm-gnueabihf/15.7.2: + /@nrwl/nx-linux-arm-gnueabihf@15.7.2: resolution: {integrity: sha512-QGyPkYnZ9LnUnuCzrP50bwsMJ9n6r8K2bNC1sQQwioijY+4MHNL+bMTOGWc8+lYBP7Ju3gpTqozGV3FQVkaM2w==} engines: {node: '>= 10'} cpu: [arm] @@ -4999,7 +5042,7 @@ packages: requiresBuild: true optional: true - /@nrwl/nx-linux-arm-gnueabihf/15.8.5: + /@nrwl/nx-linux-arm-gnueabihf@15.8.5: resolution: {integrity: sha512-4C5wN0C7gQD6/lC9+UKUsB6mbHvowKhlaO529GIgtzrCLmfEh/LJ/CybnnKGpFEB/8Y5GpCa2uTWyA1XcPDzUw==} engines: {node: '>= 10'} cpu: [arm] @@ -5007,7 +5050,7 @@ packages: requiresBuild: true optional: true - /@nrwl/nx-linux-arm64-gnu/15.7.2: + /@nrwl/nx-linux-arm64-gnu@15.7.2: resolution: {integrity: sha512-HqufFVIvuunfChEFGkIhsLhhQjWLTFcCH2aQBSNesHpm6AhFVRGyokNu+PT6NNobr+BTrqJMocBqNQR1uvSyRQ==} engines: {node: '>= 10'} cpu: [arm64] @@ -5015,7 +5058,7 @@ packages: requiresBuild: true optional: true - /@nrwl/nx-linux-arm64-gnu/15.8.5: + /@nrwl/nx-linux-arm64-gnu@15.8.5: resolution: {integrity: sha512-SMQ+oIsyK75JiKeSMprmb8VXce6MLdfcS5GWWOihpoDWfUC9FoQHAu4X1OtxHbVTmJfoEOInJKAhPxXAi5obdw==} engines: {node: '>= 10'} cpu: [arm64] @@ -5023,7 +5066,7 @@ packages: requiresBuild: true optional: true - /@nrwl/nx-linux-arm64-musl/15.7.2: + /@nrwl/nx-linux-arm64-musl@15.7.2: resolution: {integrity: sha512-9B8q6I/OVyQuYe+Yg2wNyxza/CsbvejIUsrK3QGGWUwHlkklqOSmUOHyTrcyMHUSped6CWPyKdIywngYOQzltQ==} engines: {node: '>= 10'} cpu: [arm64] @@ -5031,7 +5074,7 @@ packages: requiresBuild: true optional: true - /@nrwl/nx-linux-arm64-musl/15.8.5: + /@nrwl/nx-linux-arm64-musl@15.8.5: resolution: {integrity: sha512-GVENjltZ17aJ6KOCibdBtLXQcGY5lpBqKolB9+rIYJvTWuV1k/uHOkYJDG7Vl70Rj46rC8K0Jp6BCpJHCv1ksQ==} engines: {node: '>= 10'} cpu: [arm64] @@ -5039,7 +5082,7 @@ packages: requiresBuild: true optional: true - /@nrwl/nx-linux-x64-gnu/15.7.2: + /@nrwl/nx-linux-x64-gnu@15.7.2: resolution: {integrity: sha512-8/6WtQn4derYKUWu5SxWWM+1dGihSZXMhDW9l/sXOr/qbMZu3XBmM2XZSguw/+p9gEVHcMmN0+D+Cai+q6/vDQ==} engines: {node: '>= 10'} cpu: [x64] @@ -5047,7 +5090,7 @@ packages: requiresBuild: true optional: true - /@nrwl/nx-linux-x64-gnu/15.8.5: + /@nrwl/nx-linux-x64-gnu@15.8.5: resolution: {integrity: sha512-AW8YjhZv3c+LRUoLvHLx4BZaDakQbPCPx70+c/uQyDkQP/ckYJc0gRjoZukolcI6+AvNcBhkI559RL9W4qb9iw==} engines: {node: '>= 10'} cpu: [x64] @@ -5055,7 +5098,7 @@ packages: requiresBuild: true optional: true - /@nrwl/nx-linux-x64-musl/15.7.2: + /@nrwl/nx-linux-x64-musl@15.7.2: resolution: {integrity: sha512-c5SbqYZZBeBHhH5E30xwb4cHzCMVa/GQMCyTpZgsS/AHAPHbdkv+pO6bxxALvLPTyimcub7V+xbLCL7rgALzyw==} engines: {node: '>= 10'} cpu: [x64] @@ -5063,7 +5106,7 @@ packages: requiresBuild: true optional: true - /@nrwl/nx-linux-x64-musl/15.8.5: + /@nrwl/nx-linux-x64-musl@15.8.5: resolution: {integrity: sha512-m4Iy/pbzH0LTsADq/X+74nfVzm2Tt0zorOXXy/uQN4ozL/JNGVpwvxdOFxZ7e3RBXDX4u6awUzSE52Z2d2f0uA==} engines: {node: '>= 10'} cpu: [x64] @@ -5071,7 +5114,7 @@ packages: requiresBuild: true optional: true - /@nrwl/nx-win32-arm64-msvc/15.7.2: + /@nrwl/nx-win32-arm64-msvc@15.7.2: resolution: {integrity: sha512-gWD/+gSO3XBma8PHX1Dp86fM6EcntHFfa7n/BISwDFkZ19MfV/gK6HbO847fkD6I34/IcDM/z1PsFwoIpTeoow==} engines: {node: '>= 10'} cpu: [arm64] @@ -5079,7 +5122,7 @@ packages: requiresBuild: true optional: true - /@nrwl/nx-win32-arm64-msvc/15.8.5: + /@nrwl/nx-win32-arm64-msvc@15.8.5: resolution: {integrity: sha512-4AT1PHo5At8AXvgE5XlQbimE0THeSji6J3XZ1UTqq7n3L26QicNdnZcaHGyL1ukMtXRIwT/yed+xu1PFkXF4QA==} engines: {node: '>= 10'} cpu: [arm64] @@ -5087,7 +5130,7 @@ packages: requiresBuild: true optional: true - /@nrwl/nx-win32-x64-msvc/15.7.2: + /@nrwl/nx-win32-x64-msvc@15.7.2: resolution: {integrity: sha512-ARE4qGPgk+e+pSm0uPhHan5UCRtwNYc5ddVNS88NFrVoDTPm5MxYLGdvLnshWWio/Bx526FcwUMSCBWSW8HIFw==} engines: {node: '>= 10'} cpu: [x64] @@ -5095,7 +5138,7 @@ packages: requiresBuild: true optional: true - /@nrwl/nx-win32-x64-msvc/15.8.5: + /@nrwl/nx-win32-x64-msvc@15.8.5: resolution: {integrity: sha512-53vzsQErvN4OeF/qBgfPg6OZ3smX4V8Lza59bwql9aAjjlMe1Ff9Su0BgAqlhVfSiYGxAirfHljgA6aWFqpCHQ==} engines: {node: '>= 10'} cpu: [x64] @@ -5103,17 +5146,18 @@ packages: requiresBuild: true optional: true - /@nrwl/react/15.8.5_wi7kwhfbxlhncdveqfqfnunpki: + /@nrwl/react@15.8.5(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5): resolution: {integrity: sha512-D/veRYJ4dZ1JQtJ8GnZ2tkVNVuox4bbRAQm6MH+xor1Z8kcIq6SZtFp03T5IPgcVNXAJjjh1tMhnMcHe5hZkmg==} dependencies: - '@nrwl/devkit': 15.8.5_nx@15.7.2+typescript@4.9.5 - '@nrwl/js': 15.8.5_wi7kwhfbxlhncdveqfqfnunpki - '@nrwl/linter': 15.8.5_wi7kwhfbxlhncdveqfqfnunpki - '@nrwl/workspace': 15.8.5_xbutml5teg6536gsdu4z5mzgvm - '@phenomnomnominal/tsquery': 4.1.1_typescript@4.9.5 + '@nrwl/devkit': 15.8.5(nx@15.7.2)(typescript@4.9.5) + '@nrwl/js': 15.8.5(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5) + '@nrwl/linter': 15.8.5(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5) + '@nrwl/workspace': 15.8.5(eslint@8.15.0)(prettier@2.8.4)(typescript@4.9.5) + '@phenomnomnominal/tsquery': 4.1.1(typescript@4.9.5) chalk: 4.1.2 minimatch: 3.0.5 transitivePeerDependencies: + - '@babel/traverse' - '@swc-node/register' - '@swc/core' - debug @@ -5123,7 +5167,7 @@ packages: - supports-color - typescript - /@nrwl/tao/15.7.2: + /@nrwl/tao@15.7.2: resolution: {integrity: sha512-srx9heMIt/QIyuqfewiVYbRpFcD/2pHkTkrEEUKspPd25kzAL2adcAITQKVCHI7/VS2sPdDR67pVsGQPZFBMRQ==} hasBin: true dependencies: @@ -5133,7 +5177,7 @@ packages: - '@swc/core' - debug - /@nrwl/tao/15.8.5: + /@nrwl/tao@15.8.5: resolution: {integrity: sha512-pb/hUprOOv2vgvbevGz9hiu8LLOtK7KKuBe4JLSXrFxfHEQjMFsK/2aymnts0ZQrA83QlIG2Mr0tuSKj6/iWvg==} hasBin: true dependencies: @@ -5143,22 +5187,23 @@ packages: - '@swc/core' - debug - /@nrwl/vite/15.7.2_o7cnvsl7edw55qamxhtupdwecm: + /@nrwl/vite@15.7.2(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5)(vite@4.1.4)(vitest@0.25.8): resolution: {integrity: sha512-8vuXwQUosEnohVF1PTs/AilRyQC4ZxpWj2pzXZX0thynqsoSl/nar0JiQA9FUnYU2yAZCX5QWqb3pWVGftI5lQ==} peerDependencies: vite: ^4.0.1 vitest: ^0.25.8 dependencies: - '@nrwl/devkit': 15.7.2_nx@15.7.2+typescript@4.9.5 - '@nrwl/js': 15.7.2_wi7kwhfbxlhncdveqfqfnunpki - '@nrwl/workspace': 15.7.2_xbutml5teg6536gsdu4z5mzgvm - '@phenomnomnominal/tsquery': 4.1.1_typescript@4.9.5 + '@nrwl/devkit': 15.7.2(nx@15.7.2)(typescript@4.9.5) + '@nrwl/js': 15.7.2(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5) + '@nrwl/workspace': 15.7.2(eslint@8.15.0)(prettier@2.8.4)(typescript@4.9.5) + '@phenomnomnominal/tsquery': 4.1.1(typescript@4.9.5) '@swc/helpers': 0.4.14 dotenv: 10.0.0 enquirer: 2.3.6 - vite: 4.1.4_@types+node@18.14.2 - vitest: 0.25.8_eetf2xjpdhuqcs2dx4ndfgw7iq + vite: 4.1.4(@types/node@18.14.2)(less@4.1.3)(stylus@0.55.0) + vitest: 0.25.8(@vitest/ui@0.25.8)(jsdom@20.0.3)(less@4.1.3)(stylus@0.55.0) transitivePeerDependencies: + - '@babel/traverse' - '@swc-node/register' - '@swc/core' - debug @@ -5169,51 +5214,52 @@ packages: - typescript dev: true - /@nrwl/webpack/15.8.5_g7qgszdtzzluyef62cj5d24dyq: + /@nrwl/webpack@15.8.5(@babel/core@7.21.0)(@types/node@18.14.2)(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5): resolution: {integrity: sha512-oN0ZCK6Bak8w5YOpyBxQRNxGwNbq31XneRvKPb9gSs71eJZtqLr5wwANfOOHe4m43CgDayp+nVOCQMNhsdxNFg==} dependencies: - '@nrwl/devkit': 15.8.5_nx@15.7.2+typescript@4.9.5 - '@nrwl/js': 15.8.5_wi7kwhfbxlhncdveqfqfnunpki - '@nrwl/workspace': 15.8.5_xbutml5teg6536gsdu4z5mzgvm - autoprefixer: 10.4.13_postcss@8.4.21 - babel-loader: 9.1.2_qoaxtqicpzj5p3ubthw53xafqm + '@nrwl/devkit': 15.8.5(nx@15.7.2)(typescript@4.9.5) + '@nrwl/js': 15.8.5(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5) + '@nrwl/workspace': 15.8.5(eslint@8.15.0)(prettier@2.8.4)(typescript@4.9.5) + autoprefixer: 10.4.13(postcss@8.4.21) + babel-loader: 9.1.2(@babel/core@7.21.0)(webpack@5.75.0) chalk: 4.1.2 chokidar: 3.5.3 - copy-webpack-plugin: 10.2.4_webpack@5.75.0 - css-loader: 6.7.3_webpack@5.75.0 - css-minimizer-webpack-plugin: 3.4.1_webpack@5.75.0 + copy-webpack-plugin: 10.2.4(webpack@5.75.0) + css-loader: 6.7.3(webpack@5.75.0) + css-minimizer-webpack-plugin: 3.4.1(webpack@5.75.0) dotenv: 10.0.0 - file-loader: 6.2.0_webpack@5.75.0 - fork-ts-checker-webpack-plugin: 7.2.13_hhrrucqyg4eysmfpujvov2ym5u + file-loader: 6.2.0(webpack@5.75.0) + fork-ts-checker-webpack-plugin: 7.2.13(typescript@4.9.5)(webpack@5.75.0) ignore: 5.2.4 less: 4.1.3 - less-loader: 11.1.0_less@4.1.3+webpack@5.75.0 - license-webpack-plugin: 4.0.2_webpack@5.75.0 + less-loader: 11.1.0(less@4.1.3)(webpack@5.75.0) + license-webpack-plugin: 4.0.2(webpack@5.75.0) loader-utils: 2.0.4 - mini-css-extract-plugin: 2.4.7_webpack@5.75.0 + mini-css-extract-plugin: 2.4.7(webpack@5.75.0) parse5: 4.0.0 postcss: 8.4.21 - postcss-import: 14.1.0_postcss@8.4.21 - postcss-loader: 6.2.1_6jdsrmfenkuhhw3gx4zvjlznce + postcss-import: 14.1.0(postcss@8.4.21) + postcss-loader: 6.2.1(postcss@8.4.21)(webpack@5.75.0) rxjs: 6.6.7 sass: 1.58.3 - sass-loader: 12.6.0_sass@1.58.3+webpack@5.75.0 - source-map-loader: 3.0.2_webpack@5.75.0 - style-loader: 3.3.1_webpack@5.75.0 + sass-loader: 12.6.0(sass@1.58.3)(webpack@5.75.0) + source-map-loader: 3.0.2(webpack@5.75.0) + style-loader: 3.3.1(webpack@5.75.0) stylus: 0.55.0 - stylus-loader: 7.1.0_irl2hmhzopg6urv44vymn74p4e - terser-webpack-plugin: 5.3.6_webpack@5.75.0 - ts-loader: 9.4.2_hhrrucqyg4eysmfpujvov2ym5u - ts-node: 10.9.1_ellgaeuoqnti3hful2ny2iugba + stylus-loader: 7.1.0(stylus@0.55.0)(webpack@5.75.0) + terser-webpack-plugin: 5.3.6(webpack@5.75.0) + ts-loader: 9.4.2(typescript@4.9.5)(webpack@5.75.0) + ts-node: 10.9.1(@types/node@18.14.2)(typescript@4.9.5) tsconfig-paths: 4.1.2 tsconfig-paths-webpack-plugin: 4.0.0 tslib: 2.5.0 webpack: 5.75.0 - webpack-dev-server: 4.11.1_webpack@5.75.0 + webpack-dev-server: 4.11.1(webpack@5.75.0) webpack-node-externals: 3.0.0 - webpack-subresource-integrity: 5.1.0_webpack@5.75.0 + webpack-subresource-integrity: 5.1.0(webpack@5.75.0) transitivePeerDependencies: - '@babel/core' + - '@babel/traverse' - '@parcel/css' - '@swc-node/register' - '@swc/core' @@ -5239,7 +5285,7 @@ packages: - webpack-cli dev: false - /@nrwl/workspace/15.7.2_xbutml5teg6536gsdu4z5mzgvm: + /@nrwl/workspace@15.7.2(eslint@8.15.0)(prettier@2.8.4)(typescript@4.9.5): resolution: {integrity: sha512-b1XwQs+6qFFGBhkIQHgxz6nUmVbzNgjeYusBVPcZjR3rDKooEjc//72P4H34FbpCbf9GPfCj7s2ZtlDXn9+dFw==} peerDependencies: prettier: ^2.6.2 @@ -5247,8 +5293,8 @@ packages: prettier: optional: true dependencies: - '@nrwl/devkit': 15.7.2_nx@15.7.2+typescript@4.9.5 - '@nrwl/linter': 15.7.2_uf4p4dfxgfahjoc2ghcxcg6qle + '@nrwl/devkit': 15.7.2(nx@15.7.2)(typescript@4.9.5) + '@nrwl/linter': 15.7.2(eslint@8.15.0)(nx@15.7.2)(typescript@4.9.5) '@parcel/watcher': 2.0.4 chalk: 4.1.2 chokidar: 3.5.3 @@ -5278,7 +5324,7 @@ packages: - typescript dev: true - /@nrwl/workspace/15.8.5_xbutml5teg6536gsdu4z5mzgvm: + /@nrwl/workspace@15.8.5(eslint@8.15.0)(prettier@2.8.4)(typescript@4.9.5): resolution: {integrity: sha512-+BGJDbATbwpk+3FkdBzdIziN/XKku55SEGg3uyH+JnK0sjmHvvS7mvPiYLRy91tOyF4QXnnWL6PuT+Z9KK8POQ==} peerDependencies: prettier: ^2.6.2 @@ -5286,8 +5332,8 @@ packages: prettier: optional: true dependencies: - '@nrwl/devkit': 15.8.5_nx@15.8.5+typescript@4.9.5 - '@nrwl/linter': 15.8.5_fn6s46e5fn3ozammbqo5vj4bdu + '@nrwl/devkit': 15.8.5(nx@15.8.5)(typescript@4.9.5) + '@nrwl/linter': 15.8.5(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5) '@parcel/watcher': 2.0.4 chalk: 4.1.2 chokidar: 3.5.3 @@ -5310,6 +5356,7 @@ packages: yargs: 17.7.1 yargs-parser: 21.1.1 transitivePeerDependencies: + - '@babel/traverse' - '@swc-node/register' - '@swc/core' - debug @@ -5317,14 +5364,14 @@ packages: - supports-color - typescript - /@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/4.2.0: + /@octokit/core@4.2.0: resolution: {integrity: sha512-AgvDRUg3COpR82P7PBdGZF/NNqGmtMq2NiPqeSsDIeCfYFOZ9gddqWNQHnFdEUf+YwOj4aZYmJnlPp7OXmDIDg==} engines: {node: '>= 14'} dependencies: @@ -5339,7 +5386,7 @@ packages: - encoding dev: true - /@octokit/endpoint/7.0.5: + /@octokit/endpoint@7.0.5: resolution: {integrity: sha512-LG4o4HMY1Xoaec87IqQ41TQ+glvIeTKqfjkCEmt5AIwDZJwQeVZFIEYXrYY6yLwK+pAScb9Gj4q+Nz2qSw1roA==} engines: {node: '>= 14'} dependencies: @@ -5348,7 +5395,7 @@ packages: universal-user-agent: 6.0.0 dev: true - /@octokit/graphql/5.0.5: + /@octokit/graphql@5.0.5: resolution: {integrity: sha512-Qwfvh3xdqKtIznjX9lz2D458r7dJPP8l6r4GQkIdWQouZwHQK0mVT88uwiU2bdTU2OtT1uOlKpRciUWldpG0yQ==} engines: {node: '>= 14'} dependencies: @@ -5359,11 +5406,11 @@ packages: - encoding dev: true - /@octokit/openapi-types/16.0.0: + /@octokit/openapi-types@16.0.0: resolution: {integrity: sha512-JbFWOqTJVLHZSUUoF4FzAZKYtqdxWu9Z5m2QQnOyEa04fOFljvyh7D3GYKbfuaSWisqehImiVIMG4eyJeP5VEA==} 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: @@ -5373,7 +5420,7 @@ packages: '@octokit/types': 9.0.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' @@ -5381,7 +5428,7 @@ packages: '@octokit/core': 4.2.0 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: @@ -5392,7 +5439,7 @@ packages: deprecation: 2.3.1 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: @@ -5401,7 +5448,7 @@ packages: once: 1.4.0 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: @@ -5415,25 +5462,25 @@ packages: - 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/9.0.0: + /@octokit/types@9.0.0: resolution: {integrity: sha512-LUewfj94xCMH2rbD5YJ+6AQ4AVjFYTgpp6rboWM5T7N3IsIF65SBEOVcYMGAEzO/kKNiNaW4LoWtoThOhH06gw==} dependencies: '@octokit/openapi-types': 16.0.0 dev: true - /@osmonauts/lcd/0.8.0: + /@osmonauts/lcd@0.8.0: resolution: {integrity: sha512-k7m2gAVnXc0H4m/eTq4z/8A6hFrr3MPS9wnLV4Xu9/K/WYltCnp2PpiObZm+feZUPK/svES6hxIQeO1bODLx8g==} dependencies: '@babel/runtime': 7.21.0 @@ -5442,7 +5489,7 @@ packages: - debug 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 @@ -5450,7 +5497,7 @@ packages: node-addon-api: 3.2.1 node-gyp-build: 4.6.0 - /@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 @@ -5458,7 +5505,7 @@ packages: esquery: 1.4.2 typescript: 4.9.5 - /@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: @@ -5470,19 +5517,19 @@ packages: tslib: 2.5.0 dev: true - /@pnpm/config.env-replace/1.0.0: + /@pnpm/config.env-replace@1.0.0: resolution: {integrity: sha512-ZVPVDi1E8oeXlYqkGRtX0CkzLTwE2zt62bjWaWKaAvI8NZqHzlMvGeSNDpW+JB3+aKanYb4UETJOF1/CxGPemA==} engines: {node: '>=12.22.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.0: + /@pnpm/npm-conf@2.1.0: resolution: {integrity: sha512-Oe6ntvgsMTE3hDIqy6sajqHF+MnzJrOF06qC2QSiUEybLL7cp6tjoKUa32gpd9+KPVl4QyMs3E3nsXrx/Vdnlw==} engines: {node: '>=12'} dependencies: @@ -5491,53 +5538,53 @@ packages: config-chain: 1.1.13 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.6: + /@popperjs/core@2.11.6: resolution: {integrity: sha512-50/17A98tWUfQ176raKiOGXuYpLyyVMkxxG6oylzL3BPOlA6ADGdK7EYunSa4I064xerltq9TGXs8HmOk5E+vw==} dev: false - /@protobufjs/aspromise/1.1.2: + /@protobufjs/aspromise@1.1.2: resolution: {integrity: sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==} - /@protobufjs/base64/1.1.2: + /@protobufjs/base64@1.1.2: resolution: {integrity: sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==} - /@protobufjs/codegen/2.0.4: + /@protobufjs/codegen@2.0.4: resolution: {integrity: sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==} - /@protobufjs/eventemitter/1.1.0: + /@protobufjs/eventemitter@1.1.0: resolution: {integrity: sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==} - /@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 - /@protobufjs/float/1.0.2: + /@protobufjs/float@1.0.2: resolution: {integrity: sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==} - /@protobufjs/inquire/1.1.0: + /@protobufjs/inquire@1.1.0: resolution: {integrity: sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==} - /@protobufjs/path/1.1.2: + /@protobufjs/path@1.1.2: resolution: {integrity: sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==} - /@protobufjs/pool/1.1.0: + /@protobufjs/pool@1.1.0: resolution: {integrity: sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==} - /@protobufjs/utf8/1.1.0: + /@protobufjs/utf8@1.1.0: resolution: {integrity: sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==} - /@remix-run/router/1.3.2: + /@remix-run/router@1.3.2: resolution: {integrity: sha512-t54ONhl/h75X94SWsHGQ4G/ZrCEguKSRQr7DrjTciJXW0YU1QhlwYeycvK5JgkzlxmvrK7wq1NB/PLtHxoiDcA==} engines: {node: '>=14'} dev: false - /@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: @@ -5545,11 +5592,11 @@ packages: picomatch: 2.3.1 dev: true - /@rushstack/eslint-patch/1.2.0: + /@rushstack/eslint-patch@1.2.0: resolution: {integrity: sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==} dev: true - /@semantic-release/changelog/6.0.2_semantic-release@20.1.0: + /@semantic-release/changelog@6.0.2(semantic-release@20.1.0): resolution: {integrity: sha512-jHqfTkoPbDEOAgAP18mGP53IxeMwxTISN+GwTRy9uLu58UjARoZU8ScCgWGeO2WPkEsm57H8AkyY02W2ntIlIw==} engines: {node: '>=14.17'} peerDependencies: @@ -5562,7 +5609,7 @@ packages: semantic-release: 20.1.0 dev: true - /@semantic-release/commit-analyzer/9.0.2_semantic-release@20.1.0: + /@semantic-release/commit-analyzer@9.0.2(semantic-release@20.1.0): resolution: {integrity: sha512-E+dr6L+xIHZkX4zNMe6Rnwg4YQrWNXK+rNsvwOPpdFppvZO1olE2fIgWhv89TkQErygevbjsZFSIxp+u6w2e5g==} engines: {node: '>=14.17'} peerDependencies: @@ -5571,7 +5618,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 @@ -5580,12 +5627,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/exec/6.0.3_semantic-release@20.1.0: + /@semantic-release/exec@6.0.3(semantic-release@20.1.0): resolution: {integrity: sha512-bxAq8vLOw76aV89vxxICecEa8jfaWwYITw6X74zzlO0mc/Bgieqx9kBRz9z96pHectiTAtsCwsQcUyLYWnp3VQ==} engines: {node: '>=14.17'} peerDependencies: @@ -5593,7 +5640,7 @@ packages: dependencies: '@semantic-release/error': 3.0.0 aggregate-error: 3.1.0 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) execa: 5.1.1 lodash: 4.17.21 parse-json: 5.2.0 @@ -5602,7 +5649,7 @@ packages: - supports-color dev: true - /@semantic-release/git/10.0.1_semantic-release@20.1.0: + /@semantic-release/git@10.0.1(semantic-release@20.1.0): resolution: {integrity: sha512-eWrx5KguUcU2wUPaO6sfvZI0wPafUKAMNC18aXY4EnNcrZL86dEmpNVnC9uMpGZkmZJ9EfCVJBQx4pV4EMGT1w==} engines: {node: '>=14.17'} peerDependencies: @@ -5610,7 +5657,7 @@ packages: dependencies: '@semantic-release/error': 3.0.0 aggregate-error: 3.1.0 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) dir-glob: 3.0.1 execa: 5.1.1 lodash: 4.17.21 @@ -5621,7 +5668,7 @@ packages: - supports-color dev: true - /@semantic-release/github/8.0.7_semantic-release@20.1.0: + /@semantic-release/github@8.0.7(semantic-release@20.1.0): resolution: {integrity: sha512-VtgicRIKGvmTHwm//iqTh/5NGQwsncOMR5vQK9pMT92Aem7dv37JFKKRuulUsAnUOIlO4G8wH3gPiBAA0iW0ww==} engines: {node: '>=14.17'} peerDependencies: @@ -5631,7 +5678,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.0 globby: 11.1.0 @@ -5649,7 +5696,7 @@ packages: - supports-color dev: true - /@semantic-release/npm/9.0.2_semantic-release@20.1.0: + /@semantic-release/npm@9.0.2(semantic-release@20.1.0): resolution: {integrity: sha512-zgsynF6McdzxPnFet+a4iO9HpAlARXOM5adz7VGVCvj0ne8wtL2ZOQoDV2wZPDmdEotDIbVeJjafhelZjs9j6g==} engines: {node: '>=16 || ^14.17'} peerDependencies: @@ -5671,7 +5718,7 @@ packages: tempy: 1.0.1 dev: true - /@semantic-release/release-notes-generator/10.0.3_semantic-release@20.1.0: + /@semantic-release/release-notes-generator@10.0.3(semantic-release@20.1.0): resolution: {integrity: sha512-k4x4VhIKneOWoBGHkx0qZogNjCldLPRiAjnIpMnlUh6PtaWXp/T+C9U7/TaNDDtgDa5HMbHl4WlREdxHio6/3w==} engines: {node: '>=14.17'} peerDependencies: @@ -5681,7 +5728,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 @@ -5692,57 +5739,50 @@ packages: - supports-color 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==} dev: true - /@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/9.1.2: + /@sinonjs/fake-timers@9.1.2: resolution: {integrity: sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw==} dependencies: '@sinonjs/commons': 1.8.6 - /@stablelib/aead/1.0.1: + /@stablelib/aead@1.0.1: resolution: {integrity: sha512-q39ik6sxGHewqtO0nP4BuSe3db5G1fEJE8ukvngS2gLkBXyy6E7pLubhbYgnkDFv6V8cWaxcE4Xn0t6LWcJkyg==} dev: false - /@stablelib/binary/1.0.1: + /@stablelib/binary@1.0.1: resolution: {integrity: sha512-ClJWvmL6UBM/wjkvv/7m5VP3GMr9t0osr4yVgLZsLCOz4hGN9gIAFEqnJ0TsSMAN+n840nf2cHZnA5/KFqHC7Q==} dependencies: '@stablelib/int': 1.0.1 dev: false - /@stablelib/bytes/1.0.1: + /@stablelib/bytes@1.0.1: resolution: {integrity: sha512-Kre4Y4kdwuqL8BR2E9hV/R5sOrUj6NanZaZis0V6lX5yzqC3hBuVSDXUIBqQv/sCpmuWRiHLwqiT1pqqjuBXoQ==} dev: false - /@stablelib/chacha/1.0.1: - resolution: {integrity: sha512-Pmlrswzr0pBzDofdFuVe1q7KdsHKhhU24e8gkEwnTGOmlC7PADzLVxGdn2PoNVBBabdg0l/IfLKg6sHAbTQugg==} - dependencies: - '@stablelib/binary': 1.0.1 - '@stablelib/wipe': 1.0.1 - dev: false - - /@stablelib/chacha20poly1305/1.0.1: + /@stablelib/chacha20poly1305@1.0.1: resolution: {integrity: sha512-MmViqnqHd1ymwjOQfghRKw2R/jMIGT3wySN7cthjXCBdO+qErNPUBnRzqNpnvIwg7JBCg3LdeCZZO4de/yEhVA==} dependencies: '@stablelib/aead': 1.0.1 @@ -5753,11 +5793,18 @@ packages: '@stablelib/wipe': 1.0.1 dev: false - /@stablelib/constant-time/1.0.1: + /@stablelib/chacha@1.0.1: + resolution: {integrity: sha512-Pmlrswzr0pBzDofdFuVe1q7KdsHKhhU24e8gkEwnTGOmlC7PADzLVxGdn2PoNVBBabdg0l/IfLKg6sHAbTQugg==} + dependencies: + '@stablelib/binary': 1.0.1 + '@stablelib/wipe': 1.0.1 + dev: false + + /@stablelib/constant-time@1.0.1: resolution: {integrity: sha512-tNOs3uD0vSJcK6z1fvef4Y+buN7DXhzHDPqRLSXUel1UfqMB1PWNsnnAezrKfEwTLpN0cGH2p9NNjs6IqeD0eg==} dev: false - /@stablelib/ed25519/1.0.3: + /@stablelib/ed25519@1.0.3: resolution: {integrity: sha512-puIMWaX9QlRsbhxfDc5i+mNPMY+0TmQEskunY1rZEBPi1acBCVQAhnsk/1Hk50DGPtVsZtAWQg4NHGlVaO9Hqg==} dependencies: '@stablelib/random': 1.0.2 @@ -5765,11 +5812,11 @@ packages: '@stablelib/wipe': 1.0.1 dev: false - /@stablelib/hash/1.0.1: + /@stablelib/hash@1.0.1: resolution: {integrity: sha512-eTPJc/stDkdtOcrNMZ6mcMK1e6yBbqRBaNW55XA1jU8w/7QdnCF0CmMmOD1m7VSkBR44PWrMHU2l6r8YEQHMgg==} dev: false - /@stablelib/hkdf/1.0.1: + /@stablelib/hkdf@1.0.1: resolution: {integrity: sha512-SBEHYE16ZXlHuaW5RcGk533YlBj4grMeg5TooN80W3NpcHRtLZLLXvKyX0qcRFxf+BGDobJLnwkvgEwHIDBR6g==} dependencies: '@stablelib/hash': 1.0.1 @@ -5777,7 +5824,7 @@ packages: '@stablelib/wipe': 1.0.1 dev: false - /@stablelib/hmac/1.0.1: + /@stablelib/hmac@1.0.1: resolution: {integrity: sha512-V2APD9NSnhVpV/QMYgCVMIYKiYG6LSqw1S65wxVoirhU/51ACio6D4yDVSwMzuTJXWZoVHbDdINioBwKy5kVmA==} dependencies: '@stablelib/constant-time': 1.0.1 @@ -5785,31 +5832,31 @@ packages: '@stablelib/wipe': 1.0.1 dev: false - /@stablelib/int/1.0.1: + /@stablelib/int@1.0.1: resolution: {integrity: sha512-byr69X/sDtDiIjIV6m4roLVWnNNlRGzsvxw+agj8CIEazqWGOQp2dTYgQhtyVXV9wpO6WyXRQUzLV/JRNumT2w==} dev: false - /@stablelib/keyagreement/1.0.1: + /@stablelib/keyagreement@1.0.1: resolution: {integrity: sha512-VKL6xBwgJnI6l1jKrBAfn265cspaWBPAPEc62VBQrWHLqVgNRE09gQ/AnOEyKUWrrqfD+xSQ3u42gJjLDdMDQg==} dependencies: '@stablelib/bytes': 1.0.1 dev: false - /@stablelib/poly1305/1.0.1: + /@stablelib/poly1305@1.0.1: resolution: {integrity: sha512-1HlG3oTSuQDOhSnLwJRKeTRSAdFNVB/1djy2ZbS35rBSJ/PFqx9cf9qatinWghC2UbfOYD8AcrtbUQl8WoxabA==} dependencies: '@stablelib/constant-time': 1.0.1 '@stablelib/wipe': 1.0.1 dev: false - /@stablelib/random/1.0.2: + /@stablelib/random@1.0.2: resolution: {integrity: sha512-rIsE83Xpb7clHPVRlBj8qNe5L8ISQOzjghYQm/dZ7VaM2KHYwMW5adjQjrzTZCchFnNCNhkwtnOBa9HTMJCI8w==} dependencies: '@stablelib/binary': 1.0.1 '@stablelib/wipe': 1.0.1 dev: false - /@stablelib/sha256/1.0.1: + /@stablelib/sha256@1.0.1: resolution: {integrity: sha512-GIIH3e6KH+91FqGV42Kcj71Uefd/QEe7Dy42sBTeqppXV95ggCcxLTk39bEr+lZfJmp+ghsR07J++ORkRELsBQ==} dependencies: '@stablelib/binary': 1.0.1 @@ -5817,7 +5864,7 @@ packages: '@stablelib/wipe': 1.0.1 dev: false - /@stablelib/sha512/1.0.1: + /@stablelib/sha512@1.0.1: resolution: {integrity: sha512-13gl/iawHV9zvDKciLo1fQ8Bgn2Pvf7OV6amaRVKiq3pjQ3UmEpXxWiAfV8tYjUpeZroBxtyrwtdooQT/i3hzw==} dependencies: '@stablelib/binary': 1.0.1 @@ -5825,11 +5872,11 @@ packages: '@stablelib/wipe': 1.0.1 dev: false - /@stablelib/wipe/1.0.1: + /@stablelib/wipe@1.0.1: resolution: {integrity: sha512-WfqfX/eXGiAd3RJe4VU2snh/ZPwtSjLG4ynQ/vYzvghTh7dHFcI1wl+nrkWG6lGhukOxOsUHfv8dUXr58D0ayg==} dev: false - /@stablelib/x25519/1.0.3: + /@stablelib/x25519@1.0.3: resolution: {integrity: sha512-KnTbKmUhPhHavzobclVJQG5kuivH+qDLpe84iRqX3CLrKp881cF160JvXJ+hjn1aMyCwYOKeIZefIH/P5cJoRw==} dependencies: '@stablelib/keyagreement': 1.0.1 @@ -5837,7 +5884,7 @@ packages: '@stablelib/wipe': 1.0.1 dev: false - /@svgr/babel-plugin-add-jsx-attribute/6.5.1_@babel+core@7.21.0: + /@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.21.0): resolution: {integrity: sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ==} engines: {node: '>=10'} peerDependencies: @@ -5846,7 +5893,7 @@ packages: '@babel/core': 7.21.0 dev: false - /@svgr/babel-plugin-remove-jsx-attribute/6.5.0_@babel+core@7.21.0: + /@svgr/babel-plugin-remove-jsx-attribute@6.5.0(@babel/core@7.21.0): resolution: {integrity: sha512-8zYdkym7qNyfXpWvu4yq46k41pyNM9SOstoWhKlm+IfdCE1DdnRKeMUPsWIEO/DEkaWxJ8T9esNdG3QwQ93jBA==} engines: {node: '>=10'} peerDependencies: @@ -5855,7 +5902,7 @@ packages: '@babel/core': 7.21.0 dev: false - /@svgr/babel-plugin-remove-jsx-empty-expression/6.5.0_@babel+core@7.21.0: + /@svgr/babel-plugin-remove-jsx-empty-expression@6.5.0(@babel/core@7.21.0): resolution: {integrity: sha512-NFdxMq3xA42Kb1UbzCVxplUc0iqSyM9X8kopImvFnB+uSDdzIHOdbs1op8ofAvVRtbg4oZiyRl3fTYeKcOe9Iw==} engines: {node: '>=10'} peerDependencies: @@ -5864,7 +5911,7 @@ packages: '@babel/core': 7.21.0 dev: false - /@svgr/babel-plugin-replace-jsx-attribute-value/6.5.1_@babel+core@7.21.0: + /@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.21.0): resolution: {integrity: sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg==} engines: {node: '>=10'} peerDependencies: @@ -5873,7 +5920,7 @@ packages: '@babel/core': 7.21.0 dev: false - /@svgr/babel-plugin-svg-dynamic-title/6.5.1_@babel+core@7.21.0: + /@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.21.0): resolution: {integrity: sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw==} engines: {node: '>=10'} peerDependencies: @@ -5882,7 +5929,7 @@ packages: '@babel/core': 7.21.0 dev: false - /@svgr/babel-plugin-svg-em-dimensions/6.5.1_@babel+core@7.21.0: + /@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.21.0): resolution: {integrity: sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA==} engines: {node: '>=10'} peerDependencies: @@ -5891,7 +5938,7 @@ packages: '@babel/core': 7.21.0 dev: false - /@svgr/babel-plugin-transform-react-native-svg/6.5.1_@babel+core@7.21.0: + /@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.21.0): resolution: {integrity: sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg==} engines: {node: '>=10'} peerDependencies: @@ -5900,7 +5947,7 @@ packages: '@babel/core': 7.21.0 dev: false - /@svgr/babel-plugin-transform-svg-component/6.5.1_@babel+core@7.21.0: + /@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.21.0): resolution: {integrity: sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ==} engines: {node: '>=12'} peerDependencies: @@ -5909,37 +5956,37 @@ packages: '@babel/core': 7.21.0 dev: false - /@svgr/babel-preset/6.5.1_@babel+core@7.21.0: + /@svgr/babel-preset@6.5.1(@babel/core@7.21.0): resolution: {integrity: sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw==} engines: {node: '>=10'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.0 - '@svgr/babel-plugin-add-jsx-attribute': 6.5.1_@babel+core@7.21.0 - '@svgr/babel-plugin-remove-jsx-attribute': 6.5.0_@babel+core@7.21.0 - '@svgr/babel-plugin-remove-jsx-empty-expression': 6.5.0_@babel+core@7.21.0 - '@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1_@babel+core@7.21.0 - '@svgr/babel-plugin-svg-dynamic-title': 6.5.1_@babel+core@7.21.0 - '@svgr/babel-plugin-svg-em-dimensions': 6.5.1_@babel+core@7.21.0 - '@svgr/babel-plugin-transform-react-native-svg': 6.5.1_@babel+core@7.21.0 - '@svgr/babel-plugin-transform-svg-component': 6.5.1_@babel+core@7.21.0 + '@svgr/babel-plugin-add-jsx-attribute': 6.5.1(@babel/core@7.21.0) + '@svgr/babel-plugin-remove-jsx-attribute': 6.5.0(@babel/core@7.21.0) + '@svgr/babel-plugin-remove-jsx-empty-expression': 6.5.0(@babel/core@7.21.0) + '@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1(@babel/core@7.21.0) + '@svgr/babel-plugin-svg-dynamic-title': 6.5.1(@babel/core@7.21.0) + '@svgr/babel-plugin-svg-em-dimensions': 6.5.1(@babel/core@7.21.0) + '@svgr/babel-plugin-transform-react-native-svg': 6.5.1(@babel/core@7.21.0) + '@svgr/babel-plugin-transform-svg-component': 6.5.1(@babel/core@7.21.0) dev: false - /@svgr/core/6.5.1: + /@svgr/core@6.5.1: resolution: {integrity: sha512-/xdLSWxK5QkqG524ONSjvg3V/FkNyCv538OIBdQqPNaAta3AsXj/Bd2FbvR87yMbXO2hFSWiAe/Q6IkVPDw+mw==} engines: {node: '>=10'} dependencies: '@babel/core': 7.21.0 - '@svgr/babel-preset': 6.5.1_@babel+core@7.21.0 - '@svgr/plugin-jsx': 6.5.1_@svgr+core@6.5.1 + '@svgr/babel-preset': 6.5.1(@babel/core@7.21.0) + '@svgr/plugin-jsx': 6.5.1(@svgr/core@6.5.1) camelcase: 6.3.0 cosmiconfig: 7.1.0 transitivePeerDependencies: - supports-color dev: false - /@svgr/hast-util-to-babel-ast/6.5.1: + /@svgr/hast-util-to-babel-ast@6.5.1: resolution: {integrity: sha512-1hnUxxjd83EAxbL4a0JDJoD3Dao3hmjvyvyEV8PzWmLK3B9m9NPlW7GKjFyoWE8nM7HnXzPcmmSyOW8yOddSXw==} engines: {node: '>=10'} dependencies: @@ -5947,14 +5994,14 @@ packages: entities: 4.4.0 dev: false - /@svgr/plugin-jsx/6.5.1_@svgr+core@6.5.1: + /@svgr/plugin-jsx@6.5.1(@svgr/core@6.5.1): resolution: {integrity: sha512-+UdQxI3jgtSjCykNSlEMuy1jSRQlGC7pqBCPvkG/2dATdWo082zHTTK3uhnAju2/6XpE6B5mZ3z4Z8Ns01S8Gw==} engines: {node: '>=10'} peerDependencies: '@svgr/core': ^6.0.0 dependencies: '@babel/core': 7.21.0 - '@svgr/babel-preset': 6.5.1_@babel+core@7.21.0 + '@svgr/babel-preset': 6.5.1(@babel/core@7.21.0) '@svgr/core': 6.5.1 '@svgr/hast-util-to-babel-ast': 6.5.1 svg-parser: 2.0.4 @@ -5962,7 +6009,7 @@ packages: - supports-color dev: false - /@svgr/plugin-svgo/6.5.1_@svgr+core@6.5.1: + /@svgr/plugin-svgo@6.5.1(@svgr/core@6.5.1): resolution: {integrity: sha512-omvZKf8ixP9z6GWgwbtmP9qQMPX4ODXi+wzbVZgomNFsUIlHA1sf4fThdwTWSsZGgvGAG6yE+b/F5gWUkcZ/iQ==} engines: {node: '>=10'} peerDependencies: @@ -5974,28 +6021,28 @@ packages: svgo: 2.8.0 dev: false - /@svgr/webpack/6.5.1: + /@svgr/webpack@6.5.1: resolution: {integrity: sha512-cQ/AsnBkXPkEK8cLbv4Dm7JGXq2XrumKnL1dRpJD9rIO2fTIlJI9a1uCciYG1F2aUsox/hJQyNGbt3soDxSRkA==} engines: {node: '>=10'} dependencies: '@babel/core': 7.21.0 - '@babel/plugin-transform-react-constant-elements': 7.20.2_@babel+core@7.21.0 - '@babel/preset-env': 7.20.2_@babel+core@7.21.0 - '@babel/preset-react': 7.18.6_@babel+core@7.21.0 - '@babel/preset-typescript': 7.21.0_@babel+core@7.21.0 + '@babel/plugin-transform-react-constant-elements': 7.20.2(@babel/core@7.21.0) + '@babel/preset-env': 7.20.2(@babel/core@7.21.0) + '@babel/preset-react': 7.18.6(@babel/core@7.21.0) + '@babel/preset-typescript': 7.21.0(@babel/core@7.21.0) '@svgr/core': 6.5.1 - '@svgr/plugin-jsx': 6.5.1_@svgr+core@6.5.1 - '@svgr/plugin-svgo': 6.5.1_@svgr+core@6.5.1 + '@svgr/plugin-jsx': 6.5.1(@svgr/core@6.5.1) + '@svgr/plugin-svgo': 6.5.1(@svgr/core@6.5.1) transitivePeerDependencies: - supports-color dev: false - /@swc/helpers/0.4.14: + /@swc/helpers@0.4.14: resolution: {integrity: sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==} dependencies: tslib: 2.5.0 - /@testing-library/dom/9.0.0: + /@testing-library/dom@9.0.0: resolution: {integrity: sha512-+/TLgKNFsYUshOY/zXsQOk+PlFQK+eyJ9T13IDVNJEi+M+Un7xlJK+FZKkbGSnf0+7E1G6PlDhkSYQ/GFiruBQ==} engines: {node: '>=14'} dependencies: @@ -6009,7 +6056,7 @@ packages: pretty-format: 27.5.1 dev: true - /@testing-library/react/14.0.0_biqbaboplfbrettd7655fr4n2y: + /@testing-library/react@14.0.0(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-S04gSNJbYE30TlIMLTzv6QCTzt9AqIF5y6s6SzVFILNcNvbV/jU96GeiTPillGQo+Ny64M/5PV7klNYYgv5Dfg==} engines: {node: '>=14'} peerDependencies: @@ -6020,24 +6067,24 @@ packages: '@testing-library/dom': 9.0.0 '@types/react-dom': 18.0.11 react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 + react-dom: 18.2.0(react@18.2.0) dev: true - /@theunderscorer/nx-semantic-release/2.0.1_nx@15.7.2+typescript@4.9.5: + /@theunderscorer/nx-semantic-release@2.0.1(nx@15.7.2)(typescript@4.9.5): resolution: {integrity: sha512-zvy9ISClJ02W+bwQFCh8jOykPFN325Jf4kUpPJpbbLL0m6ns1urdPmA/wsL/etlJh5JeEl0UXcJf2fTvOOsCxw==} engines: {node: '>=16.0.0'} dependencies: - '@nrwl/devkit': 15.7.2_nx@15.7.2+typescript@4.9.5 - '@semantic-release/changelog': 6.0.2_semantic-release@20.1.0 - '@semantic-release/exec': 6.0.3_semantic-release@20.1.0 - '@semantic-release/git': 10.0.1_semantic-release@20.1.0 - '@semantic-release/github': 8.0.7_semantic-release@20.1.0 - '@semantic-release/npm': 9.0.2_semantic-release@20.1.0 + '@nrwl/devkit': 15.7.2(nx@15.7.2)(typescript@4.9.5) + '@semantic-release/changelog': 6.0.2(semantic-release@20.1.0) + '@semantic-release/exec': 6.0.3(semantic-release@20.1.0) + '@semantic-release/git': 10.0.1(semantic-release@20.1.0) + '@semantic-release/github': 8.0.7(semantic-release@20.1.0) + '@semantic-release/npm': 9.0.2(semantic-release@20.1.0) cosmiconfig: 7.1.0 fs-extra: 10.1.0 remeda: 0.0.32 semantic-release: 20.1.0 - semantic-release-plugin-decorators: 3.0.1_semantic-release@20.1.0 + semantic-release-plugin-decorators: 3.0.1(semantic-release@20.1.0) transitivePeerDependencies: - encoding - nx @@ -6045,33 +6092,33 @@ packages: - typescript dev: true - /@tootallnate/once/2.0.0: + /@tootallnate/once@2.0.0: resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==} engines: {node: '>= 10'} dev: true - /@trysound/sax/0.2.0: + /@trysound/sax@0.2.0: resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} engines: {node: '>=10.13.0'} dev: false - /@tsconfig/node10/1.0.9: + /@tsconfig/node10@1.0.9: resolution: {integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==} - /@tsconfig/node12/1.0.11: + /@tsconfig/node12@1.0.11: resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==} - /@tsconfig/node14/1.0.3: + /@tsconfig/node14@1.0.3: resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} - /@tsconfig/node16/1.0.3: + /@tsconfig/node16@1.0.3: resolution: {integrity: sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==} - /@types/aria-query/5.0.1: + /@types/aria-query@5.0.1: resolution: {integrity: sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q==} 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.21.2 @@ -6080,79 +6127,79 @@ 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.21.2 - /@types/babel__template/7.4.1: + /@types/babel__template@7.4.1: resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==} dependencies: '@babel/parser': 7.21.2 '@babel/types': 7.21.2 - /@types/babel__traverse/7.18.3: + /@types/babel__traverse@7.18.3: resolution: {integrity: sha512-1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w==} dependencies: '@babel/types': 7.21.2 - /@types/body-parser/1.19.2: + /@types/body-parser@1.19.2: resolution: {integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==} dependencies: '@types/connect': 3.4.35 '@types/node': 18.14.2 dev: false - /@types/bonjour/3.5.10: + /@types/bonjour@3.5.10: resolution: {integrity: sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==} dependencies: '@types/node': 18.14.2 dev: false - /@types/chai-subset/1.3.3: + /@types/chai-subset@1.3.3: resolution: {integrity: sha512-frBecisrNGz+F4T6bcc+NLeolfiojh5FxW2klu669+8BARtyQv2C/GkNW6FUodVe4BroGMP/wER/YDGc7rEllw==} dependencies: '@types/chai': 4.3.4 dev: true - /@types/chai/4.3.4: + /@types/chai@4.3.4: resolution: {integrity: sha512-KnRanxnpfpjUTqTCXslZSEdLfXExwgNxYPdiO2WGUj8+HDjFi8R3k5RVKPeSCzLjCcshCAtVO2QBbVuAV4kTnw==} dev: true - /@types/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': 18.14.2 dev: false - /@types/connect/3.4.35: + /@types/connect@3.4.35: resolution: {integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==} dependencies: '@types/node': 18.14.2 dev: false - /@types/eslint-scope/3.7.4: + /@types/eslint-scope@3.7.4: resolution: {integrity: sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==} dependencies: '@types/eslint': 8.21.1 '@types/estree': 1.0.0 dev: false - /@types/eslint/8.21.1: + /@types/eslint@8.21.1: resolution: {integrity: sha512-rc9K8ZpVjNcLs8Fp0dkozd5Pt2Apk1glO4Vgz8ix1u6yFByxfqo5Yavpy65o+93TAe24jr7v+eSBtFLvOQtCRQ==} dependencies: '@types/estree': 1.0.0 '@types/json-schema': 7.0.11 - /@types/estree/0.0.51: + /@types/estree@0.0.51: resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==} dev: false - /@types/estree/1.0.0: + /@types/estree@1.0.0: resolution: {integrity: sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==} - /@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': 18.14.2 @@ -6160,7 +6207,7 @@ packages: '@types/range-parser': 1.2.4 dev: false - /@types/express/4.17.17: + /@types/express@4.17.17: resolution: {integrity: sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==} dependencies: '@types/body-parser': 1.19.2 @@ -6169,42 +6216,42 @@ packages: '@types/serve-static': 1.15.1 dev: false - /@types/graceful-fs/4.1.6: + /@types/graceful-fs@4.1.6: resolution: {integrity: sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==} dependencies: '@types/node': 18.14.2 - /@types/history/4.7.11: + /@types/history@4.7.11: resolution: {integrity: sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==} 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': 18.14.2 dev: false - /@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/3.0.1: + /@types/istanbul-reports@3.0.1: resolution: {integrity: sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==} dependencies: '@types/istanbul-lib-report': 3.0.0 - /@types/jest/29.4.0: + /@types/jest@29.4.0: resolution: {integrity: sha512-VaywcGQ9tPorCX/Jkkni7RWGFfI11whqzs8dvxF41P17Z+z872thvEvlIbznjPJ02kl1HMX3LmLOonsj2n7HeQ==} dependencies: expect: 29.4.3 pretty-format: 29.4.3 dev: true - /@types/jsdom/20.0.1: + /@types/jsdom@20.0.1: resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==} dependencies: '@types/node': 18.14.2 @@ -6212,72 +6259,72 @@ packages: parse5: 7.1.2 dev: true - /@types/json-schema/7.0.11: + /@types/json-schema@7.0.11: resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==} - /@types/json5/0.0.29: + /@types/json5@0.0.29: resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} dev: true - /@types/lodash.mergewith/4.6.7: + /@types/lodash.mergewith@4.6.7: resolution: {integrity: sha512-3m+lkO5CLRRYU0fhGRp7zbsGi6+BZj0uTVSwvcKU+nSlhjA9/QRNfuSGnD2mX6hQA7ZbmcCkzk5h4ZYGOtk14A==} dependencies: '@types/lodash': 4.14.191 dev: false - /@types/lodash/4.14.191: + /@types/lodash@4.14.191: resolution: {integrity: sha512-BdZ5BCCvho3EIXw6wUCXHe7rS53AIDPLE+JzwgT+OsJk53oBfbSmZZ7CX4VaRoN78N+TJpFi9QPlfIVNmJYWxQ==} dev: false - /@types/long/4.0.2: + /@types/long@4.0.2: resolution: {integrity: sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA==} - /@types/mime/3.0.1: + /@types/mime@3.0.1: resolution: {integrity: sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==} dev: false - /@types/minimist/1.2.2: + /@types/minimist@1.2.2: resolution: {integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==} dev: true - /@types/node/10.12.18: + /@types/node@10.12.18: resolution: {integrity: sha512-fh+pAqt4xRzPfqA6eh3Z2y6fyZavRIumvjhaCL753+TVkGKGhpPeyrJG2JftD0T9q4GF00KjefsQ+PQNDdWQaQ==} dev: false - /@types/node/14.18.37: + /@types/node@14.18.37: resolution: {integrity: sha512-7GgtHCs/QZrBrDzgIJnQtuSvhFSwhyYSI2uafSwZoNt1iOGhEN5fwNrQMjtONyHm9+/LoA4453jH0CMYcr06Pg==} - /@types/node/18.14.2: + /@types/node@18.14.2: resolution: {integrity: sha512-1uEQxww3DaghA0RxqHx0O0ppVlo43pJhepY51OxuQIKHpjbnYLA7vcdwioNPzIqmC2u3I/dmylcqjlh0e7AyUA==} - /@types/normalize-package-data/2.4.1: + /@types/normalize-package-data@2.4.1: resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} dev: true - /@types/parse-json/4.0.0: + /@types/parse-json@4.0.0: resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==} - /@types/prettier/2.7.2: + /@types/prettier@2.7.2: resolution: {integrity: sha512-KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg==} - /@types/prop-types/15.7.5: + /@types/prop-types@15.7.5: resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==} - /@types/qs/6.9.7: + /@types/qs@6.9.7: resolution: {integrity: sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==} dev: false - /@types/range-parser/1.2.4: + /@types/range-parser@1.2.4: resolution: {integrity: sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==} dev: false - /@types/react-dom/18.0.11: + /@types/react-dom@18.0.11: resolution: {integrity: sha512-O38bPbI2CWtgw/OoQoY+BRelw7uysmXbWvw3nLWO21H1HSh+GOlqPuXshJfjmpNlKiiSDG9cc1JZAaMmVdcTlw==} dependencies: '@types/react': 18.0.28 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 @@ -6285,90 +6332,90 @@ 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': 18.0.28 dev: true - /@types/react-transition-group/4.4.5: + /@types/react-transition-group@4.4.5: resolution: {integrity: sha512-juKD/eiSM3/xZYzjuzH6ZwpP+/lejltmiS3QEzV/vmb/Q8+HfDmxu+Baga8UEMGBqV88Nbg4l2hY/K2DkyaLLA==} dependencies: '@types/react': 18.0.28 dev: false - /@types/react/18.0.28: + /@types/react@18.0.28: resolution: {integrity: sha512-RD0ivG1kEztNBdoAK7lekI9M+azSnitIn85h4iOiaLjaTrMjzslhaqCGaI4IyCJ1RljWiLCEu4jyrLLgqxBTew==} dependencies: '@types/prop-types': 15.7.5 '@types/scheduler': 0.16.2 csstype: 3.1.1 - /@types/retry/0.12.0: + /@types/retry@0.12.0: resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==} - /@types/scheduler/0.16.2: + /@types/scheduler@0.16.2: resolution: {integrity: sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==} - /@types/semver/7.3.13: + /@types/semver@7.3.13: resolution: {integrity: sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==} dev: true - /@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 dev: false - /@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': 18.14.2 dev: false - /@types/sinonjs__fake-timers/8.1.1: + /@types/sinonjs__fake-timers@8.1.1: resolution: {integrity: sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==} - /@types/sizzle/2.3.3: + /@types/sizzle@2.3.3: resolution: {integrity: sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ==} - /@types/sockjs/0.3.33: + /@types/sockjs@0.3.33: resolution: {integrity: sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==} dependencies: '@types/node': 18.14.2 dev: false - /@types/stack-utils/2.0.1: + /@types/stack-utils@2.0.1: resolution: {integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==} - /@types/tough-cookie/4.0.2: + /@types/tough-cookie@4.0.2: resolution: {integrity: sha512-Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw==} dev: true - /@types/ws/8.5.4: + /@types/ws@8.5.4: resolution: {integrity: sha512-zdQDHKUgcX/zBc4GrwsE/7dVdAD8JR4EuiAXiiUhhfyIJXXb2+PrGshFyeXWQPMmmZ2XxgaqclgpIC7eTXc1mg==} dependencies: '@types/node': 18.14.2 dev: false - /@types/yargs-parser/21.0.0: + /@types/yargs-parser@21.0.0: resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==} - /@types/yargs/17.0.22: + /@types/yargs@17.0.22: resolution: {integrity: sha512-pet5WJ9U8yPVRhkwuEIp5ktAeAqRZOq4UdAyWLWzxbtpyXnzbtLdKiXAjJzi/KLmPGS9wk86lUFWZFN6sISo4g==} 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': 18.14.2 optional: true - /@typescript-eslint/eslint-plugin/5.53.0_on2hokawovhpujayhfxxzorgmi: + /@typescript-eslint/eslint-plugin@5.53.0(@typescript-eslint/parser@5.53.0)(eslint@8.15.0)(typescript@4.9.5): resolution: {integrity: sha512-alFpFWNucPLdUOySmXCJpzr6HKC3bu7XooShWM+3w/EL6J2HIoB2PFxpLnq4JauWVk6DiVeNKzQlFEaE+X9sGw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -6379,24 +6426,24 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.53.0_hx5tgzcbd2ycqgjduqhliuc3jm + '@typescript-eslint/parser': 5.53.0(eslint@8.15.0)(typescript@4.9.5) '@typescript-eslint/scope-manager': 5.53.0 - '@typescript-eslint/type-utils': 5.53.0_hx5tgzcbd2ycqgjduqhliuc3jm - '@typescript-eslint/utils': 5.53.0_hx5tgzcbd2ycqgjduqhliuc3jm - debug: 4.3.4 + '@typescript-eslint/type-utils': 5.53.0(eslint@8.15.0)(typescript@4.9.5) + '@typescript-eslint/utils': 5.53.0(eslint@8.15.0)(typescript@4.9.5) + debug: 4.3.4(supports-color@8.1.1) eslint: 8.15.0 grapheme-splitter: 1.0.4 ignore: 5.2.4 natural-compare-lite: 1.4.0 regexpp: 3.2.0 semver: 7.3.8 - 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/parser/5.53.0_hx5tgzcbd2ycqgjduqhliuc3jm: + /@typescript-eslint/parser@5.53.0(eslint@8.15.0)(typescript@4.9.5): resolution: {integrity: sha512-MKBw9i0DLYlmdOb3Oq/526+al20AJZpANdT6Ct9ffxcV8nKCHz63t/S0IhlTFNsBIHJv+GY5SFJ0XfqVeydQrQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -6408,15 +6455,15 @@ packages: dependencies: '@typescript-eslint/scope-manager': 5.53.0 '@typescript-eslint/types': 5.53.0 - '@typescript-eslint/typescript-estree': 5.53.0_typescript@4.9.5 - debug: 4.3.4 + '@typescript-eslint/typescript-estree': 5.53.0(typescript@4.9.5) + debug: 4.3.4(supports-color@8.1.1) eslint: 8.15.0 typescript: 4.9.5 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/scope-manager/5.53.0: + /@typescript-eslint/scope-manager@5.53.0: resolution: {integrity: sha512-Opy3dqNsp/9kBBeCPhkCNR7fmdSQqA+47r21hr9a14Bx0xnkElEQmhoHga+VoaoQ6uDHjDKmQPIYcUcKJifS7w==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: @@ -6424,7 +6471,7 @@ packages: '@typescript-eslint/visitor-keys': 5.53.0 dev: true - /@typescript-eslint/type-utils/5.53.0_hx5tgzcbd2ycqgjduqhliuc3jm: + /@typescript-eslint/type-utils@5.53.0(eslint@8.15.0)(typescript@4.9.5): resolution: {integrity: sha512-HO2hh0fmtqNLzTAme/KnND5uFNwbsdYhCZghK2SoxGp3Ifn2emv+hi0PBUjzzSh0dstUIFqOj3bp0AwQlK4OWw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -6434,22 +6481,22 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/typescript-estree': 5.53.0_typescript@4.9.5 - '@typescript-eslint/utils': 5.53.0_hx5tgzcbd2ycqgjduqhliuc3jm - debug: 4.3.4 + '@typescript-eslint/typescript-estree': 5.53.0(typescript@4.9.5) + '@typescript-eslint/utils': 5.53.0(eslint@8.15.0)(typescript@4.9.5) + debug: 4.3.4(supports-color@8.1.1) eslint: 8.15.0 - 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/types/5.53.0: + /@typescript-eslint/types@5.53.0: resolution: {integrity: sha512-5kcDL9ZUIP756K6+QOAfPkigJmCPHcLN7Zjdz76lQWWDdzfOhZDTj1irs6gPBKiXx5/6O3L0+AvupAut3z7D2A==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@typescript-eslint/typescript-estree/5.53.0_typescript@4.9.5: + /@typescript-eslint/typescript-estree@5.53.0(typescript@4.9.5): resolution: {integrity: sha512-eKmipH7QyScpHSkhbptBBYh9v8FxtngLquq292YTEQ1pxVs39yFBlLC1xeIZcPPz1RWGqb7YgERJRGkjw8ZV7w==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -6460,17 +6507,17 @@ packages: dependencies: '@typescript-eslint/types': 5.53.0 '@typescript-eslint/visitor-keys': 5.53.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.3.8 - 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/utils/5.53.0_hx5tgzcbd2ycqgjduqhliuc3jm: + /@typescript-eslint/utils@5.53.0(eslint@8.15.0)(typescript@4.9.5): resolution: {integrity: sha512-VUOOtPv27UNWLxFwQK/8+7kvxVC+hPHNsJjzlJyotlaHjLSIgOCKj9I0DBUjwOOA64qjBwx5afAPjksqOxMO0g==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -6480,17 +6527,17 @@ packages: '@types/semver': 7.3.13 '@typescript-eslint/scope-manager': 5.53.0 '@typescript-eslint/types': 5.53.0 - '@typescript-eslint/typescript-estree': 5.53.0_typescript@4.9.5 + '@typescript-eslint/typescript-estree': 5.53.0(typescript@4.9.5) eslint: 8.15.0 eslint-scope: 5.1.1 - eslint-utils: 3.0.0_eslint@8.15.0 + eslint-utils: 3.0.0(eslint@8.15.0) semver: 7.3.8 transitivePeerDependencies: - supports-color - typescript dev: true - /@typescript-eslint/visitor-keys/5.53.0: + /@typescript-eslint/visitor-keys@5.53.0: resolution: {integrity: sha512-JqNLnX3leaHFZEN0gCh81sIvgrp/2GOACZNgO4+Tkf64u51kTpAyWFOY8XHx8XuXr3N2C9zgPPHtcpMg6z1g0w==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: @@ -6498,27 +6545,27 @@ packages: eslint-visitor-keys: 3.3.0 dev: true - /@vitejs/plugin-react/3.1.0_vite@4.1.4: + /@vitejs/plugin-react@3.1.0(vite@4.1.4): resolution: {integrity: sha512-AfgcRL8ZBhAlc3BFdigClmTUMISmmzHn7sB2h9U1odvc5U/MjWXsAaz18b/WoppUTDBzxOJwo2VdClfUcItu9g==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: vite: ^4.1.0-beta.0 dependencies: '@babel/core': 7.21.0 - '@babel/plugin-transform-react-jsx-self': 7.21.0_@babel+core@7.21.0 - '@babel/plugin-transform-react-jsx-source': 7.19.6_@babel+core@7.21.0 + '@babel/plugin-transform-react-jsx-self': 7.21.0(@babel/core@7.21.0) + '@babel/plugin-transform-react-jsx-source': 7.19.6(@babel/core@7.21.0) magic-string: 0.27.0 react-refresh: 0.14.0 - vite: 4.1.4_@types+node@18.14.2 + vite: 4.1.4(@types/node@18.14.2)(less@4.1.3)(stylus@0.55.0) transitivePeerDependencies: - supports-color dev: true - /@vitest/coverage-c8/0.25.8_eetf2xjpdhuqcs2dx4ndfgw7iq: + /@vitest/coverage-c8@0.25.8(@vitest/ui@0.25.8)(jsdom@20.0.3)(less@4.1.3)(stylus@0.55.0): resolution: {integrity: sha512-fWgzQoK2KNzTTNnDcLCyibfO9/pbcpPOMtZ9Yvq/Eggpi2X8lewx/OcKZkO5ba5q9dl6+BBn6d5hTcS1709rZw==} dependencies: c8: 7.13.0 - vitest: 0.25.8_eetf2xjpdhuqcs2dx4ndfgw7iq + vitest: 0.25.8(@vitest/ui@0.25.8)(jsdom@20.0.3)(less@4.1.3)(stylus@0.55.0) transitivePeerDependencies: - '@edge-runtime/vm' - '@vitest/browser' @@ -6533,16 +6580,16 @@ packages: - terser dev: true - /@vitest/ui/0.25.8: + /@vitest/ui@0.25.8: resolution: {integrity: sha512-wfuhghldD5QHLYpS46GK8Ru8P3XcMrWvFjRQD21KNzc9Y/qtJsqoC8KmT6xWVkMNw4oHYixpo3a4ZySRJdserw==} dependencies: sirv: 2.0.2 dev: true - /@walletconnect/core/2.4.7_ellgaeuoqnti3hful2ny2iugba: + /@walletconnect/core@2.4.7(@types/node@18.14.2)(typescript@4.9.5): resolution: {integrity: sha512-w92NrtziqrWs070HJICGh80Vp60PaXu06OjNvOnVZEorbTipCWx4xxgcC2NhsT4TCQ8r1FOut6ahLe1PILuRsg==} dependencies: - '@walletconnect/heartbeat': 1.2.0_ellgaeuoqnti3hful2ny2iugba + '@walletconnect/heartbeat': 1.2.0(@types/node@18.14.2)(typescript@4.9.5) '@walletconnect/jsonrpc-provider': 1.0.8 '@walletconnect/jsonrpc-utils': 1.0.6 '@walletconnect/jsonrpc-ws-connection': 1.0.9 @@ -6552,8 +6599,8 @@ packages: '@walletconnect/relay-auth': 1.0.4 '@walletconnect/safe-json': 1.0.1 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.4.7_ellgaeuoqnti3hful2ny2iugba - '@walletconnect/utils': 2.4.7_ellgaeuoqnti3hful2ny2iugba + '@walletconnect/types': 2.4.7(@types/node@18.14.2)(typescript@4.9.5) + '@walletconnect/utils': 2.4.7(@types/node@18.14.2)(typescript@4.9.5) events: 3.3.0 lodash.isequal: 4.5.0 pino: 7.11.0 @@ -6569,27 +6616,27 @@ packages: - utf-8-validate dev: false - /@walletconnect/environment/1.0.1: + /@walletconnect/environment@1.0.1: resolution: {integrity: sha512-T426LLZtHj8e8rYnKfzsw1aG6+M0BT1ZxayMdv/p8yM0MU+eJDISqNY3/bccxRr4LrF9csq02Rhqt08Ibl0VRg==} dependencies: tslib: 1.14.1 dev: false - /@walletconnect/events/1.0.1: + /@walletconnect/events@1.0.1: resolution: {integrity: sha512-NPTqaoi0oPBVNuLv7qPaJazmGHs5JGyO8eEAk5VGKmJzDR7AHzD4k6ilox5kxk1iwiOnFopBOOMLs86Oa76HpQ==} dependencies: keyvaluestorage-interface: 1.0.0 tslib: 1.14.1 dev: false - /@walletconnect/heartbeat/1.2.0_ellgaeuoqnti3hful2ny2iugba: + /@walletconnect/heartbeat@1.2.0(@types/node@18.14.2)(typescript@4.9.5): resolution: {integrity: sha512-0vbzTa/ARrpmMmOD+bQMxPvFYKtOLQZObgZakrYr0aODiMOO71CmPVNV2eAqXnw9rMmcP+z91OybLeIFlwTjjA==} dependencies: '@walletconnect/events': 1.0.1 '@walletconnect/time': 1.0.2 chai: 4.3.7 mocha: 10.2.0 - ts-node: 10.9.1_ellgaeuoqnti3hful2ny2iugba + ts-node: 10.9.1(@types/node@18.14.2)(typescript@4.9.5) tslib: 1.14.1 transitivePeerDependencies: - '@swc/core' @@ -6598,7 +6645,7 @@ packages: - typescript dev: false - /@walletconnect/jsonrpc-provider/1.0.8: + /@walletconnect/jsonrpc-provider@1.0.8: resolution: {integrity: sha512-M44vzTrF0TeDcxQorm2lJ5klmfqchYOZqmIHb5T9lIPA/rj22643P83j44flZLyzycPqy5UUlIH6foeBPwjxMg==} dependencies: '@walletconnect/jsonrpc-utils': 1.0.6 @@ -6606,14 +6653,14 @@ packages: tslib: 1.14.1 dev: false - /@walletconnect/jsonrpc-types/1.0.2: + /@walletconnect/jsonrpc-types@1.0.2: resolution: {integrity: sha512-CZe8tjJX73OWdHjrBHy7HtAapJ2tT0Q3TYhPBhRxi3643lwPIQWC9En45ldY14TZwgSewkbZ0FtGBZK0G7Bbyg==} dependencies: keyvaluestorage-interface: 1.0.0 tslib: 1.14.1 dev: false - /@walletconnect/jsonrpc-utils/1.0.6: + /@walletconnect/jsonrpc-utils@1.0.6: resolution: {integrity: sha512-snp0tfkjPiDLQp/jrBewI+9SM33GPV4+Gjgldod6XQ7rFyQ5FZjnBxUkY4xWH0+arNxzQSi6v5iDXjCjSaorpg==} dependencies: '@walletconnect/environment': 1.0.1 @@ -6621,7 +6668,7 @@ packages: tslib: 1.14.1 dev: false - /@walletconnect/jsonrpc-ws-connection/1.0.9: + /@walletconnect/jsonrpc-ws-connection@1.0.9: resolution: {integrity: sha512-x1COaW6hhMLEo+ND5zF/siBGg5SEwC/gHjeRbJtK1CRiq9atkg/XR7JwtSNfMvYX/O3PRCVmuc5SP0RQio9JUw==} dependencies: '@walletconnect/jsonrpc-utils': 1.0.6 @@ -6634,7 +6681,7 @@ packages: - utf-8-validate dev: false - /@walletconnect/keyvaluestorage/1.0.2: + /@walletconnect/keyvaluestorage@1.0.2: resolution: {integrity: sha512-U/nNG+VLWoPFdwwKx0oliT4ziKQCEoQ27L5Hhw8YOFGA2Po9A9pULUYNWhDgHkrb0gYDNt//X7wABcEWWBd3FQ==} peerDependencies: '@react-native-async-storage/async-storage': 1.x @@ -6649,21 +6696,21 @@ packages: tslib: 1.14.1 dev: false - /@walletconnect/logger/2.0.1: + /@walletconnect/logger@2.0.1: resolution: {integrity: sha512-SsTKdsgWm+oDTBeNE/zHxxr5eJfZmE9/5yp/Ku+zJtcTAjELb3DXueWkDXmE9h8uHIbJzIb5wj5lPdzyrjT6hQ==} dependencies: pino: 7.11.0 tslib: 1.14.1 dev: false - /@walletconnect/relay-api/1.0.9: + /@walletconnect/relay-api@1.0.9: resolution: {integrity: sha512-Q3+rylJOqRkO1D9Su0DPE3mmznbAalYapJ9qmzDgK28mYF9alcP3UwG/og5V7l7CFOqzCLi7B8BvcBUrpDj0Rg==} dependencies: '@walletconnect/jsonrpc-types': 1.0.2 tslib: 1.14.1 dev: false - /@walletconnect/relay-auth/1.0.4: + /@walletconnect/relay-auth@1.0.4: resolution: {integrity: sha512-kKJcS6+WxYq5kshpPaxGHdwf5y98ZwbfuS4EE/NkQzqrDFm5Cj+dP8LofzWvjrrLkZq7Afy7WrQMXdLy8Sx7HQ==} dependencies: '@stablelib/ed25519': 1.0.3 @@ -6674,24 +6721,24 @@ packages: uint8arrays: 3.1.1 dev: false - /@walletconnect/safe-json/1.0.1: + /@walletconnect/safe-json@1.0.1: resolution: {integrity: sha512-Fm7e31oSYY15NQr8SsLJheKAy5L744udZf2lJKcz6wFmPJEzf7hOF0866o/rrldRzJnjZ4H2GJ45pFudsnLW5A==} dependencies: tslib: 1.14.1 dev: false - /@walletconnect/sign-client/2.4.7_ellgaeuoqnti3hful2ny2iugba: + /@walletconnect/sign-client@2.4.7(@types/node@18.14.2)(typescript@4.9.5): resolution: {integrity: sha512-x5uxnHQkNSn0QNXUdPEfwy4o1Vyi2QIWkDGUh+pfSP4s2vN0+IJAcwqBqkPn+zJ1X7eKYLs+v0ih1eieciYMPA==} dependencies: - '@walletconnect/core': 2.4.7_ellgaeuoqnti3hful2ny2iugba + '@walletconnect/core': 2.4.7(@types/node@18.14.2)(typescript@4.9.5) '@walletconnect/events': 1.0.1 - '@walletconnect/heartbeat': 1.2.0_ellgaeuoqnti3hful2ny2iugba + '@walletconnect/heartbeat': 1.2.0(@types/node@18.14.2)(typescript@4.9.5) '@walletconnect/jsonrpc-provider': 1.0.8 '@walletconnect/jsonrpc-utils': 1.0.6 '@walletconnect/logger': 2.0.1 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.4.7_ellgaeuoqnti3hful2ny2iugba - '@walletconnect/utils': 2.4.7_ellgaeuoqnti3hful2ny2iugba + '@walletconnect/types': 2.4.7(@types/node@18.14.2)(typescript@4.9.5) + '@walletconnect/utils': 2.4.7(@types/node@18.14.2)(typescript@4.9.5) events: 3.3.0 pino: 7.11.0 transitivePeerDependencies: @@ -6705,17 +6752,17 @@ packages: - utf-8-validate dev: false - /@walletconnect/time/1.0.2: + /@walletconnect/time@1.0.2: resolution: {integrity: sha512-uzdd9woDcJ1AaBZRhqy5rNC9laqWGErfc4dxA9a87mPdKOgWMD85mcFo9dIYIts/Jwocfwn07EC6EzclKubk/g==} dependencies: tslib: 1.14.1 dev: false - /@walletconnect/types/2.2.0_ellgaeuoqnti3hful2ny2iugba: + /@walletconnect/types@2.2.0(@types/node@18.14.2)(typescript@4.9.5): resolution: {integrity: sha512-mxxXcHTtRaa3FiLWWEYEOA3wyGzOc9Fdv2Objms/COcPAropAY/8A0kceqCDB0si1UFOl6KpEzvm5WHJpJi9tQ==} dependencies: '@walletconnect/events': 1.0.1 - '@walletconnect/heartbeat': 1.2.0_ellgaeuoqnti3hful2ny2iugba + '@walletconnect/heartbeat': 1.2.0(@types/node@18.14.2)(typescript@4.9.5) '@walletconnect/jsonrpc-types': 1.0.2 '@walletconnect/keyvaluestorage': 1.0.2 '@walletconnect/logger': 2.0.1 @@ -6729,11 +6776,11 @@ packages: - typescript dev: false - /@walletconnect/types/2.4.7_ellgaeuoqnti3hful2ny2iugba: + /@walletconnect/types@2.4.7(@types/node@18.14.2)(typescript@4.9.5): resolution: {integrity: sha512-1VaPdPJrE+UrEjAhK5bdxq2+MTo3DvUMmQeNUsp3vUGhocQXB9hJQQ1rYBknYYSyDu2rTksGCQ4nv3ZOqfxvHw==} dependencies: '@walletconnect/events': 1.0.1 - '@walletconnect/heartbeat': 1.2.0_ellgaeuoqnti3hful2ny2iugba + '@walletconnect/heartbeat': 1.2.0(@types/node@18.14.2)(typescript@4.9.5) '@walletconnect/jsonrpc-types': 1.0.2 '@walletconnect/keyvaluestorage': 1.0.2 '@walletconnect/logger': 2.0.1 @@ -6747,7 +6794,7 @@ packages: - typescript dev: false - /@walletconnect/utils/2.4.7_ellgaeuoqnti3hful2ny2iugba: + /@walletconnect/utils@2.4.7(@types/node@18.14.2)(typescript@4.9.5): resolution: {integrity: sha512-t3kW0qLClnejTTKg3y/o/MmJb5ZDGfD13YT9Nw56Up3qq/pwVfTtWjt8vJOQWMIm0hZgjgESivcf6/wuu3/Oqw==} dependencies: '@stablelib/chacha20poly1305': 1.0.1 @@ -6759,7 +6806,7 @@ packages: '@walletconnect/relay-api': 1.0.9 '@walletconnect/safe-json': 1.0.1 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.4.7_ellgaeuoqnti3hful2ny2iugba + '@walletconnect/types': 2.4.7(@types/node@18.14.2)(typescript@4.9.5) '@walletconnect/window-getters': 1.0.1 '@walletconnect/window-metadata': 1.0.1 detect-browser: 5.3.0 @@ -6774,39 +6821,39 @@ packages: - typescript dev: false - /@walletconnect/window-getters/1.0.1: + /@walletconnect/window-getters@1.0.1: resolution: {integrity: sha512-vHp+HqzGxORPAN8gY03qnbTMnhqIwjeRJNOMOAzePRg4xVEEE2WvYsI9G2NMjOknA8hnuYbU3/hwLcKbjhc8+Q==} dependencies: tslib: 1.14.1 dev: false - /@walletconnect/window-metadata/1.0.1: + /@walletconnect/window-metadata@1.0.1: resolution: {integrity: sha512-9koTqyGrM2cqFRW517BPY/iEtUDx2r1+Pwwu5m7sJ7ka79wi3EyqhqcICk/yDmv6jAS1rjKgTKXlEhanYjijcA==} dependencies: '@walletconnect/window-getters': 1.0.1 tslib: 1.14.1 dev: false - /@webassemblyjs/ast/1.11.1: + /@webassemblyjs/ast@1.11.1: resolution: {integrity: sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==} dependencies: '@webassemblyjs/helper-numbers': 1.11.1 '@webassemblyjs/helper-wasm-bytecode': 1.11.1 dev: false - /@webassemblyjs/floating-point-hex-parser/1.11.1: + /@webassemblyjs/floating-point-hex-parser@1.11.1: resolution: {integrity: sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==} dev: false - /@webassemblyjs/helper-api-error/1.11.1: + /@webassemblyjs/helper-api-error@1.11.1: resolution: {integrity: sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==} dev: false - /@webassemblyjs/helper-buffer/1.11.1: + /@webassemblyjs/helper-buffer@1.11.1: resolution: {integrity: sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==} dev: false - /@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 @@ -6814,11 +6861,11 @@ packages: '@xtuc/long': 4.2.2 dev: false - /@webassemblyjs/helper-wasm-bytecode/1.11.1: + /@webassemblyjs/helper-wasm-bytecode@1.11.1: resolution: {integrity: sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==} dev: false - /@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 @@ -6827,23 +6874,23 @@ packages: '@webassemblyjs/wasm-gen': 1.11.1 dev: false - /@webassemblyjs/ieee754/1.11.1: + /@webassemblyjs/ieee754@1.11.1: resolution: {integrity: sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==} dependencies: '@xtuc/ieee754': 1.2.0 dev: false - /@webassemblyjs/leb128/1.11.1: + /@webassemblyjs/leb128@1.11.1: resolution: {integrity: sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==} dependencies: '@xtuc/long': 4.2.2 dev: false - /@webassemblyjs/utf8/1.11.1: + /@webassemblyjs/utf8@1.11.1: resolution: {integrity: sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==} dev: false - /@webassemblyjs/wasm-edit/1.11.1: + /@webassemblyjs/wasm-edit@1.11.1: resolution: {integrity: sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==} dependencies: '@webassemblyjs/ast': 1.11.1 @@ -6856,7 +6903,7 @@ packages: '@webassemblyjs/wast-printer': 1.11.1 dev: false - /@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 @@ -6866,7 +6913,7 @@ packages: '@webassemblyjs/utf8': 1.11.1 dev: false - /@webassemblyjs/wasm-opt/1.11.1: + /@webassemblyjs/wasm-opt@1.11.1: resolution: {integrity: sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==} dependencies: '@webassemblyjs/ast': 1.11.1 @@ -6875,7 +6922,7 @@ packages: '@webassemblyjs/wasm-parser': 1.11.1 dev: false - /@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 @@ -6886,14 +6933,14 @@ packages: '@webassemblyjs/utf8': 1.11.1 dev: false - /@webassemblyjs/wast-printer/1.11.1: + /@webassemblyjs/wast-printer@1.11.1: resolution: {integrity: sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==} dependencies: '@webassemblyjs/ast': 1.11.1 '@xtuc/long': 4.2.2 dev: false - /@xstate/react/3.2.1_o53l3h553defh3ruq4yellezcm: + /@xstate/react@3.2.1(@types/react@18.0.28)(react@18.2.0)(xstate@4.37.0): resolution: {integrity: sha512-L/mqYRxyBWVdIdSaXBHacfvS8NKn3sTKbPb31aRADbE9spsJ1p+tXil0GVQHPlzrmjGeozquLrxuYGiXsFNU7g==} peerDependencies: '@xstate/fsm': ^2.0.0 @@ -6906,46 +6953,46 @@ packages: optional: true dependencies: react: 18.2.0 - use-isomorphic-layout-effect: 1.1.2_pmekkgnqduwlme35zpnqhenc34 - use-sync-external-store: 1.2.0_react@18.2.0 + use-isomorphic-layout-effect: 1.1.2(@types/react@18.0.28)(react@18.2.0) + use-sync-external-store: 1.2.0(react@18.2.0) xstate: 4.37.0 transitivePeerDependencies: - '@types/react' dev: false - /@xtuc/ieee754/1.2.0: + /@xtuc/ieee754@1.2.0: resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==} dev: false - /@xtuc/long/4.2.2: + /@xtuc/long@4.2.2: resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} dev: false - /@yarnpkg/lockfile/1.1.0: + /@yarnpkg/lockfile@1.1.0: resolution: {integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==} - /@yarnpkg/parsers/3.0.0-rc.39: + /@yarnpkg/parsers@3.0.0-rc.39: resolution: {integrity: sha512-BsD4zq3EVmaHqlynXTceNuEFAtrfToV4fI9GA54moKlWZL4Eb2eXrhgf1jV2nMYx18SZxYO4Jc5Kf1sCDNRjOg==} engines: {node: '>=14.15.0'} dependencies: js-yaml: 3.14.1 tslib: 2.5.0 - /@zag-js/element-size/0.3.1: + /@zag-js/element-size@0.3.1: resolution: {integrity: sha512-jR5j4G//bRzcxwAACWi9EfITnwjNmn10LxF4NmALrdZU7/PNWP3uUCdhCxd/0SCyeiJXUl0yvD57rWAbKPs1nw==} dev: false - /@zag-js/focus-visible/0.2.1: + /@zag-js/focus-visible@0.2.1: resolution: {integrity: sha512-19uTjoZGP4/Ax7kSNhhay9JA83BirKzpqLkeEAilrpdI1hE5xuq6q+tzJOsrMOOqJrm7LkmZp5lbsTQzvK2pYg==} dev: false - /@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 - /JSONStream/1.3.5: + /JSONStream@1.3.5: resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} hasBin: true dependencies: @@ -6953,10 +7000,10 @@ packages: through: 2.3.8 dev: true - /abab/2.0.6: + /abab@2.0.6: resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==} - /accepts/1.3.8: + /accepts@1.3.8: resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} engines: {node: '>= 0.6'} dependencies: @@ -6964,14 +7011,14 @@ packages: negotiator: 0.6.3 dev: false - /acorn-globals/7.0.1: + /acorn-globals@7.0.1: resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==} dependencies: acorn: 8.8.2 acorn-walk: 8.2.0 dev: true - /acorn-import-assertions/1.8.0_acorn@8.8.2: + /acorn-import-assertions@1.8.0(acorn@8.8.2): resolution: {integrity: sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==} peerDependencies: acorn: ^8 @@ -6979,39 +7026,39 @@ packages: acorn: 8.8.2 dev: false - /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 dependencies: acorn: 8.8.2 - /acorn-walk/8.2.0: + /acorn-walk@8.2.0: resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==} engines: {node: '>=0.4.0'} - /acorn/8.8.2: + /acorn@8.8.2: resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==} engines: {node: '>=0.4.0'} hasBin: 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 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 - /aggregate-error/4.0.1: + /aggregate-error@4.0.1: resolution: {integrity: sha512-0poP0T7el6Vq3rstR8Mn4V/IQrpBLO6POkUSrN7RhyY+GF/InCFShQzsQ39T25gkHhLgSLByyAz+Kjb+c2L98w==} engines: {node: '>=12'} dependencies: @@ -7019,8 +7066,10 @@ packages: indent-string: 5.0.0 dev: true - /ajv-formats/2.1.1: + /ajv-formats@2.1.1(ajv@8.12.0): resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==} + peerDependencies: + ajv: ^8.0.0 peerDependenciesMeta: ajv: optional: true @@ -7028,7 +7077,7 @@ packages: ajv: 8.12.0 dev: false - /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 @@ -7036,7 +7085,7 @@ packages: ajv: 6.12.6 dev: false - /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 @@ -7045,7 +7094,7 @@ packages: fast-deep-equal: 3.1.3 dev: false - /ajv/6.12.6: + /ajv@6.12.6: resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} dependencies: fast-deep-equal: 3.1.3 @@ -7053,7 +7102,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 @@ -7061,109 +7110,109 @@ packages: require-from-string: 2.0.2 uri-js: 4.4.1 - /ansi-colors/4.1.1: + /ansi-colors@4.1.1: resolution: {integrity: sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==} engines: {node: '>=6'} dev: false - /ansi-colors/4.1.3: + /ansi-colors@4.1.3: resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} engines: {node: '>=6'} - /ansi-escapes/4.3.2: + /ansi-escapes@4.3.2: resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} engines: {node: '>=8'} dependencies: type-fest: 0.21.3 - /ansi-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 dev: false - /ansi-regex/5.0.1: + /ansi-regex@5.0.1: resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} engines: {node: '>=8'} - /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'} - /ansicolors/0.3.2: + /ansicolors@0.3.2: resolution: {integrity: sha512-QXu7BPrP29VllRxH8GwB7x5iX5qWKAAMLqKQGWTeLWVlNHNOpVMJ91dsxQAIWXpjuW5wqvxu3Jd/nRjrJ+0pqg==} 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 - /arch/2.2.0: + /arch@2.2.0: resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==} - /arg/4.1.3: + /arg@4.1.3: resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} - /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 - /aria-hidden/1.2.3: + /aria-hidden@1.2.3: resolution: {integrity: sha512-xcLxITLe2HYa1cnYnwCjkOO1PqUHQpozB8x9AR0OgWN2woOBi5kSDVxKfd0b7sb1hw5qFeJhXm9H1nu3xSfLeQ==} engines: {node: '>=10'} dependencies: tslib: 2.5.0 dev: false - /aria-query/5.1.3: + /aria-query@5.1.3: resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==} dependencies: deep-equal: 2.2.0 dev: true - /array-flatten/1.1.1: + /array-flatten@1.1.1: resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} dev: false - /array-flatten/2.1.2: + /array-flatten@2.1.2: resolution: {integrity: sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==} dev: false - /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: @@ -7174,17 +7223,17 @@ packages: is-string: 1.0.7 dev: true - /array-union/2.1.0: + /array-union@2.1.0: resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} engines: {node: '>=8'} dev: true - /array-union/3.0.1: + /array-union@3.0.1: resolution: {integrity: sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==} engines: {node: '>=12'} dev: false - /array.prototype.flat/1.3.1: + /array.prototype.flat@1.3.1: resolution: {integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==} engines: {node: '>= 0.4'} dependencies: @@ -7194,7 +7243,7 @@ packages: es-shim-unscopables: 1.0.0 dev: true - /array.prototype.flatmap/1.3.1: + /array.prototype.flatmap@1.3.1: resolution: {integrity: sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==} engines: {node: '>= 0.4'} dependencies: @@ -7204,7 +7253,7 @@ packages: es-shim-unscopables: 1.0.0 dev: true - /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 @@ -7214,53 +7263,52 @@ packages: get-intrinsic: 1.2.0 dev: true - /arrify/1.0.1: + /arrify@1.0.1: resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} engines: {node: '>=0.10.0'} dev: true - /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'} - /assertion-error/1.1.0: + /assertion-error@1.1.0: resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==} - /ast-types-flow/0.0.7: + /ast-types-flow@0.0.7: resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==} dev: true - /astral-regex/2.0.0: + /astral-regex@2.0.0: resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} engines: {node: '>=8'} - /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: false - /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 - /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 @@ -7276,23 +7324,23 @@ 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'} dev: true - /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'} dev: true - /axios/0.21.1: + /axios@0.21.1: resolution: {integrity: sha512-dKQiRHxGD9PPRIUNIWvZhPTPpl1rf/OxTYKsqKUDjBwYylTvV7SjSHJb9ratfyzM6wCdLCOYLzs73qpg5c4iGA==} dependencies: follow-redirects: 1.15.2 @@ -7300,14 +7348,14 @@ packages: - debug 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.27.2: + /axios@0.27.2: resolution: {integrity: sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==} dependencies: follow-redirects: 1.15.2 @@ -7316,7 +7364,7 @@ packages: - debug dev: false - /axios/1.3.4: + /axios@1.3.4: resolution: {integrity: sha512-toYm+Bsyl6VC5wSkfkbbNB6ROv7KY93PEBBL6xyDczaIHasAiv4wPqQ/c4RjoQzipxRD2W5g21cOqQulZ7rHwQ==} dependencies: follow-redirects: 1.15.2 @@ -7325,13 +7373,13 @@ 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 dev: true - /babel-jest/28.1.3_@babel+core@7.21.0: + /babel-jest@28.1.3(@babel/core@7.21.0): resolution: {integrity: sha512-epUaPOEWMk3cWX0M/sPvCHHCe9fMFAa/9hXEgKP8nFfNl/jlGkE9ucq9NqkZGXLDduCJYS0UvSlPUwC0S+rH6Q==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} peerDependencies: @@ -7341,14 +7389,14 @@ packages: '@jest/transform': 28.1.3 '@types/babel__core': 7.20.0 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 28.1.3_@babel+core@7.21.0 + babel-preset-jest: 28.1.3(@babel/core@7.21.0) chalk: 4.1.2 graceful-fs: 4.2.10 slash: 3.0.0 transitivePeerDependencies: - supports-color - /babel-jest/29.4.3_@babel+core@7.21.0: + /babel-jest@29.4.3(@babel/core@7.21.0): resolution: {integrity: sha512-o45Wyn32svZE+LnMVWv/Z4x0SwtLbh4FyGcYtR20kIWd+rdrDZ9Fzq8Ml3MYLD+mZvEdzCjZsCnYZ2jpJyQ+Nw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: @@ -7358,7 +7406,7 @@ packages: '@jest/transform': 29.4.3 '@types/babel__core': 7.20.0 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 29.4.3_@babel+core@7.21.0 + babel-preset-jest: 29.4.3(@babel/core@7.21.0) chalk: 4.1.2 graceful-fs: 4.2.10 slash: 3.0.0 @@ -7366,7 +7414,7 @@ packages: - supports-color dev: true - /babel-loader/9.1.2_qoaxtqicpzj5p3ubthw53xafqm: + /babel-loader@9.1.2(@babel/core@7.21.0)(webpack@5.75.0): resolution: {integrity: sha512-mN14niXW43tddohGl8HPu5yfQq70iUThvFL/4QzESA7GcZoC0eVOhvWdQ8+3UlSjaDE9MVtsW9mxDY07W7VpVA==} engines: {node: '>= 14.15.0'} peerDependencies: @@ -7379,19 +7427,19 @@ packages: webpack: 5.75.0 dev: false - /babel-plugin-const-enum/1.2.0_@babel+core@7.21.0: + /babel-plugin-const-enum@1.2.0(@babel/core@7.21.0): resolution: {integrity: sha512-o1m/6iyyFnp9MRsK1dHF3bneqyf3AlM2q3A/YbgQr2pCat6B6XJVDv2TXqzfY2RYUi4mak6WAksSBPlyYGx9dg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.21.0 + '@babel/plugin-syntax-typescript': 7.20.0(@babel/core@7.21.0) '@babel/traverse': 7.21.2 transitivePeerDependencies: - supports-color - /babel-plugin-istanbul/6.1.1: + /babel-plugin-istanbul@6.1.1: resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} engines: {node: '>=8'} dependencies: @@ -7403,7 +7451,7 @@ packages: transitivePeerDependencies: - supports-color - /babel-plugin-jest-hoist/28.1.3: + /babel-plugin-jest-hoist@28.1.3: resolution: {integrity: sha512-Ys3tUKAmfnkRUpPdpa98eYrAR0nV+sSFUZZEGuQ2EbFd1y4SOLtD5QDNHAq+bb9a+bbXvYQC4b+ID/THIMcU6Q==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: @@ -7412,7 +7460,7 @@ packages: '@types/babel__core': 7.20.0 '@types/babel__traverse': 7.18.3 - /babel-plugin-jest-hoist/29.4.3: + /babel-plugin-jest-hoist@29.4.3: resolution: {integrity: sha512-mB6q2q3oahKphy5V7CpnNqZOCkxxZ9aokf1eh82Dy3jQmg4xvM1tGrh5y6BQUJh4a3Pj9+eLfwvAZ7VNKg7H8Q==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -7422,14 +7470,14 @@ 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 cosmiconfig: 6.0.0 resolve: 1.22.1 - /babel-plugin-macros/3.1.0: + /babel-plugin-macros@3.1.0: resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} engines: {node: '>=10', npm: '>=6'} dependencies: @@ -7437,64 +7485,71 @@ packages: cosmiconfig: 7.1.0 resolve: 1.22.1 - /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.21.0: + /babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.21.0): resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/compat-data': 7.21.0 '@babel/core': 7.21.0 - '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.21.0 + '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.21.0) semver: 6.3.0 transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.21.0: + /babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.21.0): resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.0 - '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.21.0 + '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.21.0) core-js-compat: 3.28.0 transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.21.0: + /babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.21.0): resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.0 - '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.21.0 + '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.21.0) transitivePeerDependencies: - supports-color - /babel-plugin-transform-typescript-metadata/0.3.2: + /babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.21.0): resolution: {integrity: sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==} + peerDependencies: + '@babel/core': ^7 + '@babel/traverse': ^7 + peerDependenciesMeta: + '@babel/traverse': + optional: true dependencies: + '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - /babel-preset-current-node-syntax/1.0.1_@babel+core@7.21.0: + /babel-preset-current-node-syntax@1.0.1(@babel/core@7.21.0): resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.21.0 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.21.0 - '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.21.0 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.21.0 - '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.21.0 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.21.0 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.21.0 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.21.0 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.21.0 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.21.0 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.21.0 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.21.0 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.21.0 - - /babel-preset-jest/28.1.3_@babel+core@7.21.0: + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.21.0) + '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.21.0) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.21.0) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.21.0) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.21.0) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.21.0) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.21.0) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.21.0) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.0) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.21.0) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.0) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.21.0) + + /babel-preset-jest@28.1.3(@babel/core@7.21.0): resolution: {integrity: sha512-L+fupJvlWAHbQfn74coNX3zf60LXMJsezNvvx8eIh7iOR1luJ1poxYgQk1F8PYtNq/6QODDHCqsSnTFSWC491A==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} peerDependencies: @@ -7502,9 +7557,9 @@ packages: dependencies: '@babel/core': 7.21.0 babel-plugin-jest-hoist: 28.1.3 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.21.0 + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.21.0) - /babel-preset-jest/29.4.3_@babel+core@7.21.0: + /babel-preset-jest@29.4.3(@babel/core@7.21.0): resolution: {integrity: sha512-gWx6COtSuma6n9bw+8/F+2PCXrIgxV/D1TJFnp6OyBK2cxPWg0K9p/sriNYeifKjpUkMViWQ09DSWtzJQRETsw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: @@ -7512,58 +7567,58 @@ packages: dependencies: '@babel/core': 7.21.0 babel-plugin-jest-hoist: 29.4.3 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.21.0 + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.21.0) dev: true - /balanced-match/1.0.2: + /balanced-match@1.0.2: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} - /base-x/3.0.9: + /base-x@3.0.9: resolution: {integrity: sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==} dependencies: safe-buffer: 5.2.1 dev: false - /base64-js/1.5.1: + /base64-js@1.5.1: resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} - /batch/0.6.1: + /batch@0.6.1: resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==} dev: false - /bcrypt-pbkdf/1.0.2: + /bcrypt-pbkdf@1.0.2: resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==} dependencies: tweetnacl: 0.14.5 - /bech32/1.1.4: + /bech32@1.1.4: resolution: {integrity: sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ==} dev: false - /before-after-hook/2.2.3: + /before-after-hook@2.2.3: resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==} dev: true - /big-integer/1.6.51: + /big-integer@1.6.51: resolution: {integrity: sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==} engines: {node: '>=0.6'} dev: false - /big.js/5.2.2: + /big.js@5.2.2: resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==} dev: false - /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==} dependencies: file-uri-to-path: 1.0.0 dev: false - /bip32/2.0.6: + /bip32@2.0.6: resolution: {integrity: sha512-HpV5OMLLGTjSVblmrtYRfFFKuQB+GArM0+XP8HGWfJ5vxYBqo+DesvJwOdC2WJ3bCkZShGf0QIfoIpeomVzVdA==} engines: {node: '>=6.0.0'} dependencies: @@ -7576,34 +7631,34 @@ packages: wif: 2.0.6 dev: false - /bip39/3.1.0: + /bip39@3.1.0: resolution: {integrity: sha512-c9kiwdk45Do5GL0vJMe7tS95VjCii65mYAH7DfWl3uW8AVzXKQVUm64i3hzVybBDMp9r7j9iNxR85+ul8MdN/A==} dependencies: '@noble/hashes': 1.2.0 dev: false - /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.1 - /blob-util/2.0.2: + /blob-util@2.0.2: resolution: {integrity: sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==} - /bluebird/3.7.2: + /bluebird@3.7.2: resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==} - /bn.js/4.12.0: + /bn.js@4.12.0: resolution: {integrity: sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==} dev: false - /bn.js/5.2.1: + /bn.js@5.2.1: resolution: {integrity: sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==} dev: false - /body-parser/1.20.1: + /body-parser@1.20.1: resolution: {integrity: sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==} engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} dependencies: @@ -7623,7 +7678,7 @@ packages: - supports-color dev: false - /bonjour-service/1.1.0: + /bonjour-service@1.1.0: resolution: {integrity: sha512-LVRinRB3k1/K0XzZ2p58COnWvkQknIY6sf0zF2rpErvcJXpMBttEPQSxK+HEXSS9VmpZlDoDnQWv8ftJT20B0Q==} dependencies: array-flatten: 2.1.2 @@ -7632,44 +7687,44 @@ packages: multicast-dns: 7.2.5 dev: false - /boolbase/1.0.0: + /boolbase@1.0.0: resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} dev: false - /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 - /brace-expansion/1.1.11: + /brace-expansion@1.1.11: resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} dependencies: balanced-match: 1.0.2 concat-map: 0.0.1 - /brace-expansion/2.0.1: + /brace-expansion@2.0.1: resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} dependencies: balanced-match: 1.0.2 - /braces/3.0.2: + /braces@3.0.2: resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} engines: {node: '>=8'} dependencies: fill-range: 7.0.1 - /brorand/1.1.0: + /brorand@1.1.0: resolution: {integrity: sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==} dev: false - /browser-stdout/1.3.1: + /browser-stdout@1.3.1: resolution: {integrity: sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==} dev: false - /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 @@ -7677,22 +7732,22 @@ packages: caniuse-lite: 1.0.30001457 electron-to-chromium: 1.4.311 node-releases: 2.0.10 - update-browserslist-db: 1.0.10_browserslist@4.21.5 + update-browserslist-db: 1.0.10(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 - /bs58/4.0.1: + /bs58@4.0.1: resolution: {integrity: sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==} dependencies: base-x: 3.0.9 dev: false - /bs58check/2.1.2: + /bs58check@2.1.2: resolution: {integrity: sha512-0TS1jicxdU09dwJMNZtVAfzPi6Q6QeN0pM1Fkzrjn+XYHvzMKPU3pHVpva+769iNVSfIYWf7LJ6WR+BuuMf8cA==} dependencies: bs58: 4.0.1 @@ -7700,52 +7755,52 @@ packages: safe-buffer: 5.2.1 dev: false - /bser/2.1.1: + /bser@2.1.1: resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} dependencies: node-int64: 0.4.0 - /buffer-crc32/0.2.13: + /buffer-crc32@0.2.13: resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} - /buffer-from/0.1.2: + /buffer-from@0.1.2: resolution: {integrity: sha512-RiWIenusJsmI2KcvqQABB83tLxCByE3upSP8QU3rJDMVFGPWLvPQJt/O1Su9moRWeH7d+Q2HYb68f6+v+tw2vg==} dev: false - /buffer-from/1.1.2: + /buffer-from@1.1.2: resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} - /buffer/5.4.3: + /buffer@5.4.3: resolution: {integrity: sha512-zvj65TkFeIt3i6aj5bIvJDzjjQQGs4o/sNoezg1F1kYap9Nu2jcUdpwzRSJTHMMzG0H7bZkn4rNQpImhuxWX2A==} dependencies: base64-js: 1.5.1 ieee754: 1.2.1 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 - /bytes/3.0.0: + /bytes@3.0.0: resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==} engines: {node: '>= 0.8'} dev: false - /bytes/3.1.2: + /bytes@3.1.2: resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} engines: {node: '>= 0.8'} dev: false - /c8/7.13.0: + /c8@7.13.0: resolution: {integrity: sha512-/NL4hQTv1gBL6J6ei80zu3IiTrmePDKXKXOTLpHvcIWZTVYQlDhVWjjWvkhICylE8EwwnMVzDZugCvdx0/DIIA==} engines: {node: '>=10.12.0'} hasBin: true @@ -7764,21 +7819,21 @@ packages: yargs-parser: 20.2.9 dev: true - /cachedir/2.3.0: + /cachedir@2.3.0: resolution: {integrity: sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==} engines: {node: '>=6'} - /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.0 - /callsites/3.1.0: + /callsites@3.1.0: resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} engines: {node: '>=6'} - /camelcase-keys/6.2.2: + /camelcase-keys@6.2.2: resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} engines: {node: '>=8'} dependencies: @@ -7787,15 +7842,15 @@ packages: quick-lru: 4.0.1 dev: true - /camelcase/5.3.1: + /camelcase@5.3.1: resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} engines: {node: '>=6'} - /camelcase/6.3.0: + /camelcase@6.3.0: resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} engines: {node: '>=10'} - /caniuse-api/3.0.0: + /caniuse-api@3.0.0: resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} dependencies: browserslist: 4.21.5 @@ -7804,10 +7859,10 @@ packages: lodash.uniq: 4.5.0 dev: false - /caniuse-lite/1.0.30001457: + /caniuse-lite@1.0.30001457: resolution: {integrity: sha512-SDIV6bgE1aVbK6XyxdURbUE89zY7+k1BBBaOwYwkNCglXlel/E7mELiHC64HQ+W0xSKlqWhV9Wh7iHxUjMs4fA==} - /cardinal/2.1.1: + /cardinal@2.1.1: resolution: {integrity: sha512-JSr5eOgoEymtYHBjNWyjrMqet9Am2miJhlfKNdqLp6zoeAh0KN5dRAcxlecj5mAJrmQomgiOBj35xHLrFjqBpw==} hasBin: true dependencies: @@ -7815,10 +7870,10 @@ packages: redeyed: 2.1.1 dev: true - /caseless/0.12.0: + /caseless@0.12.0: resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==} - /chai/4.3.7: + /chai@4.3.7: resolution: {integrity: sha512-HLnAzZ2iupm25PlN0xFreAlBA5zaBSv3og0DdeGA4Ar6h6rJ3A0rolRUKJhSF2V10GZKDgWF/VmAEsNWjCRB+A==} engines: {node: '>=4'} dependencies: @@ -7830,14 +7885,14 @@ packages: pathval: 1.1.1 type-detect: 4.0.8 - /chain-registry/1.9.0: - resolution: {integrity: sha512-OIOcR/5wnhcOmsXtLlR7GCPoOhtD/gdYEYCod356+l8F6TAyphH6oVb7CzJhtUvNJK9RxH4U/S2xfELuk8ae0A==} + /chain-registry@1.10.0: + resolution: {integrity: sha512-JfdJufFq2F5tRpw1PMO32pv199xnZvwoSLKpW/wlbVOdpyLka7s4GwxgqYK+CPOdfCj5v6GiaGfWTq7slUemXg==} dependencies: '@babel/runtime': 7.21.0 '@chain-registry/types': 0.14.0 dev: false - /chakra-react-select/4.6.0_vwx6e76axjnb5mdydzlrs7wvmm: + /chakra-react-select@4.6.0(@chakra-ui/form-control@2.0.17)(@chakra-ui/icon@3.0.15)(@chakra-ui/layout@2.1.16)(@chakra-ui/media-query@3.2.12)(@chakra-ui/menu@2.1.9)(@chakra-ui/spinner@2.0.12)(@chakra-ui/system@2.5.1)(@emotion/react@11.10.6)(@types/react@18.0.28)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-Ckcs+ofX5LxCc0oOz4SorDIRqF/afd5tAQOa694JVJiIckYorUmZASEUSSDdXaZltsUAtJE11CUmEZgVVsk9Eg==} peerDependencies: '@chakra-ui/form-control': ^2.0.0 @@ -7851,22 +7906,22 @@ packages: react: ^18.0.0 react-dom: ^18.0.0 dependencies: - '@chakra-ui/form-control': 2.0.17_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/icon': 3.0.15_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/layout': 2.1.16_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/media-query': 3.2.12_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/menu': 2.1.9_rbqan4k27g4r7dhta4dxhf6vse - '@chakra-ui/spinner': 2.0.12_n3dxrjldmk5gnycgnw7noyo5tu - '@chakra-ui/system': 2.5.1_xqp3pgpqjlfxxa3zxu4zoc4fba - '@emotion/react': 11.10.6_pmekkgnqduwlme35zpnqhenc34 + '@chakra-ui/form-control': 2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/icon': 3.0.15(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/layout': 2.1.16(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/media-query': 3.2.12(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/menu': 2.1.9(@chakra-ui/system@2.5.1)(framer-motion@10.0.1)(react@18.2.0) + '@chakra-ui/spinner': 2.0.12(@chakra-ui/system@2.5.1)(react@18.2.0) + '@chakra-ui/system': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) + '@emotion/react': 11.10.6(@types/react@18.0.28)(react@18.2.0) react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 - react-select: 5.7.0_zula6vjvt3wdocc4mwcxqa6nzi + react-dom: 18.2.0(react@18.2.0) + react-select: 5.7.0(@types/react@18.0.28)(react-dom@18.2.0)(react@18.2.0) transitivePeerDependencies: - '@types/react' dev: false - /chalk/2.4.2: + /chalk@2.4.2: resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} engines: {node: '>=4'} dependencies: @@ -7874,7 +7929,7 @@ packages: escape-string-regexp: 1.0.5 supports-color: 5.5.0 - /chalk/4.1.0: + /chalk@4.1.0: resolution: {integrity: sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==} engines: {node: '>=10'} dependencies: @@ -7882,34 +7937,34 @@ 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 - /char-regex/1.0.2: + /char-regex@1.0.2: resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} engines: {node: '>=10'} - /charenc/0.0.2: + /charenc@0.0.2: resolution: {integrity: sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==} dev: false - /check-error/1.0.2: + /check-error@1.0.2: resolution: {integrity: sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA==} - /check-more-types/2.24.0: + /check-more-types@2.24.0: resolution: {integrity: sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==} engines: {node: '>= 0.8.0'} - /chokidar/3.5.3: + /chokidar@3.5.3: resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} engines: {node: '>= 8.10.0'} dependencies: @@ -7923,52 +7978,52 @@ packages: optionalDependencies: fsevents: 2.3.2 - /chownr/2.0.0: + /chownr@2.0.0: resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} engines: {node: '>=10'} dev: true - /chrome-trace-event/1.0.3: + /chrome-trace-event@1.0.3: resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==} engines: {node: '>=6.0'} dev: false - /ci-info/3.8.0: + /ci-info@3.8.0: resolution: {integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==} engines: {node: '>=8'} - /cipher-base/1.0.4: + /cipher-base@1.0.4: resolution: {integrity: sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==} dependencies: inherits: 2.0.4 safe-buffer: 5.2.1 dev: false - /cjs-module-lexer/1.2.2: + /cjs-module-lexer@1.2.2: resolution: {integrity: sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==} - /clean-stack/2.2.0: + /clean-stack@2.2.0: resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} engines: {node: '>=6'} - /clean-stack/4.2.0: + /clean-stack@4.2.0: resolution: {integrity: sha512-LYv6XPxoyODi36Dp976riBtSY27VmFo+MKqEU9QCCWyTrdEPDog+RWA7xQWHi6Vbp61j5c4cdzzX1NidnwtUWg==} engines: {node: '>=12'} dependencies: escape-string-regexp: 5.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-table3/0.6.3: + /cli-table3@0.6.3: resolution: {integrity: sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==} engines: {node: 10.* || >= 12.*} dependencies: @@ -7976,25 +8031,25 @@ packages: optionalDependencies: '@colors/colors': 1.5.0 - /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 - /client-only/0.0.1: + /client-only@0.0.1: resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} dev: false - /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: @@ -8002,7 +8057,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: @@ -8011,83 +8066,83 @@ packages: shallow-clone: 3.0.1 dev: false - /co/4.6.0: + /co@4.6.0: resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==} engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} - /collect-v8-coverage/1.0.1: + /collect-v8-coverage@1.0.1: resolution: {integrity: sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==} - /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==} - /color2k/2.0.2: + /color2k@2.0.2: resolution: {integrity: sha512-kJhwH5nAwb34tmyuqq/lgjEKzlFXn1U99NlnB6Ws4qVaERcRUYeYP1cBw6BJ4vxaWStAUEef4WMr7WjOCnBt8w==} dev: false - /colord/2.9.3: + /colord@2.9.3: resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==} dev: false - /colorette/2.0.19: + /colorette@2.0.19: resolution: {integrity: sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==} - /combined-stream/1.0.8: + /combined-stream@1.0.8: resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} engines: {node: '>= 0.8'} dependencies: delayed-stream: 1.0.0 - /commander/2.20.3: + /commander@2.20.3: resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} dev: false - /commander/5.1.0: + /commander@5.1.0: resolution: {integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==} engines: {node: '>= 6'} - /commander/7.2.0: + /commander@7.2.0: resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} engines: {node: '>= 10'} dev: false - /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==} dev: false - /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 - /compressible/2.0.18: + /compressible@2.0.18: resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==} engines: {node: '>= 0.6'} dependencies: mime-db: 1.52.0 dev: false - /compression/1.7.4: + /compression@1.7.4: resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==} engines: {node: '>= 0.8.0'} dependencies: @@ -8102,42 +8157,42 @@ packages: - supports-color dev: false - /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: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} - /config-chain/1.1.13: + /config-chain@1.1.13: resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==} dependencies: ini: 1.3.8 proto-list: 1.2.4 dev: true - /confusing-browser-globals/1.0.11: + /confusing-browser-globals@1.0.11: resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==} dev: true - /connect-history-api-fallback/2.0.0: + /connect-history-api-fallback@2.0.0: resolution: {integrity: sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==} engines: {node: '>=0.8'} dev: false - /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 dev: false - /content-type/1.0.5: + /content-type@1.0.5: resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==} engines: {node: '>= 0.6'} dev: false - /conventional-changelog-angular/5.0.13: + /conventional-changelog-angular@5.0.13: resolution: {integrity: sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==} engines: {node: '>=10'} dependencies: @@ -8145,7 +8200,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: @@ -8154,7 +8209,7 @@ packages: q: 1.5.1 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 @@ -8170,7 +8225,7 @@ packages: through2: 4.0.2 dev: true - /conventional-commits-filter/2.0.7: + /conventional-commits-filter@2.0.7: resolution: {integrity: sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA==} engines: {node: '>=10'} dependencies: @@ -8178,7 +8233,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 @@ -8191,35 +8246,34 @@ packages: through2: 4.0.2 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==} dev: true - /cookie-signature/1.0.6: + /cookie-signature@1.0.6: resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==} dev: false - /cookie/0.5.0: + /cookie@0.5.0: resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==} engines: {node: '>= 0.6'} dev: false - /copy-anything/2.0.6: + /copy-anything@2.0.6: resolution: {integrity: sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==} dependencies: is-what: 3.14.1 - dev: false - /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/10.2.4_webpack@5.75.0: + /copy-webpack-plugin@10.2.4(webpack@5.75.0): resolution: {integrity: sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg==} engines: {node: '>= 12.20.0'} peerDependencies: @@ -8234,15 +8288,15 @@ packages: webpack: 5.75.0 dev: false - /core-js-compat/3.28.0: + /core-js-compat@3.28.0: resolution: {integrity: sha512-myzPgE7QodMg4nnd3K1TDoES/nADRStM8Gpz0D6nhkwbmwEnE0ZGJgoWsvQ722FR8D7xS0n0LV556RcEicjTyg==} dependencies: browserslist: 4.21.5 - /core-util-is/1.0.2: + /core-util-is@1.0.2: resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==} - /cosmiconfig-typescript-loader/4.3.0_r66scxackjdo2gfsj5qbvkw6ay: + /cosmiconfig-typescript-loader@4.3.0(@types/node@18.14.2)(cosmiconfig@8.1.0)(ts-node@10.9.1)(typescript@4.9.5): resolution: {integrity: sha512-NTxV1MFfZDLPiBMjxbHRwSh5LaLcPMwNdCutmnHJCKoVnlvldPWlllonKwrsRJ5pYZBIBGRWWU2tfvzxgeSW5Q==} engines: {node: '>=12', npm: '>=6'} peerDependencies: @@ -8253,11 +8307,11 @@ packages: dependencies: '@types/node': 18.14.2 cosmiconfig: 8.1.0 - ts-node: 10.9.1_ellgaeuoqnti3hful2ny2iugba + ts-node: 10.9.1(@types/node@18.14.2)(typescript@4.9.5) typescript: 4.9.5 dev: true - /cosmiconfig/6.0.0: + /cosmiconfig@6.0.0: resolution: {integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==} engines: {node: '>=8'} dependencies: @@ -8267,7 +8321,7 @@ packages: path-type: 4.0.0 yaml: 1.10.2 - /cosmiconfig/7.1.0: + /cosmiconfig@7.1.0: resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} engines: {node: '>=10'} dependencies: @@ -8277,7 +8331,7 @@ packages: path-type: 4.0.0 yaml: 1.10.2 - /cosmiconfig/8.1.0: + /cosmiconfig@8.1.0: resolution: {integrity: sha512-0tLZ9URlPGU7JsKq0DQOQ3FoRsYX8xDZ7xMiATQfaiGMz7EHowNkbU9u1coAOmnh9p/1ySpm0RB3JNWRXM5GCg==} engines: {node: '>=14'} dependencies: @@ -8287,20 +8341,20 @@ packages: path-type: 4.0.0 dev: true - /cosmjs-types/0.5.2: + /cosmjs-types@0.5.2: resolution: {integrity: sha512-zxCtIJj8v3Di7s39uN4LNcN3HIE1z0B9Z0SPE8ZNQR0oSzsuSe1ACgxoFkvhkS7WBasCAFcglS11G2hyfd5tPg==} dependencies: long: 4.0.0 protobufjs: 6.11.3 dev: false - /cosmjs-types/0.6.1: + /cosmjs-types@0.6.1: resolution: {integrity: sha512-fRz6yzElHHBULDyLArF/G1UkkTWW4r3RondBUGnmSsZWYI5NpfDn32MVa5aRmpaaf4tJI2cbnXHs9fykwU7Ttg==} dependencies: long: 4.0.0 protobufjs: 6.11.3 - /create-hash/1.2.0: + /create-hash@1.2.0: resolution: {integrity: sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==} dependencies: cipher-base: 1.0.4 @@ -8310,7 +8364,7 @@ packages: sha.js: 2.4.11 dev: false - /create-hmac/1.1.7: + /create-hmac@1.1.7: resolution: {integrity: sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==} dependencies: cipher-base: 1.0.4 @@ -8321,10 +8375,10 @@ packages: sha.js: 2.4.11 dev: false - /create-require/1.1.1: + /create-require@1.1.1: resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} - /cross-spawn/7.0.3: + /cross-spawn@7.0.3: resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} engines: {node: '>= 8'} dependencies: @@ -8332,26 +8386,26 @@ 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-js/4.1.1: + /crypto-js@4.1.1: resolution: {integrity: sha512-o2JlM7ydqd3Qk9CA0L4NL6mTzU2sdx96a+oOfPu8Mkl/PK51vSyoi8/rQ8NknZtk44vq15lmhAj9CIAGwgeWKw==} dev: false - /crypto-random-string/2.0.0: + /crypto-random-string@2.0.0: resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==} engines: {node: '>=8'} dev: true - /css-box-model/1.2.1: + /css-box-model@1.2.1: resolution: {integrity: sha512-a7Vr4Q/kd/aw96bnJG332W9V9LkJO69JRcaCYDUqjp6/z0w6VcZjgAcTbgFxEPfBgdnAwlh3iwu+hLopa+flJw==} dependencies: tiny-invariant: 1.3.1 dev: false - /css-declaration-sorter/6.3.1_postcss@8.4.21: + /css-declaration-sorter@6.3.1(postcss@8.4.21): resolution: {integrity: sha512-fBffmak0bPAnyqc/HO8C3n2sHrp9wcqQz6ES9koRF2/mLOVAx9zIQ3Y7R29sYCteTPqMCwns4WYQoCX91Xl3+w==} engines: {node: ^10 || ^12 || >=14} peerDependencies: @@ -8360,24 +8414,24 @@ packages: postcss: 8.4.21 dev: false - /css-loader/6.7.3_webpack@5.75.0: + /css-loader@6.7.3(webpack@5.75.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.21 + icss-utils: 5.1.0(postcss@8.4.21) postcss: 8.4.21 - postcss-modules-extract-imports: 3.0.0_postcss@8.4.21 - postcss-modules-local-by-default: 4.0.0_postcss@8.4.21 - postcss-modules-scope: 3.0.0_postcss@8.4.21 - postcss-modules-values: 4.0.0_postcss@8.4.21 + postcss-modules-extract-imports: 3.0.0(postcss@8.4.21) + postcss-modules-local-by-default: 4.0.0(postcss@8.4.21) + postcss-modules-scope: 3.0.0(postcss@8.4.21) + postcss-modules-values: 4.0.0(postcss@8.4.21) postcss-value-parser: 4.2.0 semver: 7.3.8 webpack: 5.75.0 dev: false - /css-minimizer-webpack-plugin/3.4.1_webpack@5.75.0: + /css-minimizer-webpack-plugin@3.4.1(webpack@5.75.0): resolution: {integrity: sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==} engines: {node: '>= 12.13.0'} peerDependencies: @@ -8396,7 +8450,7 @@ packages: esbuild: optional: true dependencies: - cssnano: 5.1.15_postcss@8.4.21 + cssnano: 5.1.15(postcss@8.4.21) jest-worker: 27.5.1 postcss: 8.4.21 schema-utils: 4.0.0 @@ -8405,7 +8459,7 @@ packages: webpack: 5.75.0 dev: false - /css-select/4.3.0: + /css-select@4.3.0: resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==} dependencies: boolbase: 1.0.0 @@ -8415,7 +8469,7 @@ packages: nth-check: 2.1.1 dev: false - /css-tree/1.1.3: + /css-tree@1.1.3: resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==} engines: {node: '>=8.0.0'} dependencies: @@ -8423,64 +8477,63 @@ packages: source-map: 0.6.1 dev: false - /css-what/6.1.0: + /css-what@6.1.0: resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} engines: {node: '>= 6'} dev: false - /css/3.0.0: + /css@3.0.0: resolution: {integrity: sha512-DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ==} dependencies: inherits: 2.0.4 source-map: 0.6.1 source-map-resolve: 0.6.0 - dev: false - /cssesc/3.0.0: + /cssesc@3.0.0: resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} engines: {node: '>=4'} hasBin: true dev: false - /cssnano-preset-default/5.2.14_postcss@8.4.21: + /cssnano-preset-default@5.2.14(postcss@8.4.21): resolution: {integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - css-declaration-sorter: 6.3.1_postcss@8.4.21 - cssnano-utils: 3.1.0_postcss@8.4.21 + css-declaration-sorter: 6.3.1(postcss@8.4.21) + cssnano-utils: 3.1.0(postcss@8.4.21) postcss: 8.4.21 - postcss-calc: 8.2.4_postcss@8.4.21 - postcss-colormin: 5.3.1_postcss@8.4.21 - postcss-convert-values: 5.1.3_postcss@8.4.21 - postcss-discard-comments: 5.1.2_postcss@8.4.21 - postcss-discard-duplicates: 5.1.0_postcss@8.4.21 - postcss-discard-empty: 5.1.1_postcss@8.4.21 - postcss-discard-overridden: 5.1.0_postcss@8.4.21 - postcss-merge-longhand: 5.1.7_postcss@8.4.21 - postcss-merge-rules: 5.1.4_postcss@8.4.21 - postcss-minify-font-values: 5.1.0_postcss@8.4.21 - postcss-minify-gradients: 5.1.1_postcss@8.4.21 - postcss-minify-params: 5.1.4_postcss@8.4.21 - postcss-minify-selectors: 5.2.1_postcss@8.4.21 - postcss-normalize-charset: 5.1.0_postcss@8.4.21 - postcss-normalize-display-values: 5.1.0_postcss@8.4.21 - postcss-normalize-positions: 5.1.1_postcss@8.4.21 - postcss-normalize-repeat-style: 5.1.1_postcss@8.4.21 - postcss-normalize-string: 5.1.0_postcss@8.4.21 - postcss-normalize-timing-functions: 5.1.0_postcss@8.4.21 - postcss-normalize-unicode: 5.1.1_postcss@8.4.21 - postcss-normalize-url: 5.1.0_postcss@8.4.21 - postcss-normalize-whitespace: 5.1.1_postcss@8.4.21 - postcss-ordered-values: 5.1.3_postcss@8.4.21 - postcss-reduce-initial: 5.1.2_postcss@8.4.21 - postcss-reduce-transforms: 5.1.0_postcss@8.4.21 - postcss-svgo: 5.1.0_postcss@8.4.21 - postcss-unique-selectors: 5.1.1_postcss@8.4.21 - dev: false - - /cssnano-utils/3.1.0_postcss@8.4.21: + postcss-calc: 8.2.4(postcss@8.4.21) + postcss-colormin: 5.3.1(postcss@8.4.21) + postcss-convert-values: 5.1.3(postcss@8.4.21) + postcss-discard-comments: 5.1.2(postcss@8.4.21) + postcss-discard-duplicates: 5.1.0(postcss@8.4.21) + postcss-discard-empty: 5.1.1(postcss@8.4.21) + postcss-discard-overridden: 5.1.0(postcss@8.4.21) + postcss-merge-longhand: 5.1.7(postcss@8.4.21) + postcss-merge-rules: 5.1.4(postcss@8.4.21) + postcss-minify-font-values: 5.1.0(postcss@8.4.21) + postcss-minify-gradients: 5.1.1(postcss@8.4.21) + postcss-minify-params: 5.1.4(postcss@8.4.21) + postcss-minify-selectors: 5.2.1(postcss@8.4.21) + postcss-normalize-charset: 5.1.0(postcss@8.4.21) + postcss-normalize-display-values: 5.1.0(postcss@8.4.21) + postcss-normalize-positions: 5.1.1(postcss@8.4.21) + postcss-normalize-repeat-style: 5.1.1(postcss@8.4.21) + postcss-normalize-string: 5.1.0(postcss@8.4.21) + postcss-normalize-timing-functions: 5.1.0(postcss@8.4.21) + postcss-normalize-unicode: 5.1.1(postcss@8.4.21) + postcss-normalize-url: 5.1.0(postcss@8.4.21) + postcss-normalize-whitespace: 5.1.1(postcss@8.4.21) + postcss-ordered-values: 5.1.3(postcss@8.4.21) + postcss-reduce-initial: 5.1.2(postcss@8.4.21) + postcss-reduce-transforms: 5.1.0(postcss@8.4.21) + postcss-svgo: 5.1.0(postcss@8.4.21) + postcss-unique-selectors: 5.1.1(postcss@8.4.21) + dev: false + + /cssnano-utils@3.1.0(postcss@8.4.21): resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -8489,55 +8542,55 @@ packages: postcss: 8.4.21 dev: false - /cssnano/5.1.15_postcss@8.4.21: + /cssnano@5.1.15(postcss@8.4.21): 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.21 + cssnano-preset-default: 5.2.14(postcss@8.4.21) lilconfig: 2.1.0 postcss: 8.4.21 yaml: 1.10.2 dev: false - /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 dev: false - /cssom/0.3.8: + /cssom@0.3.8: resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==} dev: true - /cssom/0.5.0: + /cssom@0.5.0: resolution: {integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==} dev: true - /cssstyle/2.3.0: + /cssstyle@2.3.0: resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==} engines: {node: '>=8'} dependencies: cssom: 0.3.8 dev: true - /csstype/3.1.1: + /csstype@3.1.1: resolution: {integrity: sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==} - /curve25519-js/0.0.4: + /curve25519-js@0.0.4: resolution: {integrity: sha512-axn2UMEnkhyDUPWOwVKBMVIzSQy2ejH2xRGy1wq81dqRwApXfIzfbE3hIX0ZRFBIihf/KDqK158DLwESu4AK1w==} dev: false - /cypress/12.7.0: + /cypress@12.7.0: resolution: {integrity: sha512-7rq+nmhzz0u6yabCFyPtADU2OOrYt6pvUau9qV7xyifJ/hnsaw/vkr0tnLlcuuQKUAOC1v1M1e4Z0zG7S0IAvA==} engines: {node: ^14.0.0 || ^16.0.0 || >=18.0.0} hasBin: true requiresBuild: true dependencies: '@cypress/request': 2.88.11 - '@cypress/xvfb': 1.2.4_supports-color@8.1.1 + '@cypress/xvfb': 1.2.4(supports-color@8.1.1) '@types/node': 14.18.37 '@types/sinonjs__fake-timers': 8.1.1 '@types/sizzle': 2.3.3 @@ -8553,19 +8606,19 @@ packages: commander: 5.1.0 common-tags: 1.8.2 dayjs: 1.11.7 - 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 @@ -8579,22 +8632,22 @@ packages: untildify: 4.0.0 yauzl: 2.10.0 - /damerau-levenshtein/1.0.8: + /damerau-levenshtein@1.0.8: resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} dev: true - /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-urls/3.0.2: + /data-urls@3.0.2: resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==} engines: {node: '>=12'} dependencies: @@ -8603,14 +8656,14 @@ packages: whatwg-url: 11.0.0 dev: true - /dateformat/3.0.3: + /dateformat@3.0.3: resolution: {integrity: sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==} dev: true - /dayjs/1.11.7: + /dayjs@1.11.7: resolution: {integrity: sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==} - /debug/2.6.9: + /debug@2.6.9: resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} peerDependencies: supports-color: '*' @@ -8621,7 +8674,7 @@ packages: ms: 2.0.0 dev: false - /debug/3.1.0: + /debug@3.1.0: resolution: {integrity: sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==} peerDependencies: supports-color: '*' @@ -8630,19 +8683,8 @@ packages: optional: true dependencies: ms: 2.0.0 - dev: false - - /debug/3.2.7: - resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - dependencies: - ms: 2.1.2 - /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: '*' @@ -8653,18 +8695,7 @@ packages: ms: 2.1.2 supports-color: 8.1.1 - /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: @@ -8676,7 +8707,7 @@ packages: ms: 2.1.2 supports-color: 8.1.1 - /decamelize-keys/1.1.1: + /decamelize-keys@1.1.1: resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} engines: {node: '>=0.10.0'} dependencies: @@ -8684,35 +8715,34 @@ 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: false - /decimal.js/10.4.3: + /decimal.js@10.4.3: resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==} dev: true - /decode-uri-component/0.2.2: + /decode-uri-component@0.2.2: resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==} engines: {node: '>=0.10'} - dev: false - /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 - /deep-equal/2.2.0: + /deep-equal@2.2.0: resolution: {integrity: sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw==} dependencies: call-bind: 1.0.2 @@ -8734,37 +8764,37 @@ packages: which-typed-array: 1.1.9 dev: true - /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.0: + /deepmerge@4.3.0: resolution: {integrity: sha512-z2wJZXrmeHdvYJp/Ux55wIjqo81G5Bp4c+oELTW+7ar6SogWHajt5a9gO3s3IDaGSAXjDk0vlQKN3rms8ab3og==} engines: {node: '>=0.10.0'} - /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 dev: false - /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 - /del/6.1.1: + /del@6.1.1: resolution: {integrity: sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==} engines: {node: '>=10'} dependencies: @@ -8778,110 +8808,110 @@ packages: slash: 3.0.0 dev: true - /delay/4.4.1: + /delay@4.4.1: resolution: {integrity: sha512-aL3AhqtfhOlT/3ai6sWXeqwnw63ATNpnUiN4HL7x9q+My5QtHlO3OIkasmug9LKzpheLdmUKGRKnYXYAS7FQkQ==} engines: {node: '>=6'} dev: false - /delayed-stream/1.0.0: + /delayed-stream@1.0.0: resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} engines: {node: '>=0.4.0'} - /depd/1.1.2: + /depd@1.1.2: resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==} engines: {node: '>= 0.6'} dev: false - /depd/2.0.0: + /depd@2.0.0: resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} engines: {node: '>= 0.8'} dev: false - /deprecation/2.3.1: + /deprecation@2.3.1: resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==} dev: true - /destroy/1.2.0: + /destroy@1.2.0: resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} dev: false - /detect-browser/5.3.0: + /detect-browser@5.3.0: resolution: {integrity: sha512-53rsFbGdwMwlF7qvCt0ypLM5V5/Mbl0szB7GPN8y9NCcbknYOeVVXdrXEq+90IwAfrrzt6Hd+u2E2ntakICU8w==} dev: false - /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==} dev: false - /detect-node/2.1.0: + /detect-node@2.1.0: resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==} dev: false - /diff-sequences/28.1.1: + /diff-sequences@28.1.1: resolution: {integrity: sha512-FU0iFaH/E23a+a718l8Qa/19bF9p06kgE0KipMOMadwa3SjnaElKzPaUC0vnibs6/B/9ni97s61mcejk8W1fQw==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - /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} dev: true - /diff/4.0.2: + /diff@4.0.2: resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} engines: {node: '>=0.3.1'} - /diff/5.0.0: + /diff@5.0.0: resolution: {integrity: sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==} engines: {node: '>=0.3.1'} dev: false - /dir-glob/3.0.1: + /dir-glob@3.0.1: resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} engines: {node: '>=8'} dependencies: path-type: 4.0.0 - /dns-equal/1.0.0: + /dns-equal@1.0.0: resolution: {integrity: sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==} dev: false - /dns-packet/5.4.0: + /dns-packet@5.4.0: resolution: {integrity: sha512-EgqGeaBB8hLiHLZtp/IbaDQTL8pZ0+IvwzSHA6d7VyMDM+B9hgddEMa9xjK5oYnw0ci0JQ6g2XCD7/f6cafU6g==} engines: {node: '>=6'} dependencies: '@leichtgewicht/ip-codec': 2.0.4 dev: false - /doctrine/2.1.0: + /doctrine@2.1.0: resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} engines: {node: '>=0.10.0'} dependencies: esutils: 2.0.3 dev: true - /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==} dev: true - /dom-helpers/5.2.1: + /dom-helpers@5.2.1: resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==} dependencies: '@babel/runtime': 7.21.0 csstype: 3.1.1 dev: false - /dom-serializer/1.4.1: + /dom-serializer@1.4.1: resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==} dependencies: domelementtype: 2.3.0 @@ -8889,25 +8919,25 @@ packages: entities: 2.2.0 dev: false - /domelementtype/2.3.0: + /domelementtype@2.3.0: resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} dev: false - /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 dev: false - /domutils/2.8.0: + /domutils@2.8.0: resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==} dependencies: dom-serializer: 1.4.1 @@ -8915,26 +8945,26 @@ packages: domhandler: 4.3.1 dev: false - /dot-prop/5.3.0: + /dot-prop@5.3.0: resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} engines: {node: '>=8'} dependencies: is-obj: 2.0.0 dev: true - /dotenv/10.0.0: + /dotenv@10.0.0: resolution: {integrity: sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==} engines: {node: '>=10'} - /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 - /duplexify/4.1.2: + /duplexer@0.1.2: + resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} + + /duplexify@4.1.2: resolution: {integrity: sha512-fz3OjcNCHmRP12MJoZMPglx8m4rrFP8rovnk4vT8Fs+aonZoCwGg10dSsQsfP/E62eZcPTMSMP6686fu9Qlqtw==} dependencies: end-of-stream: 1.4.4 @@ -8943,27 +8973,27 @@ packages: stream-shift: 1.0.1 dev: false - /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 - /ee-first/1.1.1: + /ee-first@1.1.1: resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} dev: false - /ejs/3.1.8: + /ejs@3.1.8: resolution: {integrity: sha512-/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ==} engines: {node: '>=0.10.0'} hasBin: true dependencies: jake: 10.8.5 - /electron-to-chromium/1.4.311: + /electron-to-chromium@1.4.311: resolution: {integrity: sha512-RoDlZufvrtr2Nx3Yx5MB8jX3aHIxm8nRWPJm3yVvyHmyKaRvn90RjzB6hNnt0AkhS3IInJdyRfQb4mWhPvUjVw==} - /elliptic/6.5.4: + /elliptic@6.5.4: resolution: {integrity: sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==} dependencies: bn.js: 4.12.0 @@ -8975,59 +9005,59 @@ packages: minimalistic-crypto-utils: 1.0.1 dev: false - /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 - /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==} dev: true - /emojis-list/3.0.0: + /emojis-list@3.0.0: resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==} engines: {node: '>= 4'} dev: false - /encodeurl/1.0.2: + /encodeurl@1.0.2: resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} engines: {node: '>= 0.8'} dev: false - /end-of-stream/1.4.4: + /end-of-stream@1.4.4: resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} dependencies: once: 1.4.0 - /enhanced-resolve/5.12.0: + /enhanced-resolve@5.12.0: resolution: {integrity: sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==} engines: {node: '>=10.13.0'} dependencies: graceful-fs: 4.2.10 tapable: 2.2.1 - /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 - /entities/2.2.0: + /entities@2.2.0: resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} dev: false - /entities/4.4.0: + /entities@4.4.0: resolution: {integrity: sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==} engines: {node: '>=0.12'} - /env-ci/8.0.0: + /env-ci@8.0.0: resolution: {integrity: sha512-W+3BqGZozFua9MPeXpmTm5eYEBtGgL76jGu/pwMVp/L8PdECSCEWaIp7d4Mw7kuUrbUldK0oV0bNd6ZZjLiMiA==} engines: {node: ^16.10 || >=18} dependencies: @@ -9035,21 +9065,20 @@ packages: java-properties: 1.0.2 dev: true - /errno/0.1.8: + /errno@0.1.8: resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==} hasBin: true requiresBuild: true dependencies: prr: 1.0.1 - dev: false 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 - /es-abstract/1.21.1: + /es-abstract@1.21.1: resolution: {integrity: sha512-QudMsPOz86xYz/1dG1OuGBKOELjCh99IIWHLzy5znUB6j8xG2yMA7bfTV86VSqKF+Y/H08vQPR+9jyXpuC6hfg==} engines: {node: '>= 0.4'} dependencies: @@ -9088,7 +9117,7 @@ packages: which-typed-array: 1.1.9 dev: true - /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 @@ -9102,11 +9131,11 @@ packages: stop-iteration-iterator: 1.0.0 dev: true - /es-module-lexer/0.9.3: + /es-module-lexer@0.9.3: resolution: {integrity: sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==} dev: false - /es-set-tostringtag/2.0.1: + /es-set-tostringtag@2.0.1: resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==} engines: {node: '>= 0.4'} dependencies: @@ -9115,13 +9144,13 @@ packages: has-tostringtag: 1.0.0 dev: true - /es-shim-unscopables/1.0.0: + /es-shim-unscopables@1.0.0: resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==} dependencies: has: 1.0.3 dev: true - /es-to-primitive/1.2.1: + /es-to-primitive@1.2.1: resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} engines: {node: '>= 0.4'} dependencies: @@ -9130,7 +9159,7 @@ packages: is-symbol: 1.0.4 dev: true - /esbuild/0.16.17: + /esbuild@0.16.17: resolution: {integrity: sha512-G8LEkV0XzDMNwXKgM0Jwu3nY3lSTwSGY6XbxM9cr9+s0T/qSV1q1JVPBGzm3dcjhCic9+emZDmMffkwgPeOeLg==} engines: {node: '>=12'} hasBin: true @@ -9160,32 +9189,32 @@ packages: '@esbuild/win32-x64': 0.16.17 dev: true - /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==} dev: false - /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/2.0.0: + /escodegen@2.0.0: resolution: {integrity: sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==} engines: {node: '>=6.0'} hasBin: true @@ -9198,7 +9227,7 @@ packages: source-map: 0.6.1 dev: true - /eslint-config-next/13.1.1_hx5tgzcbd2ycqgjduqhliuc3jm: + /eslint-config-next@13.1.1(eslint@8.15.0)(typescript@4.9.5): resolution: {integrity: sha512-/5S2XGWlGaiqrRhzpn51ux5JUSLwx8PVK2keLi5xk7QmhfYB8PqE6R6SlVw6hgnf/VexvUXSrlNJ/su00NhtHQ==} peerDependencies: eslint: ^7.23.0 || ^8.0.0 @@ -9209,21 +9238,21 @@ packages: dependencies: '@next/eslint-plugin-next': 13.1.1 '@rushstack/eslint-patch': 1.2.0 - '@typescript-eslint/parser': 5.53.0_hx5tgzcbd2ycqgjduqhliuc3jm + '@typescript-eslint/parser': 5.53.0(eslint@8.15.0)(typescript@4.9.5) eslint: 8.15.0 eslint-import-resolver-node: 0.3.7 - eslint-import-resolver-typescript: 3.5.3_ot6yvysaabq4ooqfuxt3idoqny - eslint-plugin-import: 2.27.5_cqcidetll7fyfepfvtlyiajt34 - eslint-plugin-jsx-a11y: 6.7.1_eslint@8.15.0 - eslint-plugin-react: 7.32.2_eslint@8.15.0 - eslint-plugin-react-hooks: 4.6.0_eslint@8.15.0 + eslint-import-resolver-typescript: 3.5.3(eslint-plugin-import@2.27.5)(eslint@8.15.0) + eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.53.0)(eslint-import-resolver-typescript@3.5.3)(eslint@8.15.0) + eslint-plugin-jsx-a11y: 6.7.1(eslint@8.15.0) + eslint-plugin-react: 7.32.2(eslint@8.15.0) + eslint-plugin-react-hooks: 4.6.0(eslint@8.15.0) typescript: 4.9.5 transitivePeerDependencies: - eslint-import-resolver-webpack - supports-color dev: true - /eslint-config-prettier/8.1.0_eslint@8.15.0: + /eslint-config-prettier@8.1.0(eslint@8.15.0): resolution: {integrity: sha512-oKMhGv3ihGbCIimCAjqkdzx2Q+jthoqnXSP+d86M9tptwugycmTFdVR4IpLgq2c4SHifbwO90z2fQ8/Aio73yw==} hasBin: true peerDependencies: @@ -9232,27 +9261,27 @@ packages: eslint: 8.15.0 dev: true - /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.11.0 resolve: 1.22.1 transitivePeerDependencies: - supports-color dev: true - /eslint-import-resolver-typescript/3.5.3_ot6yvysaabq4ooqfuxt3idoqny: + /eslint-import-resolver-typescript@3.5.3(eslint-plugin-import@2.27.5)(eslint@8.15.0): resolution: {integrity: sha512-njRcKYBc3isE42LaTcJNVANR3R99H9bAxBDMNDr2W7yq5gYPxbU3MkdhsQukxZ/Xg9C2vcyLlDsbKfRDg0QvCQ==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: eslint: '*' eslint-plugin-import: '*' dependencies: - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) enhanced-resolve: 5.12.0 eslint: 8.15.0 - eslint-plugin-import: 2.27.5_cqcidetll7fyfepfvtlyiajt34 + eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.53.0)(eslint-import-resolver-typescript@3.5.3)(eslint@8.15.0) get-tsconfig: 4.4.0 globby: 13.1.3 is-core-module: 2.11.0 @@ -9262,7 +9291,7 @@ packages: - supports-color dev: true - /eslint-module-utils/2.7.4_i2y2accj43qocxnlvneeszaidu: + /eslint-module-utils@2.7.4(@typescript-eslint/parser@5.53.0)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.5.3)(eslint@8.15.0): resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==} engines: {node: '>=4'} peerDependencies: @@ -9283,45 +9312,16 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 5.53.0_hx5tgzcbd2ycqgjduqhliuc3jm - debug: 3.2.7 + '@typescript-eslint/parser': 5.53.0(eslint@8.15.0)(typescript@4.9.5) + debug: 3.2.7(supports-color@8.1.1) eslint: 8.15.0 eslint-import-resolver-node: 0.3.7 + eslint-import-resolver-typescript: 3.5.3(eslint-plugin-import@2.27.5)(eslint@8.15.0) transitivePeerDependencies: - supports-color dev: true - /eslint-module-utils/2.7.4_pesfmfu3p67rdodcnvlzghf56m: - resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==} - engines: {node: '>=4'} - peerDependencies: - '@typescript-eslint/parser': '*' - eslint: '*' - eslint-import-resolver-node: '*' - eslint-import-resolver-typescript: '*' - eslint-import-resolver-webpack: '*' - peerDependenciesMeta: - '@typescript-eslint/parser': - optional: true - eslint: - optional: true - eslint-import-resolver-node: - optional: true - eslint-import-resolver-typescript: - optional: true - eslint-import-resolver-webpack: - optional: true - dependencies: - '@typescript-eslint/parser': 5.53.0_hx5tgzcbd2ycqgjduqhliuc3jm - debug: 3.2.7 - eslint: 8.15.0 - eslint-import-resolver-node: 0.3.7 - eslint-import-resolver-typescript: 3.5.3_ot6yvysaabq4ooqfuxt3idoqny - transitivePeerDependencies: - - supports-color - dev: true - - /eslint-plugin-cypress/2.12.1_eslint@8.15.0: + /eslint-plugin-cypress@2.12.1(eslint@8.15.0): resolution: {integrity: sha512-c2W/uPADl5kospNDihgiLc7n87t5XhUbFDoTl6CfVkmG+kDAb5Ux10V9PoLPu9N+r7znpc+iQlcmAqT1A/89HA==} peerDependencies: eslint: '>= 3.2.1' @@ -9330,40 +9330,7 @@ packages: globals: 11.12.0 dev: true - /eslint-plugin-import/2.27.5_cqcidetll7fyfepfvtlyiajt34: - resolution: {integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==} - engines: {node: '>=4'} - peerDependencies: - '@typescript-eslint/parser': '*' - eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 - peerDependenciesMeta: - '@typescript-eslint/parser': - optional: true - dependencies: - '@typescript-eslint/parser': 5.53.0_hx5tgzcbd2ycqgjduqhliuc3jm - array-includes: 3.1.6 - array.prototype.flat: 1.3.1 - array.prototype.flatmap: 1.3.1 - debug: 3.2.7 - doctrine: 2.1.0 - eslint: 8.15.0 - eslint-import-resolver-node: 0.3.7 - eslint-module-utils: 2.7.4_pesfmfu3p67rdodcnvlzghf56m - has: 1.0.3 - is-core-module: 2.11.0 - is-glob: 4.0.3 - minimatch: 3.1.2 - object.values: 1.1.6 - resolve: 1.22.1 - semver: 6.3.0 - tsconfig-paths: 3.14.2 - transitivePeerDependencies: - - eslint-import-resolver-typescript - - eslint-import-resolver-webpack - - supports-color - dev: true - - /eslint-plugin-import/2.27.5_nfedycquve3k2nl747u4e5phru: + /eslint-plugin-import@2.27.5(@typescript-eslint/parser@5.53.0)(eslint-import-resolver-typescript@3.5.3)(eslint@8.15.0): resolution: {integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==} engines: {node: '>=4'} peerDependencies: @@ -9373,15 +9340,15 @@ packages: '@typescript-eslint/parser': optional: true dependencies: - '@typescript-eslint/parser': 5.53.0_hx5tgzcbd2ycqgjduqhliuc3jm + '@typescript-eslint/parser': 5.53.0(eslint@8.15.0)(typescript@4.9.5) array-includes: 3.1.6 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.15.0 eslint-import-resolver-node: 0.3.7 - eslint-module-utils: 2.7.4_i2y2accj43qocxnlvneeszaidu + eslint-module-utils: 2.7.4(@typescript-eslint/parser@5.53.0)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.5.3)(eslint@8.15.0) has: 1.0.3 is-core-module: 2.11.0 is-glob: 4.0.3 @@ -9396,7 +9363,7 @@ packages: - supports-color dev: true - /eslint-plugin-jsx-a11y/6.7.1_eslint@8.15.0: + /eslint-plugin-jsx-a11y@6.7.1(eslint@8.15.0): resolution: {integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==} engines: {node: '>=4.0'} peerDependencies: @@ -9421,7 +9388,7 @@ packages: semver: 6.3.0 dev: true - /eslint-plugin-react-hooks/4.6.0_eslint@8.15.0: + /eslint-plugin-react-hooks@4.6.0(eslint@8.15.0): resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} engines: {node: '>=10'} peerDependencies: @@ -9430,7 +9397,7 @@ packages: eslint: 8.15.0 dev: true - /eslint-plugin-react/7.32.2_eslint@8.15.0: + /eslint-plugin-react@7.32.2(eslint@8.15.0): resolution: {integrity: sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==} engines: {node: '>=4'} peerDependencies: @@ -9454,21 +9421,21 @@ packages: string.prototype.matchall: 4.0.8 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 - /eslint-utils/3.0.0_eslint@8.15.0: + /eslint-utils@3.0.0(eslint@8.15.0): resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} peerDependencies: @@ -9477,15 +9444,15 @@ packages: eslint: 8.15.0 eslint-visitor-keys: 2.1.0 - /eslint-visitor-keys/2.1.0: + /eslint-visitor-keys@2.1.0: resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} engines: {node: '>=10'} - /eslint-visitor-keys/3.3.0: + /eslint-visitor-keys@3.3.0: resolution: {integrity: sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - /eslint/8.15.0: + /eslint@8.15.0: resolution: {integrity: sha512-GG5USZ1jhCu8HJkzGgeK8/+RGnHaNYZGrGDzUtigK3BsGESW/rs2az23XqE0WVwDxy1VRvvjSSGu5nB0Bu+6SA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true @@ -9495,11 +9462,11 @@ packages: ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.1.1 - eslint-utils: 3.0.0_eslint@8.15.0 + eslint-utils: 3.0.0(eslint@8.15.0) eslint-visitor-keys: 3.3.0 espree: 9.4.1 esquery: 1.4.2 @@ -9528,65 +9495,65 @@ packages: transitivePeerDependencies: - supports-color - /espree/9.4.1: + /espree@9.4.1: resolution: {integrity: sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: acorn: 8.8.2 - acorn-jsx: 5.3.2_acorn@8.8.2 + acorn-jsx: 5.3.2(acorn@8.8.2) eslint-visitor-keys: 3.3.0 - /esprima/4.0.1: + /esprima@4.0.1: resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} engines: {node: '>=4'} hasBin: true - /esquery/1.4.2: + /esquery@1.4.2: resolution: {integrity: sha512-JVSoLdTlTDkmjFmab7H/9SL9qGSyjElT3myyKp7krqjVFQCDLmj1QFaCLRFBszBKI0XVZaiiXvuPIX3ZwHe1Ng==} engines: {node: '>=0.10'} dependencies: estraverse: 5.3.0 - /esrecurse/4.3.0: + /esrecurse@4.3.0: resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} engines: {node: '>=4.0'} dependencies: estraverse: 5.3.0 - /estraverse/4.3.0: + /estraverse@4.3.0: resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} engines: {node: '>=4.0'} - /estraverse/5.3.0: + /estraverse@5.3.0: resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} engines: {node: '>=4.0'} - /estree-walker/2.0.2: + /estree-walker@2.0.2: resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} 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'} dev: false - /eventemitter2/6.4.7: + /eventemitter2@6.4.7: resolution: {integrity: sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg==} - /eventemitter3/4.0.7: + /eventemitter3@4.0.7: resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} dev: false - /events/3.3.0: + /events@3.3.0: resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} engines: {node: '>=0.8.x'} dev: false - /execa/4.1.0: + /execa@4.1.0: resolution: {integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==} engines: {node: '>=10'} dependencies: @@ -9600,7 +9567,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: @@ -9614,7 +9581,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: @@ -9629,17 +9596,17 @@ 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 - /exit/0.1.2: + /exit@0.1.2: resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==} engines: {node: '>= 0.8.0'} - /expect/28.1.3: + /expect@28.1.3: resolution: {integrity: sha512-eEh0xn8HlsuOBxFgIss+2mX85VAS4Qy3OSkjV7rlBWljtA4oWH37glVGyOZSZvErDT/yBywZdPGwCXuTvSG85g==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: @@ -9649,7 +9616,7 @@ packages: jest-message-util: 28.1.3 jest-util: 28.1.3 - /expect/29.4.3: + /expect@29.4.3: resolution: {integrity: sha512-uC05+Q7eXECFpgDrHdXA4k2rpMyStAYPItEDLyQDo5Ta7fVkJnNA/4zh/OIVkVVNZ1oOK1PipQoyNjuZ6sz6Dg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -9660,7 +9627,7 @@ packages: jest-util: 29.4.3 dev: true - /express/4.18.2: + /express@4.18.2: resolution: {integrity: sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==} engines: {node: '>= 0.10.0'} dependencies: @@ -9699,15 +9666,15 @@ packages: - supports-color dev: false - /extend/3.0.2: + /extend@3.0.2: resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} - /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: @@ -9715,24 +9682,24 @@ 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} - /fast-deep-equal/3.1.1: + /fast-deep-equal@3.1.1: resolution: {integrity: sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA==} dev: false - /fast-deep-equal/3.1.3: + /fast-deep-equal@3.1.3: resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} - /fast-fuzzy/1.12.0: + /fast-fuzzy@1.12.0: resolution: {integrity: sha512-sXxGgHS+ubYpsdLnvOvJ9w5GYYZrtL9mkosG3nfuD446ahvoWEsSKBP7ieGmWIKVLnaxRDgUJkZMdxRgA2Ni+Q==} dependencies: graphemesplit: 2.4.4 dev: false - /fast-glob/3.2.12: + /fast-glob@3.2.12: resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==} engines: {node: '>=8.6.0'} dependencies: @@ -9742,7 +9709,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: @@ -9752,53 +9719,53 @@ packages: merge2: 1.4.1 micromatch: 4.0.5 - /fast-json-stable-stringify/2.1.0: + /fast-json-stable-stringify@2.1.0: resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} - /fast-levenshtein/2.0.6: + /fast-levenshtein@2.0.6: resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} - /fast-redact/3.1.2: + /fast-redact@3.1.2: resolution: {integrity: sha512-+0em+Iya9fKGfEQGcd62Yv6onjBmmhV1uh86XVfOU8VwAe6kaFdQCWI9s0/Nnugx5Vd9tdbZ7e6gE2tR9dzXdw==} engines: {node: '>=6'} dev: false - /fastq/1.15.0: + /fastq@1.15.0: resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==} dependencies: reusify: 1.0.4 - /faye-websocket/0.11.4: + /faye-websocket@0.11.4: resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==} engines: {node: '>=0.8.0'} dependencies: websocket-driver: 0.7.4 dev: false - /fb-watchman/2.0.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 - /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 - /figures/5.0.0: + /figures@5.0.0: resolution: {integrity: sha512-ej8ksPF4x6e5wvK9yevct0UCXh8TTFlWGVLlgjZuoBH1HwjIfKE/IdL5mq89sFA7zELi1VhKpmtDnrs7zWyeyg==} engines: {node: '>=14'} dependencies: @@ -9806,13 +9773,13 @@ packages: is-unicode-supported: 1.3.0 dev: true - /file-entry-cache/6.0.1: + /file-entry-cache@6.0.1: resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} engines: {node: ^10.12.0 || >=12.0.0} dependencies: flat-cache: 3.0.4 - /file-loader/6.2.0_webpack@5.75.0: + /file-loader@6.2.0(webpack@5.75.0): resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -9823,27 +9790,27 @@ packages: webpack: 5.75.0 dev: false - /file-uri-to-path/1.0.0: + /file-uri-to-path@1.0.0: resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==} dev: false - /filelist/1.0.4: + /filelist@1.0.4: resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} dependencies: minimatch: 5.1.6 - /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.2.0: + /finalhandler@1.2.0: resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==} engines: {node: '>= 0.8'} dependencies: @@ -9858,7 +9825,7 @@ packages: - supports-color dev: false - /find-cache-dir/3.3.2: + /find-cache-dir@3.3.2: resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==} engines: {node: '>=8'} dependencies: @@ -9867,31 +9834,31 @@ packages: pkg-dir: 4.2.0 dev: false - /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/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: @@ -9899,35 +9866,35 @@ packages: path-exists: 5.0.0 dev: true - /find-versions/5.1.0: + /find-versions@5.1.0: resolution: {integrity: sha512-+iwzCJ7C5v5KgcBuueqVoNiHVoQpwiUK5XFLjf0affFTep+Wcw93tPvmb8tqujDNmzhBDPddnWV/qgWSXgq+Hg==} engines: {node: '>=12'} dependencies: semver-regex: 4.0.5 dev: true - /flat-cache/3.0.4: + /flat-cache@3.0.4: resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==} engines: {node: ^10.12.0 || >=12.0.0} dependencies: flatted: 3.2.7 rimraf: 3.0.2 - /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==} - /focus-lock/0.11.6: + /focus-lock@0.11.6: resolution: {integrity: sha512-KSuV3ur4gf2KqMNoZx3nXNVhqCkn42GuTYCX4tXPEwf0MjpFQmNMiN6m7dXaUXgIoivL6/65agoUMg4RLS0Vbg==} engines: {node: '>=10'} dependencies: tslib: 2.5.0 dev: false - /follow-redirects/1.15.2: + /follow-redirects@1.15.2: resolution: {integrity: sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==} engines: {node: '>=4.0'} peerDependencies: @@ -9936,13 +9903,13 @@ 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 dev: true - /foreground-child/2.0.0: + /foreground-child@2.0.0: resolution: {integrity: sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==} engines: {node: '>=8.0.0'} dependencies: @@ -9950,10 +9917,10 @@ packages: signal-exit: 3.0.7 dev: true - /forever-agent/0.6.1: + /forever-agent@0.6.1: resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==} - /fork-ts-checker-webpack-plugin/7.2.13_hhrrucqyg4eysmfpujvov2ym5u: + /fork-ts-checker-webpack-plugin@7.2.13(typescript@4.9.5)(webpack@5.75.0): resolution: {integrity: sha512-fR3WRkOb4bQdWB/y7ssDUlVdrclvwtyCUIHCfivAoYxq9dF7XfrDKbMdZIfwJ7hxIAqkYSGeU7lLJE6xrxIBdg==} engines: {node: '>=12.13.0', yarn: '>=1.0.0'} peerDependencies: @@ -9980,7 +9947,7 @@ packages: webpack: 5.75.0 dev: false - /form-data/2.3.3: + /form-data@2.3.3: resolution: {integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==} engines: {node: '>= 0.12'} dependencies: @@ -9988,7 +9955,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: @@ -9996,63 +9963,63 @@ packages: combined-stream: 1.0.8 mime-types: 2.1.35 - /forwarded/0.2.0: + /forwarded@0.2.0: resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} engines: {node: '>= 0.6'} dev: false - /fraction.js/4.2.0: + /fraction.js@4.2.0: resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==} dev: false - /framer-motion/10.0.1_biqbaboplfbrettd7655fr4n2y: + /framer-motion@10.0.1(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-/N7gBA9gH8PkStyNQ67P/lx8UhL/7Y8z9Ku7FfgOF77sSG8wu8781kX7I5ZUgflRRtQXo8qH4Rev23004G1zcQ==} peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 dependencies: react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 + react-dom: 18.2.0(react@18.2.0) tslib: 2.5.0 optionalDependencies: '@emotion/is-prop-valid': 0.8.8 dev: false - /framer-motion/9.1.7_biqbaboplfbrettd7655fr4n2y: + /framer-motion@9.1.7(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-nKxBkIO4IPkMEqcBbbATxsVjwPYShKl051yhBv9628iAH6JLeHD0siBHxkL62oQzMC1+GNX73XtPjgP753ufuw==} peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 dependencies: react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 + react-dom: 18.2.0(react@18.2.0) tslib: 2.5.0 optionalDependencies: '@emotion/is-prop-valid': 0.8.8 dev: false - /framesync/6.1.2: + /framesync@6.1.2: resolution: {integrity: sha512-jBTqhX6KaQVDyus8muwZbBeGGP0XgujBRbQ7gM7BRdS3CadCZIHiawyzYLnafYcvZIh5j8WE7cxZKFn7dXhu9g==} dependencies: tslib: 2.4.0 dev: false - /fresh/0.5.2: + /fresh@0.5.2: resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} engines: {node: '>= 0.6'} 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 - /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: @@ -10060,7 +10027,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: @@ -10068,7 +10035,7 @@ packages: jsonfile: 6.1.0 universalify: 2.0.0 - /fs-extra/9.1.0: + /fs-extra@9.1.0: resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} engines: {node: '>=10'} dependencies: @@ -10077,31 +10044,31 @@ 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 dev: true - /fs-monkey/1.0.3: + /fs-monkey@1.0.3: resolution: {integrity: sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==} dev: false - /fs.realpath/1.0.0: + /fs.realpath@1.0.0: resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} - /fsevents/2.3.2: + /fsevents@2.3.2: resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} os: [darwin] requiresBuild: true optional: true - /function-bind/1.1.1: + /function-bind@1.1.1: resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} - /function.prototype.name/1.1.5: + /function.prototype.name@1.1.5: resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==} engines: {node: '>= 0.4'} dependencies: @@ -10111,51 +10078,51 @@ packages: functions-have-names: 1.2.3 dev: true - /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==} 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==} - /get-intrinsic/1.2.0: + /get-intrinsic@1.2.0: resolution: {integrity: sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==} dependencies: function-bind: 1.1.1 has: 1.0.3 has-symbols: 1.0.3 - /get-nonce/1.0.1: + /get-nonce@1.0.1: resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==} engines: {node: '>=6'} dev: false - /get-package-type/0.1.0: + /get-package-type@0.1.0: resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} engines: {node: '>=8.0.0'} - /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: @@ -10163,21 +10130,21 @@ packages: get-intrinsic: 1.2.0 dev: true - /get-tsconfig/4.4.0: + /get-tsconfig@4.4.0: resolution: {integrity: sha512-0Gdjo/9+FzsYhXCEFueo2aY1z1tpXrxWZzP7k8ul9qt1U5o8rYJwTJYmaeHdrVosYIVYkOy2iwCJ9FdpocJhPQ==} 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 - /git-log-parser/1.2.0: + /git-log-parser@1.2.0: resolution: {integrity: sha512-rnCVNfkTL8tdNryFuaY0fYiBWEBcgF748O6ZI61rslBvr2o7U65c2/6npCRqH40vuAhtgtDiqLTJjBVdrejCzA==} dependencies: argv-formatter: 1.0.0 @@ -10188,7 +10155,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 @@ -10200,23 +10167,23 @@ packages: through2: 4.0.2 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==} dev: false - /glob/7.1.4: + /glob@7.1.4: resolution: {integrity: sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==} dependencies: fs.realpath: 1.0.0 @@ -10226,7 +10193,7 @@ packages: once: 1.4.0 path-is-absolute: 1.0.1 - /glob/7.1.7: + /glob@7.1.7: resolution: {integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==} dependencies: fs.realpath: 1.0.0 @@ -10237,7 +10204,7 @@ packages: path-is-absolute: 1.0.1 dev: true - /glob/7.2.0: + /glob@7.2.0: resolution: {integrity: sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==} dependencies: fs.realpath: 1.0.0 @@ -10248,7 +10215,7 @@ packages: path-is-absolute: 1.0.1 dev: false - /glob/7.2.3: + /glob@7.2.3: resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} dependencies: fs.realpath: 1.0.0 @@ -10258,40 +10225,40 @@ packages: once: 1.4.0 path-is-absolute: 1.0.1 - /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 - /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 - /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: @@ -10303,7 +10270,7 @@ packages: slash: 3.0.0 dev: true - /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: @@ -10315,7 +10282,7 @@ packages: slash: 4.0.0 dev: false - /globby/13.1.3: + /globby@13.1.3: resolution: {integrity: sha512-8krCNHXvlCgHDpegPzleMq07yMYTO2sXKASmZmquEYWEmCx6J5UTRbp5RwMJkTJGtcQ44YpiUYUiN0b9mzy8Bw==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: @@ -10326,35 +10293,35 @@ packages: slash: 4.0.0 dev: true - /globrex/0.1.2: + /globrex@0.1.2: resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==} dev: true - /gopd/1.0.1: + /gopd@1.0.1: resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} dependencies: get-intrinsic: 1.2.0 dev: true - /graceful-fs/4.2.10: + /graceful-fs@4.2.10: resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==} - /grapheme-splitter/1.0.4: + /grapheme-splitter@1.0.4: resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} dev: true - /graphemesplit/2.4.4: + /graphemesplit@2.4.4: resolution: {integrity: sha512-lKrpp1mk1NH26USxC/Asw4OHbhSQf5XfrWZ+CDv/dFVvd1j17kFgMotdJvOesmHkbFX9P9sBfpH8VogxOWLg8w==} dependencies: js-base64: 3.7.5 unicode-trie: 2.0.0 dev: false - /handle-thing/2.0.1: + /handle-thing@2.0.1: resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==} dev: false - /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 @@ -10367,54 +10334,54 @@ packages: uglify-js: 3.17.4 dev: true - /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-bigints/1.0.2: + /has-bigints@1.0.2: resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} dev: true - /has-flag/3.0.0: + /has-flag@3.0.0: resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} engines: {node: '>=4'} - /has-flag/4.0.0: + /has-flag@4.0.0: resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} engines: {node: '>=8'} - /has-property-descriptors/1.0.0: + /has-property-descriptors@1.0.0: resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} dependencies: get-intrinsic: 1.2.0 - /has-proto/1.0.1: + /has-proto@1.0.1: resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} engines: {node: '>= 0.4'} dev: true - /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 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 - /hash-base/3.1.0: + /hash-base@3.1.0: resolution: {integrity: sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==} engines: {node: '>=4'} dependencies: @@ -10423,19 +10390,19 @@ packages: safe-buffer: 5.2.1 dev: false - /hash.js/1.1.7: + /hash.js@1.1.7: resolution: {integrity: sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==} dependencies: inherits: 2.0.4 minimalistic-assert: 1.0.1 dev: false - /he/1.2.0: + /he@1.2.0: resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} hasBin: true dev: false - /hmac-drbg/1.0.1: + /hmac-drbg@1.0.1: resolution: {integrity: sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==} dependencies: hash.js: 1.1.7 @@ -10443,36 +10410,36 @@ packages: minimalistic-crypto-utils: 1.0.1 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 - /hook-std/3.0.0: + /hook-std@3.0.0: resolution: {integrity: sha512-jHRQzjSDzMtFy34AGj1DN+vq54WVuhSvKgrHf0OMiFQTwDD4L/qqofVEWjLOBMTn5+lCD3fPg32W9yOfnEJTTw==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dev: true - /hosted-git-info/2.8.9: + /hosted-git-info@2.8.9: resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} dev: true - /hosted-git-info/4.1.0: + /hosted-git-info@4.1.0: resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==} engines: {node: '>=10'} dependencies: lru-cache: 6.0.0 dev: true - /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 @@ -10481,21 +10448,21 @@ packages: wbuf: 1.7.3 dev: false - /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==} dev: false - /html-escaper/2.0.2: + /html-escaper@2.0.2: resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} - /html-tokenize/2.0.1: + /html-tokenize@2.0.1: resolution: {integrity: sha512-QY6S+hZ0f5m1WT8WffYN+Hg+xm/w5I8XeUcAq/ZYP5wVC8xbKi4Whhru3FtrAebD5EhBW8rmFzkDI6eCAuFe2w==} hasBin: true dependencies: @@ -10506,11 +10473,11 @@ packages: through2: 0.4.2 dev: false - /http-deceiver/1.2.7: + /http-deceiver@1.2.7: resolution: {integrity: sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==} dev: false - /http-errors/1.6.3: + /http-errors@1.6.3: resolution: {integrity: sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==} engines: {node: '>= 0.6'} dependencies: @@ -10520,7 +10487,7 @@ packages: statuses: 1.5.0 dev: false - /http-errors/2.0.0: + /http-errors@2.0.0: resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} engines: {node: '>= 0.8'} dependencies: @@ -10531,22 +10498,22 @@ packages: toidentifier: 1.0.1 dev: false - /http-parser-js/0.5.8: + /http-parser-js@0.5.8: resolution: {integrity: sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==} dev: false - /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 dev: true - /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: @@ -10565,7 +10532,7 @@ packages: - debug dev: false - /http-proxy/1.18.1: + /http-proxy@1.18.1: resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==} engines: {node: '>=8.0.0'} dependencies: @@ -10576,7 +10543,7 @@ packages: - debug dev: false - /http-signature/1.3.6: + /http-signature@1.3.6: resolution: {integrity: sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==} engines: {node: '>=0.10'} dependencies: @@ -10584,49 +10551,49 @@ packages: jsprim: 2.0.2 sshpk: 1.17.0 - /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 dev: true - /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 - /husky/8.0.3: + /husky@8.0.3: resolution: {integrity: sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==} engines: {node: '>=14'} hasBin: true 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 dev: false - /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.21: + /icss-utils@5.1.0(postcss@8.4.21): resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: @@ -10635,44 +10602,43 @@ packages: postcss: 8.4.21 dev: false - /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.2.1: + /ieee754@1.2.1: resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} - /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 - dev: false optional: true - /immutable/4.2.4: + /immutable@4.2.4: resolution: {integrity: sha512-WDxL3Hheb1JkRN3sQkyujNlL/xRjAo3rJtaU5xeufUauG66JdMr32bLj4gF+vWl84DIA3Zxw7tiAjneYzRRw+w==} dev: false - /import-fresh/3.3.0: + /import-fresh@3.3.0: resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} engines: {node: '>=6'} dependencies: parent-module: 1.0.1 resolve-from: 4.0.0 - /import-from/4.0.0: + /import-from@4.0.0: resolution: {integrity: sha512-P9J71vT5nLlDeV8FHs5nNxaLbrpfAV5cF5srvbZfpwpcJoM/xZR3hiv+q+SAnuSmuGbXMWud063iIMx/V/EWZQ==} engines: {node: '>=12.2'} dev: true - /import-local/3.1.0: + /import-local@3.1.0: resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==} engines: {node: '>=8'} hasBin: true @@ -10681,41 +10647,41 @@ packages: resolve-cwd: 3.0.0 dev: true - /imurmurhash/0.1.4: + /imurmurhash@0.1.4: resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} engines: {node: '>=0.8.19'} - /indent-string/4.0.0: + /indent-string@4.0.0: resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} engines: {node: '>=8'} - /indent-string/5.0.0: + /indent-string@5.0.0: resolution: {integrity: sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==} engines: {node: '>=12'} 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==} dev: false - /inherits/2.0.4: + /inherits@2.0.4: resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} - /ini/1.3.8: + /ini@1.3.8: resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} dev: true - /ini/2.0.0: + /ini@2.0.0: resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==} engines: {node: '>=10'} - /internal-slot/1.0.5: + /internal-slot@1.0.5: resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==} engines: {node: '>= 0.4'} dependencies: @@ -10724,7 +10690,7 @@ packages: side-channel: 1.0.4 dev: true - /into-stream/6.0.0: + /into-stream@6.0.0: resolution: {integrity: sha512-XHbaOAvP+uFKUFsOgoNPRjLkwB+I22JFPFe5OjTkQ0nwgj6+pSjb4NmB6VMxaPshLiOf+zcpOCBQuLwC1KHhZA==} engines: {node: '>=10'} dependencies: @@ -10732,23 +10698,23 @@ 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 dev: false - /ipaddr.js/1.9.1: + /ipaddr.js@1.9.1: resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} engines: {node: '>= 0.10'} dev: false - /ipaddr.js/2.0.1: + /ipaddr.js@2.0.1: resolution: {integrity: sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==} engines: {node: '>= 10'} dev: false - /is-arguments/1.1.1: + /is-arguments@1.1.1: resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} engines: {node: '>= 0.4'} dependencies: @@ -10756,7 +10722,7 @@ packages: has-tostringtag: 1.0.0 dev: true - /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 @@ -10764,22 +10730,22 @@ packages: is-typed-array: 1.1.10 dev: true - /is-arrayish/0.2.1: + /is-arrayish@0.2.1: resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} - /is-bigint/1.0.4: + /is-bigint@1.0.4: resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} dependencies: has-bigints: 1.0.2 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: @@ -10787,129 +10753,129 @@ packages: has-tostringtag: 1.0.0 dev: true - /is-buffer/1.1.6: + /is-buffer@1.1.6: resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==} dev: false - /is-callable/1.2.7: + /is-callable@1.2.7: resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} engines: {node: '>= 0.4'} 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.11.0: + /is-core-module@2.11.0: resolution: {integrity: sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==} dependencies: has: 1.0.3 - /is-date-object/1.0.5: + /is-date-object@1.0.5: resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} engines: {node: '>= 0.4'} dependencies: has-tostringtag: 1.0.0 dev: true - /is-docker/2.2.1: + /is-docker@2.2.1: resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} engines: {node: '>=8'} hasBin: true - /is-extglob/2.1.1: + /is-extglob@2.1.1: resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} engines: {node: '>=0.10.0'} - /is-fullwidth-code-point/3.0.0: + /is-fullwidth-code-point@3.0.0: resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} engines: {node: '>=8'} - /is-generator-fn/2.1.0: + /is-generator-fn@2.1.0: resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==} engines: {node: '>=6'} - /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-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-map/2.0.2: + /is-map@2.0.2: resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==} dev: true - /is-negative-zero/2.0.2: + /is-negative-zero@2.0.2: resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} engines: {node: '>= 0.4'} dev: true - /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 dev: true - /is-number/7.0.0: + /is-number@7.0.0: resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} engines: {node: '>=0.12.0'} - /is-obj/2.0.0: + /is-obj@2.0.0: resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} engines: {node: '>=8'} 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: false - /is-plain-obj/3.0.0: + /is-plain-obj@3.0.0: resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==} engines: {node: '>=10'} dev: false - /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 dev: false - /is-plain-object/5.0.0: + /is-plain-object@5.0.0: resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} 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==} dev: true - /is-regex/1.1.4: + /is-regex@1.1.4: resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} engines: {node: '>= 0.4'} dependencies: @@ -10917,47 +10883,47 @@ packages: has-tostringtag: 1.0.0 dev: true - /is-set/2.0.2: + /is-set@2.0.2: resolution: {integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==} dev: true - /is-shared-array-buffer/1.0.2: + /is-shared-array-buffer@1.0.2: resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} dependencies: call-bind: 1.0.2 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 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 dev: true - /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.10: + /is-typed-array@1.1.10: resolution: {integrity: sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==} engines: {node: '>= 0.4'} dependencies: @@ -10968,65 +10934,64 @@ packages: has-tostringtag: 1.0.0 dev: true - /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-unicode-supported/1.3.0: + /is-unicode-supported@1.3.0: resolution: {integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==} engines: {node: '>=12'} dev: true - /is-weakmap/2.0.1: + /is-weakmap@2.0.1: resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==} dev: true - /is-weakref/1.0.2: + /is-weakref@1.0.2: resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} dependencies: call-bind: 1.0.2 dev: true - /is-weakset/2.0.2: + /is-weakset@2.0.2: resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==} dependencies: call-bind: 1.0.2 get-intrinsic: 1.2.0 dev: true - /is-what/3.14.1: + /is-what@3.14.1: resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==} - dev: false - /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==} dev: false - /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==} dev: true - /isexe/2.0.0: + /isexe@2.0.0: resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} - /isobject/3.0.1: + /isobject@3.0.1: resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} engines: {node: '>=0.10.0'} dev: false - /isomorphic-ws/4.0.1_ws@7.5.9: + /isomorphic-ws@4.0.1(ws@7.5.9): resolution: {integrity: sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w==} peerDependencies: ws: '*' @@ -11034,10 +10999,10 @@ packages: ws: 7.5.9 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: @@ -11048,11 +11013,11 @@ 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-instrument/5.2.1: + /istanbul-lib-instrument@5.2.1: resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} engines: {node: '>=8'} dependencies: @@ -11064,7 +11029,7 @@ packages: transitivePeerDependencies: - supports-color - /istanbul-lib-report/3.0.0: + /istanbul-lib-report@3.0.0: resolution: {integrity: sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==} engines: {node: '>=8'} dependencies: @@ -11072,24 +11037,24 @@ 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 - /jake/10.8.5: + /jake@10.8.5: resolution: {integrity: sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==} engines: {node: '>=10'} hasBin: true @@ -11099,12 +11064,12 @@ packages: filelist: 1.0.4 minimatch: 3.1.2 - /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/29.4.3: + /jest-changed-files@29.4.3: resolution: {integrity: sha512-Vn5cLuWuwmi2GNNbokPOEcvrXGSGrqVnPEZV7rC6P7ck07Dyw9RFnvWglnupSh+hGys0ajGtw/bc2ZgweljQoQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -11112,7 +11077,7 @@ packages: p-limit: 3.1.0 dev: true - /jest-circus/28.1.3: + /jest-circus@28.1.3: resolution: {integrity: sha512-cZ+eS5zc79MBwt+IhQhiEp0OeBddpc1n8MBo1nMB8A7oPMKEO+Sre+wHaLJexQUj9Ya/8NOBY0RESUgYjB6fow==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: @@ -11138,7 +11103,7 @@ packages: transitivePeerDependencies: - supports-color - /jest-circus/29.4.3: + /jest-circus@29.4.3: resolution: {integrity: sha512-Vw/bVvcexmdJ7MLmgdT3ZjkJ3LKu8IlpefYokxiqoZy6OCQ2VAm6Vk3t/qHiAGUXbdbJKJWnc8gH3ypTbB/OBw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -11165,7 +11130,7 @@ packages: - supports-color dev: true - /jest-cli/29.4.3_jboh4c3iv3wxuja4m36ecyac7e: + /jest-cli@29.4.3(@types/node@18.14.2)(ts-node@10.9.1): resolution: {integrity: sha512-PiiAPuFNfWWolCE6t3ZrDXQc6OsAuM3/tVW0u27UWc1KE+n/HSn5dSE6B2juqN7WP+PP0jAcnKtGmI4u8GMYCg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true @@ -11175,14 +11140,14 @@ packages: node-notifier: optional: true dependencies: - '@jest/core': 29.4.3_ts-node@10.9.1 + '@jest/core': 29.4.3(ts-node@10.9.1) '@jest/test-result': 29.4.3 '@jest/types': 29.4.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.10 import-local: 3.1.0 - jest-config: 29.4.3_jboh4c3iv3wxuja4m36ecyac7e + jest-config: 29.4.3(@types/node@18.14.2)(ts-node@10.9.1) jest-util: 29.4.3 jest-validate: 29.4.3 prompts: 2.4.2 @@ -11193,7 +11158,7 @@ packages: - ts-node dev: true - /jest-config/28.1.1_jboh4c3iv3wxuja4m36ecyac7e: + /jest-config@28.1.1(@types/node@18.14.2)(ts-node@10.9.1): resolution: {integrity: sha512-tASynMhS+jVV85zKvjfbJ8nUyJS/jUSYZ5KQxLUN2ZCvcQc/OmhQl2j6VEL3ezQkNofxn5pQ3SPYWPHb0unTZA==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} peerDependencies: @@ -11209,7 +11174,7 @@ packages: '@jest/test-sequencer': 28.1.3 '@jest/types': 28.1.3 '@types/node': 18.14.2 - babel-jest: 28.1.3_@babel+core@7.21.0 + babel-jest: 28.1.3(@babel/core@7.21.0) chalk: 4.1.2 ci-info: 3.8.0 deepmerge: 4.3.0 @@ -11228,11 +11193,11 @@ packages: pretty-format: 28.1.3 slash: 3.0.0 strip-json-comments: 3.1.1 - ts-node: 10.9.1_ellgaeuoqnti3hful2ny2iugba + ts-node: 10.9.1(@types/node@18.14.2)(typescript@4.9.5) transitivePeerDependencies: - supports-color - /jest-config/29.4.3_jboh4c3iv3wxuja4m36ecyac7e: + /jest-config@29.4.3(@types/node@18.14.2)(ts-node@10.9.1): resolution: {integrity: sha512-eCIpqhGnIjdUCXGtLhz4gdDoxKSWXKjzNcc5r+0S1GKOp2fwOipx5mRcwa9GB/ArsxJ1jlj2lmlD9bZAsBxaWQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: @@ -11248,7 +11213,7 @@ packages: '@jest/test-sequencer': 29.4.3 '@jest/types': 29.4.3 '@types/node': 18.14.2 - babel-jest: 29.4.3_@babel+core@7.21.0 + babel-jest: 29.4.3(@babel/core@7.21.0) chalk: 4.1.2 ci-info: 3.8.0 deepmerge: 4.3.0 @@ -11267,12 +11232,12 @@ packages: pretty-format: 29.4.3 slash: 3.0.0 strip-json-comments: 3.1.1 - ts-node: 10.9.1_ellgaeuoqnti3hful2ny2iugba + ts-node: 10.9.1(@types/node@18.14.2)(typescript@4.9.5) transitivePeerDependencies: - supports-color dev: true - /jest-diff/28.1.3: + /jest-diff@28.1.3: resolution: {integrity: sha512-8RqP1B/OXzjjTWkqMX67iqgwBVJRgCyKD3L9nq+6ZqJMdvjE8RgHktqZ6jNrkdMT+dJuYNI3rhQpxaz7drJHfw==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: @@ -11281,7 +11246,7 @@ packages: jest-get-type: 28.0.2 pretty-format: 28.1.3 - /jest-diff/29.4.3: + /jest-diff@29.4.3: resolution: {integrity: sha512-YB+ocenx7FZ3T5O9lMVMeLYV4265socJKtkwgk/6YUz/VsEzYDkiMuMhWzZmxm3wDRQvayJu/PjkjjSkjoHsCA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -11291,20 +11256,20 @@ packages: pretty-format: 29.4.3 dev: true - /jest-docblock/28.1.1: + /jest-docblock@28.1.1: resolution: {integrity: sha512-3wayBVNiOYx0cwAbl9rwm5kKFP8yHH3d/fkEaL02NPTkDojPtheGB7HZSFY4wzX+DxyrvhXz0KSCVksmCknCuA==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.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/28.1.3: + /jest-each@28.1.3: resolution: {integrity: sha512-arT1z4sg2yABU5uogObVPvSlSMQlDA48owx07BDPAiasW0yYpYHYOo4HHLz9q0BVzDVU4hILFjzJw0So9aCL/g==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: @@ -11314,7 +11279,7 @@ packages: jest-util: 28.1.3 pretty-format: 28.1.3 - /jest-each/29.4.3: + /jest-each@29.4.3: resolution: {integrity: sha512-1ElHNAnKcbJb/b+L+7j0/w7bDvljw4gTv1wL9fYOczeJrbTbkMGQ5iQPFJ3eFQH19VPTx1IyfePdqSpePKss7Q==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -11325,7 +11290,7 @@ packages: pretty-format: 29.4.3 dev: true - /jest-environment-jsdom/29.4.3: + /jest-environment-jsdom@29.4.3: resolution: {integrity: sha512-rFjf8JXrw3OjUzzmSE5l0XjMj0/MSVEUMCSXBGPDkfwb1T03HZI7iJSL0cGctZApPSyJxbjyKDVxkZuyhHkuTw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: @@ -11348,7 +11313,7 @@ packages: - utf-8-validate dev: true - /jest-environment-node/28.1.3: + /jest-environment-node@28.1.3: resolution: {integrity: sha512-ugP6XOhEpjAEhGYvp5Xj989ns5cB1K6ZdjBYuS30umT4CQEETaxSiPcZ/E1kFktX4GkrcM4qu07IIlDYX1gp+A==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: @@ -11359,7 +11324,7 @@ packages: jest-mock: 28.1.3 jest-util: 28.1.3 - /jest-environment-node/29.4.3: + /jest-environment-node@29.4.3: resolution: {integrity: sha512-gAiEnSKF104fsGDXNkwk49jD/0N0Bqu2K9+aMQXA6avzsA9H3Fiv1PW2D+gzbOSR705bWd2wJZRFEFpV0tXISg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -11371,16 +11336,16 @@ packages: jest-util: 29.4.3 dev: true - /jest-get-type/28.0.2: + /jest-get-type@28.0.2: resolution: {integrity: sha512-ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - /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} dev: true - /jest-haste-map/28.1.3: + /jest-haste-map@28.1.3: resolution: {integrity: sha512-3S+RQWDXccXDKSWnkHa/dPwt+2qwA8CJzR61w3FoYCvoo3Pn8tvGcysmMF0Bj0EX5RYvAI2EIvC57OmotfdtKA==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: @@ -11398,7 +11363,7 @@ packages: optionalDependencies: fsevents: 2.3.2 - /jest-haste-map/29.4.3: + /jest-haste-map@29.4.3: resolution: {integrity: sha512-eZIgAS8tvm5IZMtKlR8Y+feEOMfo2pSQkmNbufdbMzMSn9nitgGxF1waM/+LbryO3OkMcKS98SUb+j/cQxp/vQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -11417,14 +11382,14 @@ packages: fsevents: 2.3.2 dev: true - /jest-leak-detector/28.1.3: + /jest-leak-detector@28.1.3: resolution: {integrity: sha512-WFVJhnQsiKtDEo5lG2mM0v40QWnBM+zMdHHyJs8AWZ7J0QZJS59MsyKeJHWhpBZBH32S48FOVvGyOFT1h0DlqA==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: jest-get-type: 28.0.2 pretty-format: 28.1.3 - /jest-leak-detector/29.4.3: + /jest-leak-detector@29.4.3: resolution: {integrity: sha512-9yw4VC1v2NspMMeV3daQ1yXPNxMgCzwq9BocCwYrRgXe4uaEJPAN0ZK37nFBhcy3cUwEVstFecFLaTHpF7NiGA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -11432,7 +11397,7 @@ packages: pretty-format: 29.4.3 dev: true - /jest-matcher-utils/28.1.3: + /jest-matcher-utils@28.1.3: resolution: {integrity: sha512-kQeJ7qHemKfbzKoGjHHrRKH6atgxMk8Enkk2iPQ3XwO6oE/KYD8lMYOziCkeSB9G4adPM4nR1DE8Tf5JeWH6Bw==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: @@ -11441,7 +11406,7 @@ packages: jest-get-type: 28.0.2 pretty-format: 28.1.3 - /jest-matcher-utils/29.4.3: + /jest-matcher-utils@29.4.3: resolution: {integrity: sha512-TTciiXEONycZ03h6R6pYiZlSkvYgT0l8aa49z/DLSGYjex4orMUcafuLXYyyEDWB1RKglq00jzwY00Ei7yFNVg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -11451,7 +11416,7 @@ packages: pretty-format: 29.4.3 dev: true - /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: @@ -11465,7 +11430,7 @@ packages: slash: 3.0.0 stack-utils: 2.0.6 - /jest-message-util/29.4.3: + /jest-message-util@29.4.3: resolution: {integrity: sha512-1Y8Zd4ZCN7o/QnWdMmT76If8LuDv23Z1DRovBj/vcSFNlGCJGoO8D1nJDw1AdyAGUk0myDLFGN5RbNeJyCRGCw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -11480,14 +11445,14 @@ packages: stack-utils: 2.0.6 dev: true - /jest-mock/28.1.3: + /jest-mock@28.1.3: resolution: {integrity: sha512-o3J2jr6dMMWYVH4Lh/NKmDXdosrsJgi4AviS8oXLujcjpCMBb1FMsblDnOXKZKfSiHLxYub1eS0IHuRXsio9eA==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: '@jest/types': 28.1.3 '@types/node': 18.14.2 - /jest-mock/29.4.3: + /jest-mock@29.4.3: resolution: {integrity: sha512-LjFgMg+xed9BdkPMyIJh+r3KeHt1klXPJYBULXVVAkbTaaKjPX1o1uVCAZADMEp/kOxGTwy/Ot8XbvgItOrHEg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -11496,7 +11461,7 @@ packages: jest-util: 29.4.3 dev: true - /jest-pnp-resolver/1.2.3_jest-resolve@28.1.1: + /jest-pnp-resolver@1.2.3(jest-resolve@28.1.1): resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} engines: {node: '>=6'} peerDependencies: @@ -11507,7 +11472,7 @@ packages: dependencies: jest-resolve: 28.1.1 - /jest-pnp-resolver/1.2.3_jest-resolve@28.1.3: + /jest-pnp-resolver@1.2.3(jest-resolve@28.1.3): resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} engines: {node: '>=6'} peerDependencies: @@ -11518,7 +11483,7 @@ packages: dependencies: jest-resolve: 28.1.3 - /jest-pnp-resolver/1.2.3_jest-resolve@29.4.3: + /jest-pnp-resolver@1.2.3(jest-resolve@29.4.3): resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} engines: {node: '>=6'} peerDependencies: @@ -11530,16 +11495,16 @@ packages: jest-resolve: 29.4.3 dev: true - /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} dev: true - /jest-resolve-dependencies/29.4.3: + /jest-resolve-dependencies@29.4.3: resolution: {integrity: sha512-uvKMZAQ3nmXLH7O8WAOhS5l0iWyT3WmnJBdmIHiV5tBbdaDZ1wqtNX04FONGoaFvSOSHBJxnwAVnSn1WHdGVaw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -11549,42 +11514,42 @@ packages: - supports-color dev: true - /jest-resolve/28.1.1: + /jest-resolve@28.1.1: resolution: {integrity: sha512-/d1UbyUkf9nvsgdBildLe6LAD4DalgkgZcKd0nZ8XUGPyA/7fsnaQIlKVnDiuUXv/IeZhPEDrRJubVSulxrShA==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: chalk: 4.1.2 graceful-fs: 4.2.10 jest-haste-map: 28.1.3 - jest-pnp-resolver: 1.2.3_jest-resolve@28.1.1 + jest-pnp-resolver: 1.2.3(jest-resolve@28.1.1) jest-util: 28.1.3 jest-validate: 28.1.3 resolve: 1.22.1 resolve.exports: 1.1.0 slash: 3.0.0 - /jest-resolve/28.1.3: + /jest-resolve@28.1.3: resolution: {integrity: sha512-Z1W3tTjE6QaNI90qo/BJpfnvpxtaFTFw5CDgwpyE/Kz8U/06N1Hjf4ia9quUhCh39qIGWF1ZuxFiBiJQwSEYKQ==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: chalk: 4.1.2 graceful-fs: 4.2.10 jest-haste-map: 28.1.3 - jest-pnp-resolver: 1.2.3_jest-resolve@28.1.3 + jest-pnp-resolver: 1.2.3(jest-resolve@28.1.3) jest-util: 28.1.3 jest-validate: 28.1.3 resolve: 1.22.1 resolve.exports: 1.1.0 slash: 3.0.0 - /jest-resolve/29.4.3: + /jest-resolve@29.4.3: resolution: {integrity: sha512-GPokE1tzguRyT7dkxBim4wSx6E45S3bOQ7ZdKEG+Qj0Oac9+6AwJPCk0TZh5Vu0xzeX4afpb+eDmgbmZFFwpOw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: chalk: 4.1.2 graceful-fs: 4.2.10 jest-haste-map: 29.4.3 - jest-pnp-resolver: 1.2.3_jest-resolve@29.4.3 + jest-pnp-resolver: 1.2.3(jest-resolve@29.4.3) jest-util: 29.4.3 jest-validate: 29.4.3 resolve: 1.22.1 @@ -11592,7 +11557,7 @@ packages: slash: 3.0.0 dev: true - /jest-runner/28.1.3: + /jest-runner@28.1.3: resolution: {integrity: sha512-GkMw4D/0USd62OVO0oEgjn23TM+YJa2U2Wu5zz9xsQB1MxWKDOlrnykPxnMsN0tnJllfLPinHTka61u0QhaxBA==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: @@ -11620,7 +11585,7 @@ packages: transitivePeerDependencies: - supports-color - /jest-runner/29.4.3: + /jest-runner@29.4.3: resolution: {integrity: sha512-GWPTEiGmtHZv1KKeWlTX9SIFuK19uLXlRQU43ceOQ2hIfA5yPEJC7AMkvFKpdCHx6pNEdOD+2+8zbniEi3v3gA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -11649,7 +11614,7 @@ packages: - supports-color dev: true - /jest-runtime/28.1.3: + /jest-runtime@28.1.3: resolution: {integrity: sha512-NU+881ScBQQLc1JHG5eJGU7Ui3kLKrmwCPPtYsJtBykixrM2OhVQlpMmFWJjMyDfdkGgBMNjXCGB/ebzsgNGQw==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: @@ -11678,7 +11643,7 @@ packages: transitivePeerDependencies: - supports-color - /jest-runtime/29.4.3: + /jest-runtime@29.4.3: resolution: {integrity: sha512-F5bHvxSH+LvLV24vVB3L8K467dt3y3dio6V3W89dUz9nzvTpqd/HcT9zfYKL2aZPvD63vQFgLvaUX/UpUhrP6Q==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -11708,13 +11673,13 @@ packages: - supports-color dev: true - /jest-snapshot/28.1.3: + /jest-snapshot@28.1.3: resolution: {integrity: sha512-4lzMgtiNlc3DU/8lZfmqxN3AYD6GGLbl+72rdBpXvcV+whX7mDrREzkPdp2RnmfIiWBg1YbuFSkXduF2JcafJg==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: '@babel/core': 7.21.0 '@babel/generator': 7.21.1 - '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.21.0 + '@babel/plugin-syntax-typescript': 7.20.0(@babel/core@7.21.0) '@babel/traverse': 7.21.2 '@babel/types': 7.21.2 '@jest/expect-utils': 28.1.3 @@ -11722,7 +11687,7 @@ packages: '@jest/types': 28.1.3 '@types/babel__traverse': 7.18.3 '@types/prettier': 2.7.2 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.21.0 + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.21.0) chalk: 4.1.2 expect: 28.1.3 graceful-fs: 4.2.10 @@ -11738,14 +11703,14 @@ packages: transitivePeerDependencies: - supports-color - /jest-snapshot/29.4.3: + /jest-snapshot@29.4.3: resolution: {integrity: sha512-NGlsqL0jLPDW91dz304QTM/SNO99lpcSYYAjNiX0Ou+sSGgkanKBcSjCfp/pqmiiO1nQaOyLp6XQddAzRcx3Xw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@babel/core': 7.21.0 '@babel/generator': 7.21.1 - '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.21.0 + '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.21.0) + '@babel/plugin-syntax-typescript': 7.20.0(@babel/core@7.21.0) '@babel/traverse': 7.21.2 '@babel/types': 7.21.2 '@jest/expect-utils': 29.4.3 @@ -11753,7 +11718,7 @@ packages: '@jest/types': 29.4.3 '@types/babel__traverse': 7.18.3 '@types/prettier': 2.7.2 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.21.0 + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.21.0) chalk: 4.1.2 expect: 29.4.3 graceful-fs: 4.2.10 @@ -11770,7 +11735,7 @@ packages: - supports-color dev: true - /jest-util/28.1.1: + /jest-util@28.1.1: resolution: {integrity: sha512-FktOu7ca1DZSyhPAxgxB6hfh2+9zMoJ7aEQA759Z6p45NuO8mWcqujH+UdHlCm/V6JTWwDztM2ITCzU1ijJAfw==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: @@ -11781,7 +11746,7 @@ packages: graceful-fs: 4.2.10 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: @@ -11792,7 +11757,7 @@ packages: graceful-fs: 4.2.10 picomatch: 2.3.1 - /jest-util/29.4.3: + /jest-util@29.4.3: resolution: {integrity: sha512-ToSGORAz4SSSoqxDSylWX8JzkOQR7zoBtNRsA7e+1WUX5F8jrOwaNpuh1YfJHJKDHXLHmObv5eOjejUd+/Ws+Q==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -11804,7 +11769,7 @@ packages: picomatch: 2.3.1 dev: true - /jest-validate/28.1.3: + /jest-validate@28.1.3: resolution: {integrity: sha512-SZbOGBWEsaTxBGCOpsRWlXlvNkvTkY0XxRfh7zYmvd8uL5Qzyg0CHAXiXKROflh801quA6+/DsT4ODDthOC/OA==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: @@ -11815,7 +11780,7 @@ packages: leven: 3.1.0 pretty-format: 28.1.3 - /jest-validate/29.4.3: + /jest-validate@29.4.3: resolution: {integrity: sha512-J3u5v7aPQoXPzaar6GndAVhdQcZr/3osWSgTeKg5v574I9ybX/dTyH0AJFb5XgXIB7faVhf+rS7t4p3lL9qFaw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -11827,7 +11792,7 @@ packages: pretty-format: 29.4.3 dev: true - /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: @@ -11840,7 +11805,7 @@ packages: jest-util: 28.1.3 string-length: 4.0.2 - /jest-watcher/29.4.3: + /jest-watcher@29.4.3: resolution: {integrity: sha512-zwlXH3DN3iksoIZNk73etl1HzKyi5FuQdYLnkQKm5BW4n8HpoG59xSwpVdFrnh60iRRaRBGw0gcymIxjJENPcA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -11854,7 +11819,7 @@ packages: string-length: 4.0.2 dev: true - /jest-worker/27.5.1: + /jest-worker@27.5.1: resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} engines: {node: '>= 10.13.0'} dependencies: @@ -11863,7 +11828,7 @@ packages: supports-color: 8.1.1 dev: false - /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: @@ -11871,7 +11836,7 @@ packages: merge-stream: 2.0.0 supports-color: 8.1.1 - /jest-worker/29.4.3: + /jest-worker@29.4.3: resolution: {integrity: sha512-GLHN/GTAAMEy5BFdvpUfzr9Dr80zQqBrh0fz1mtRMe05hqP45+HfQltu7oTBfduD0UeZs09d+maFtFYAXFWvAA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -11881,7 +11846,7 @@ packages: supports-color: 8.1.1 dev: true - /jest/29.4.3_jboh4c3iv3wxuja4m36ecyac7e: + /jest@29.4.3(@types/node@18.14.2)(ts-node@10.9.1): resolution: {integrity: sha512-XvK65feuEFGZT8OO0fB/QAQS+LGHvQpaadkH5p47/j3Ocqq3xf2pK9R+G0GzgfuhXVxEv76qCOOcMb5efLk6PA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true @@ -11891,25 +11856,25 @@ packages: node-notifier: optional: true dependencies: - '@jest/core': 29.4.3_ts-node@10.9.1 + '@jest/core': 29.4.3(ts-node@10.9.1) '@jest/types': 29.4.3 import-local: 3.1.0 - jest-cli: 29.4.3_jboh4c3iv3wxuja4m36ecyac7e + jest-cli: 29.4.3(@types/node@18.14.2)(ts-node@10.9.1) transitivePeerDependencies: - '@types/node' - supports-color - ts-node dev: true - /js-base64/3.7.5: + /js-base64@3.7.5: resolution: {integrity: sha512-3MEt5DTINKqfScXKfJFrRbxkrnk2AxPWGBL/ycjz4dK8iqiSJ06UxD8jh8xuh6p10TX4t2+7FsBYVxxQbMg+qA==} dev: false - /js-crypto-env/0.3.2: + /js-crypto-env@0.3.2: resolution: {integrity: sha512-F1uHiCkSOo36qBuuZABA4sBf+xeFBzhJZ0Sd7af8FAruszIhm1Xxv+Zr5Ne90Zlh7/fnxCsrdkj0N8f0a3lVlQ==} dev: false - /js-crypto-hash/0.6.3: + /js-crypto-hash@0.6.3: resolution: {integrity: sha512-SG8c9tM8y3sUb4k7WvpVfu5vU7zfPvX+eaYR5578TvehkehdaQbqAc+y+1FwxnqQ3WZ0gsYoOKp/mW+mqtNoWA==} dependencies: buffer: 5.4.3 @@ -11919,7 +11884,7 @@ packages: sha3: 2.1.4 dev: false - /js-crypto-hkdf/0.7.3: + /js-crypto-hkdf@0.7.3: resolution: {integrity: sha512-eAaVArAjS2GCacWGXY4hjBiexrLQYlI0PMOcbwtrSEj84XU3kUfMYZm9bpTyaTXgdHC/eQoXe/Of6biG+RSEaQ==} dependencies: js-crypto-env: 0.3.2 @@ -11928,47 +11893,47 @@ packages: js-encoding-utils: 0.5.6 dev: false - /js-crypto-hmac/0.6.3: + /js-crypto-hmac@0.6.3: resolution: {integrity: sha512-T0pKOaHACOSG6Xs6/06G8RDDeZouQwIQNBq9L/zoUGsd4F67gAjpT3q2lGigAGpUd1hiyy7vnhvLpz7VDt6DbA==} dependencies: js-crypto-env: 0.3.2 js-crypto-hash: 0.6.3 dev: false - /js-crypto-random/0.4.3: + /js-crypto-random@0.4.3: resolution: {integrity: sha512-C3gzphPPfw9jfQ9Q/LjhJMZxQNp3AaoVRDvyZkiB+zYltfs8tKQPsskWkXACpg1Nzh01PtSRUvVijjptd2qGHQ==} dependencies: js-crypto-env: 0.3.2 dev: false - /js-encoding-utils/0.5.6: + /js-encoding-utils@0.5.6: resolution: {integrity: sha512-qnAGsUIWrmzh5n+3AXqbxX1KsB9hkQmJZf3aA9DLAS7GpL/NEHCBreFFbW+imramoU+Q0TDyvkwhRbBRH1TVkg==} dev: false - /js-sha3/0.8.0: + /js-sha3@0.8.0: resolution: {integrity: sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q==} dev: false - /js-tokens/4.0.0: + /js-tokens@4.0.0: resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} - /js-yaml/3.14.1: + /js-yaml@3.14.1: resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} hasBin: true dependencies: argparse: 1.0.10 esprima: 4.0.1 - /js-yaml/4.1.0: + /js-yaml@4.1.0: resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} hasBin: true dependencies: argparse: 2.0.1 - /jsbn/0.1.1: + /jsbn@0.1.1: resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==} - /jsdom/20.0.3: + /jsdom@20.0.3: resolution: {integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==} engines: {node: '>=14'} peerDependencies: @@ -12009,65 +11974,65 @@ 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-parse-better-errors/1.0.2: + /json-parse-better-errors@1.0.2: resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==} dev: true - /json-parse-even-better-errors/2.3.1: + /json-parse-even-better-errors@2.3.1: resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} - /json-schema-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-safe/5.0.1: + /json-stringify-safe@5.0.1: resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==} - /json5/1.0.2: + /json5@1.0.2: resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} hasBin: true dependencies: minimist: 1.2.8 dev: true - /json5/2.2.3: + /json5@2.2.3: resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} engines: {node: '>=6'} hasBin: true - /jsonc-parser/3.2.0: + /jsonc-parser@3.2.0: resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==} - /jsonfile/6.1.0: + /jsonfile@6.1.0: resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} dependencies: universalify: 2.0.0 optionalDependencies: graceful-fs: 4.2.10 - /jsonparse/1.3.1: + /jsonparse@1.3.1: resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} engines: {'0': node >= 0.2.0} dev: true - /jsprim/2.0.2: + /jsprim@2.0.2: resolution: {integrity: sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==} engines: {'0': node >=0.6.0} dependencies: @@ -12076,7 +12041,7 @@ 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: @@ -12084,39 +12049,39 @@ packages: object.assign: 4.1.4 dev: true - /keyvaluestorage-interface/1.0.0: + /keyvaluestorage-interface@1.0.0: resolution: {integrity: sha512-8t6Q3TclQ4uZynJY9IGr2+SsIGwK9JHcO6ootkHCGA0CrQCRy+VkouYNO2xicET6b9al7QKzpebNow+gkpCL8g==} dev: false - /kind-of/6.0.3: + /kind-of@6.0.3: resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} engines: {node: '>=0.10.0'} - /kleur/3.0.3: + /kleur@3.0.3: resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} engines: {node: '>=6'} dev: true - /klona/2.0.6: + /klona@2.0.6: resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==} engines: {node: '>= 8'} dev: false - /language-subtag-registry/0.3.22: + /language-subtag-registry@0.3.22: resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==} dev: true - /language-tags/1.0.5: + /language-tags@1.0.5: resolution: {integrity: sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==} dependencies: language-subtag-registry: 0.3.22 dev: true - /lazy-ass/1.6.0: + /lazy-ass@1.6.0: resolution: {integrity: sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==} engines: {node: '> 0.8'} - /less-loader/11.1.0_less@4.1.3+webpack@5.75.0: + /less-loader@11.1.0(less@4.1.3)(webpack@5.75.0): resolution: {integrity: sha512-C+uDBV7kS7W5fJlUjq5mPBeBVhYpTIm5gB09APT9o3n/ILeaXVsiSFTbZpTJCJwQ/Crczfn3DmfQFwxYusWFug==} engines: {node: '>= 14.15.0'} peerDependencies: @@ -12128,7 +12093,7 @@ packages: webpack: 5.75.0 dev: false - /less/4.1.3: + /less@4.1.3: resolution: {integrity: sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA==} engines: {node: '>=6'} hasBin: true @@ -12146,13 +12111,12 @@ packages: source-map: 0.6.1 transitivePeerDependencies: - supports-color - dev: false - /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'} dependencies: @@ -12160,24 +12124,24 @@ packages: type-check: 0.3.2 dev: 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 - /libsodium-wrappers/0.7.11: + /libsodium-wrappers@0.7.11: resolution: {integrity: sha512-SrcLtXj7BM19vUKtQuyQKiQCRJPgbpauzl3s0rSwD+60wtHqSUuqcoawlMDheCJga85nKOQwxNYQxf/CKAvs6Q==} dependencies: libsodium: 0.7.11 dev: false - /libsodium/0.7.11: + /libsodium@0.7.11: resolution: {integrity: sha512-WPfJ7sS53I2s4iM58QxY3Inb83/6mjlYgcmZs7DJsvDlnmVUwNinBCi5vBT43P6bHRy01O4zsMU2CoVR6xJ40A==} dev: false - /license-webpack-plugin/4.0.2_webpack@5.75.0: + /license-webpack-plugin@4.0.2(webpack@5.75.0): resolution: {integrity: sha512-771TFWFD70G1wLTC4oU2Cw4qvtmNrIw+wRvBtn+okgHl7slJVi7zfNcdmqDL72BojM30VNJ2UHylr1o77U37Jw==} peerDependencies: webpack: '*' @@ -12191,19 +12155,19 @@ packages: webpack-sources: 3.2.3 dev: false - /lilconfig/2.1.0: + /lilconfig@2.1.0: resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} engines: {node: '>=10'} 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} - /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: @@ -12222,7 +12186,7 @@ packages: through: 2.3.8 wrap-ansi: 7.0.0 - /load-json-file/4.0.0: + /load-json-file@4.0.0: resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==} engines: {node: '>=4'} dependencies: @@ -12232,12 +12196,12 @@ packages: strip-bom: 3.0.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'} dev: false - /loader-utils/2.0.4: + /loader-utils@2.0.4: resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==} engines: {node: '>=8.9.0'} dependencies: @@ -12246,12 +12210,12 @@ packages: json5: 2.2.3 dev: false - /local-pkg/0.4.3: + /local-pkg@0.4.3: resolution: {integrity: sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==} engines: {node: '>=14'} dev: true - /locate-path/2.0.0: + /locate-path@2.0.0: resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==} engines: {node: '>=4'} dependencies: @@ -12259,110 +12223,110 @@ packages: path-exists: 3.0.0 dev: true - /locate-path/5.0.0: + /locate-path@5.0.0: resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} engines: {node: '>=8'} dependencies: p-locate: 4.1.0 - /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: true - /lodash-es/4.17.21: + /lodash-es@4.17.21: resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==} dev: true - /lodash.camelcase/4.3.0: + /lodash.camelcase@4.3.0: resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==} dev: true - /lodash.capitalize/4.2.1: + /lodash.capitalize@4.2.1: resolution: {integrity: sha512-kZzYOKspf8XVX5AvmQF94gQW0lejFVgb80G85bU4ZWzoJ6C03PQg3coYAUpSTpQWelrZELd3XWgHzw4Ck5kaIw==} dev: true - /lodash.debounce/4.0.8: + /lodash.debounce@4.0.8: resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} - /lodash.escaperegexp/4.1.2: + /lodash.escaperegexp@4.1.2: resolution: {integrity: sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw==} dev: true - /lodash.isequal/4.5.0: + /lodash.isequal@4.5.0: resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==} dev: false - /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==} dev: true - /lodash.isstring/4.0.1: + /lodash.isstring@4.0.1: resolution: {integrity: sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==} dev: true - /lodash.kebabcase/4.1.1: + /lodash.kebabcase@4.1.1: resolution: {integrity: sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==} 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==} - /lodash.once/4.1.1: + /lodash.once@4.1.1: resolution: {integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==} - /lodash.snakecase/4.1.1: + /lodash.snakecase@4.1.1: resolution: {integrity: sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==} dev: true - /lodash.startcase/4.4.0: + /lodash.startcase@4.4.0: resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==} dev: true - /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-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/4.0.0: + /log-update@4.0.0: resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==} engines: {node: '>=10'} dependencies: @@ -12371,87 +12335,86 @@ packages: slice-ansi: 4.0.0 wrap-ansi: 6.2.0 - /long/4.0.0: + /long@4.0.0: resolution: {integrity: sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==} - /long/5.2.1: + /long@5.2.1: resolution: {integrity: sha512-GKSNGeNAtw8IryjjkhZxuKB3JzlcLTwjtiQCHKvqQet81I93kXslhDQruGI/QsddO83mcDToBVy7GqGS/zYf/A==} dev: false - /loose-envify/1.4.0: + /loose-envify@1.4.0: resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} hasBin: true dependencies: js-tokens: 4.0.0 - /loupe/2.3.6: + /loupe@2.3.6: resolution: {integrity: sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA==} dependencies: get-func-name: 2.0.0 - /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'} dev: true - /lz-string/1.5.0: + /lz-string@1.5.0: resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==} hasBin: true dev: true - /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.14 dev: true - /make-dir/2.1.0: + /make-dir@2.1.0: resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} engines: {node: '>=6'} requiresBuild: true dependencies: pify: 4.0.1 semver: 5.7.1 - dev: false optional: true - /make-dir/3.1.0: + /make-dir@3.1.0: resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} engines: {node: '>=8'} dependencies: semver: 6.3.0 - /make-error/1.3.6: + /make-error@1.3.6: resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} - /makeerror/1.0.12: + /makeerror@1.0.12: resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==} dependencies: tmpl: 1.0.5 - /map-obj/1.0.1: + /map-obj@1.0.1: resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} engines: {node: '>=0.10.0'} dev: true - /map-obj/4.3.0: + /map-obj@4.3.0: resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==} engines: {node: '>=8'} dev: true - /marked-terminal/5.1.1_marked@4.2.12: + /marked-terminal@5.1.1(marked@4.2.12): resolution: {integrity: sha512-+cKTOx9P4l7HwINYhzbrBSyzgxO2HaHKGZGuB1orZsMIgXYaJyfidT81VXRdpelW/PcHEWxywscePVgI/oUF6g==} engines: {node: '>=14.13.1 || >=16.0.0'} peerDependencies: @@ -12466,13 +12429,13 @@ packages: supports-hyperlinks: 2.3.0 dev: true - /marked/4.2.12: + /marked@4.2.12: resolution: {integrity: sha512-yr8hSKa3Fv4D3jdZmtMMPghgVt6TWbk86WQaWhDloQjRSQhMMYCAro7jP7VDJrjjdV8pxVxMssXS8B8Y5DZ5aw==} engines: {node: '>= 12'} hasBin: true dev: true - /md5.js/1.3.5: + /md5.js@1.3.5: resolution: {integrity: sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==} dependencies: hash-base: 3.1.0 @@ -12480,7 +12443,7 @@ packages: safe-buffer: 5.2.1 dev: false - /md5/2.2.1: + /md5@2.2.1: resolution: {integrity: sha512-PlGG4z5mBANDGCKsYQe0CaUYHdZYZt8ZPZLmEt+Urf0W4GlpTX4HescwHU+dc9+Z/G/vZKYZYFrwgm9VxK6QOQ==} dependencies: charenc: 0.0.2 @@ -12488,27 +12451,27 @@ packages: is-buffer: 1.1.6 dev: false - /mdn-data/2.0.14: + /mdn-data@2.0.14: resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==} dev: false - /media-typer/0.3.0: + /media-typer@0.3.0: resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} engines: {node: '>= 0.6'} dev: false - /memfs/3.4.13: + /memfs@3.4.13: resolution: {integrity: sha512-omTM41g3Skpvx5dSYeZIbXKcXoAVc/AoMNwn9TKx++L/gaen/+4TTttmu8ZSch5vfVJ8uJvGbroTsIlslRg6lg==} engines: {node: '>= 4.0.0'} dependencies: fs-monkey: 1.0.3 dev: false - /memoize-one/6.0.0: + /memoize-one@6.0.0: resolution: {integrity: sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==} dev: false - /meow/8.1.2: + /meow@8.1.2: resolution: {integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==} engines: {node: '>=10'} dependencies: @@ -12525,66 +12488,65 @@ packages: yargs-parser: 20.2.9 dev: true - /merge-descriptors/1.0.1: + /merge-descriptors@1.0.1: resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==} dev: false - /merge-stream/2.0.0: + /merge-stream@2.0.0: resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} - /merge2/1.4.1: + /merge2@1.4.1: resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} engines: {node: '>= 8'} - /methods/1.1.2: + /methods@1.1.2: resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} engines: {node: '>= 0.6'} dev: false - /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 - dev: false - /mime/3.0.0: + /mime@3.0.0: resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==} engines: {node: '>=10.0.0'} hasBin: true dev: true - /mimic-fn/2.1.0: + /mimic-fn@2.1.0: resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} engines: {node: '>=6'} - /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.4.7_webpack@5.75.0: + /mini-css-extract-plugin@2.4.7(webpack@5.75.0): resolution: {integrity: sha512-euWmddf0sk9Nv1O0gfeeUAvAkoSlWncNLF77C0TP2+WoPvy8mAHKOzMajcCz2dzvyt3CNgxb1obIEVFIRxaipg==} engines: {node: '>= 12.13.0'} peerDependencies: @@ -12594,38 +12556,38 @@ packages: webpack: 5.75.0 dev: false - /minimalistic-assert/1.0.1: + /minimalistic-assert@1.0.1: resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==} dev: false - /minimalistic-crypto-utils/1.0.1: + /minimalistic-crypto-utils@1.0.1: resolution: {integrity: sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==} dev: false - /minimatch/3.0.5: + /minimatch@3.0.5: resolution: {integrity: sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==} dependencies: brace-expansion: 1.1.11 - /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: false - /minimatch/5.1.6: + /minimatch@5.1.6: resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} engines: {node: '>=10'} dependencies: brace-expansion: 2.0.1 - /minimist-options/4.1.0: + /minimist-options@4.1.0: resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} engines: {node: '>= 6'} dependencies: @@ -12634,17 +12596,17 @@ packages: kind-of: 6.0.3 dev: true - /minimist/1.2.8: + /minimist@1.2.8: resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} - /minipass/3.3.6: + /minipass@3.3.6: resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} engines: {node: '>=8'} dependencies: yallist: 4.0.0 dev: true - /minizlib/2.1.2: + /minizlib@2.1.2: resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} engines: {node: '>= 8'} dependencies: @@ -12652,16 +12614,16 @@ packages: yallist: 4.0.0 dev: true - /miscreant/0.3.2: + /miscreant@0.3.2: resolution: {integrity: sha512-fL9KxsQz9BJB2KGPMHFrReioywkiomBiuaLk6EuChijK0BsJsIKJXdVomR+/bPj5mvbFD6wM0CM3bZio9g7OHA==} dev: false - /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 @@ -12669,7 +12631,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 @@ -12689,28 +12651,27 @@ packages: yargs-unparser: 2.0.0 dev: false - /modify-values/1.0.1: + /modify-values@1.0.1: resolution: {integrity: sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==} engines: {node: '>=0.10.0'} 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==} - dev: false - /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==} dev: false - /multicast-dns/7.2.5: + /multicast-dns@7.2.5: resolution: {integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==} hasBin: true dependencies: @@ -12718,66 +12679,65 @@ packages: thunky: 1.1.0 dev: false - /multiformats/9.9.0: + /multiformats@9.9.0: resolution: {integrity: sha512-HoMUjhH9T8DDBNT+6xzkrd9ga/XiBI4xLr58LJACwK6G3HTOPeMz4nB4KJs33L2BelrIJa7P0VuNaVF3hMYfjg==} dev: false - /multipipe/1.0.2: + /multipipe@1.0.2: resolution: {integrity: sha512-6uiC9OvY71vzSGX8lZvSqscE7ft9nPupJ8fMjrCNRAUy2LREUW42UL+V/NTrogr6rFgRydUrCX4ZitfpSNkSCQ==} dependencies: duplexer2: 0.1.4 object-assign: 4.1.1 dev: false - /nan/2.17.0: + /nan@2.17.0: resolution: {integrity: sha512-2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ==} dev: false - /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: false - /nanoid/3.3.4: + /nanoid@3.3.4: resolution: {integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==} engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true - /natural-compare-lite/1.4.0: + /natural-compare-lite@1.4.0: resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==} dev: true - /natural-compare/1.4.0: + /natural-compare@1.4.0: resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} - /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 - dev: false optional: true - /negotiator/0.6.3: + /negotiator@0.6.3: resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} engines: {node: '>= 0.6'} dev: false - /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 - /next/13.2.3_6m24vuloj5ihw4zc5lbsktc4fu: + /next@13.2.3(@babel/core@7.21.0)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-nKFJC6upCPN7DWRx4+0S/1PIOT7vNlCT157w9AzbXEgKy6zkiPKEt5YyRUsRZkmpEqBVrGgOqNfwecTociyg+w==} engines: {node: '>=14.6.0'} hasBin: true @@ -12803,8 +12763,8 @@ packages: caniuse-lite: 1.0.30001457 postcss: 8.4.14 react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 - styled-jsx: 5.1.1_q2tyk3gci27qk4qoatek53e4vi + react-dom: 18.2.0(react@18.2.0) + styled-jsx: 5.1.1(@babel/core@7.21.0)(react@18.2.0) optionalDependencies: '@next/swc-android-arm-eabi': 13.2.3 '@next/swc-android-arm64': 13.2.3 @@ -12824,20 +12784,20 @@ packages: - babel-plugin-macros dev: false - /node-abort-controller/3.1.1: + /node-abort-controller@3.1.1: resolution: {integrity: sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==} dev: false - /node-addon-api/3.2.1: + /node-addon-api@3.2.1: resolution: {integrity: sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==} - /node-emoji/1.11.0: + /node-emoji@1.11.0: resolution: {integrity: sha512-wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A==} dependencies: lodash: 4.17.21 dev: true - /node-fetch/2.6.9: + /node-fetch@2.6.9: resolution: {integrity: sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==} engines: {node: 4.x || >=6.0.0} peerDependencies: @@ -12849,26 +12809,26 @@ packages: whatwg-url: 5.0.0 dev: true - /node-forge/1.3.1: + /node-forge@1.3.1: resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==} engines: {node: '>= 6.13.0'} dev: false - /node-gyp-build/4.6.0: + /node-gyp-build@4.6.0: resolution: {integrity: sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ==} hasBin: 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-releases/2.0.10: + /node-releases@2.0.10: resolution: {integrity: sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==} - /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 @@ -12877,7 +12837,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: @@ -12887,33 +12847,33 @@ packages: validate-npm-package-license: 3.0.4 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'} dev: false - /normalize-url/6.1.0: + /normalize-url@6.1.0: resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==} engines: {node: '>=10'} - /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 @@ -12993,17 +12953,17 @@ packages: - which - write-file-atomic - /nth-check/2.1.1: + /nth-check@2.1.1: resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} dependencies: boolbase: 1.0.0 dev: false - /nwsapi/2.2.2: + /nwsapi@2.2.2: resolution: {integrity: sha512-90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw==} dev: true - /nx/15.7.2: + /nx@15.7.2: resolution: {integrity: sha512-VRb+CZCji3G4ikdMAGoh6TeU9Q6n5atRwqRSFhUX63er8zhlMvWHLskPMZC4q/81edo/E7RhbmEVUD5MB0JoeA==} hasBin: true requiresBuild: true @@ -13064,7 +13024,7 @@ packages: transitivePeerDependencies: - debug - /nx/15.8.5: + /nx@15.8.5: resolution: {integrity: sha512-1c6Y3rPSzzlqQVJPo33Ej0HY/3t9ykeaPs074HpYxXH0+GU1BSIv/9EfXKQGvmBzjs5yAx6asGIv+H3QDrFt3A==} hasBin: true requiresBuild: true @@ -13125,14 +13085,14 @@ packages: transitivePeerDependencies: - debug - /object-assign/4.1.1: + /object-assign@4.1.1: resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} engines: {node: '>=0.10.0'} - /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: @@ -13140,15 +13100,15 @@ packages: define-properties: 1.2.0 dev: true - /object-keys/0.4.0: + /object-keys@0.4.0: resolution: {integrity: sha512-ncrLw+X55z7bkl5PnUvHwFK9FcGuFYo9gtjws2XtSzL+aZ8tm830P60WJ0dSmFVaSalWieW5MD7kEdnXda9yJw==} dev: false - /object-keys/1.1.1: + /object-keys@1.1.1: resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} engines: {node: '>= 0.4'} - /object.assign/4.1.4: + /object.assign@4.1.4: resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==} engines: {node: '>= 0.4'} dependencies: @@ -13158,7 +13118,7 @@ packages: object-keys: 1.1.1 dev: true - /object.entries/1.1.6: + /object.entries@1.1.6: resolution: {integrity: sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==} engines: {node: '>= 0.4'} dependencies: @@ -13167,7 +13127,7 @@ packages: es-abstract: 1.21.1 dev: true - /object.fromentries/2.0.6: + /object.fromentries@2.0.6: resolution: {integrity: sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==} engines: {node: '>= 0.4'} dependencies: @@ -13176,14 +13136,14 @@ packages: es-abstract: 1.21.1 dev: true - /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.21.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: @@ -13192,45 +13152,45 @@ packages: es-abstract: 1.21.1 dev: true - /obuf/1.1.2: + /obuf@1.1.2: resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==} dev: false - /on-exit-leak-free/0.2.0: + /on-exit-leak-free@0.2.0: resolution: {integrity: sha512-dqaz3u44QbRXQooZLTUKU41ZrzYrcvLISVgbrzbyCMxpmSLJvZ3ZamIJIZ29P6OhZIkNIQKosdeM6t1LYbA9hg==} dev: false - /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 dev: false - /on-headers/1.0.2: + /on-headers@1.0.2: resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==} engines: {node: '>= 0.8'} dev: false - /once/1.4.0: + /once@1.4.0: resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} dependencies: wrappy: 1.0.2 - /onetime/5.1.2: + /onetime@5.1.2: resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} engines: {node: '>=6'} dependencies: mimic-fn: 2.1.0 - /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/8.4.2: + /open@8.4.2: resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} engines: {node: '>=12'} dependencies: @@ -13238,7 +13198,7 @@ packages: is-docker: 2.2.1 is-wsl: 2.2.0 - /optionator/0.8.3: + /optionator@0.8.3: resolution: {integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==} engines: {node: '>= 0.8.0'} dependencies: @@ -13250,7 +13210,7 @@ packages: word-wrap: 1.2.3 dev: true - /optionator/0.9.1: + /optionator@0.9.1: resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==} engines: {node: '>= 0.8.0'} dependencies: @@ -13261,7 +13221,7 @@ packages: type-check: 0.4.0 word-wrap: 1.2.3 - /osmojs/14.0.0-rc.0: + /osmojs@14.0.0-rc.0: resolution: {integrity: sha512-YXtg5mxaACWc0N8vKqWvdV3ZO9y/NgtJeUQPvjin+bkveEMkJA4RSN0nl0kRTKQIY6Tjt8YWgae+/98VF/2pzA==} dependencies: '@babel/runtime': 7.21.0 @@ -13278,134 +13238,134 @@ packages: - utf-8-validate dev: false - /ospath/1.2.2: + /ospath@1.2.2: resolution: {integrity: sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==} - /p-each-series/3.0.0: + /p-each-series@3.0.0: resolution: {integrity: sha512-lastgtAdoH9YaLyDa5i5z64q+kzOcQHsQ5SsZJD3q0VEyI8mq872S3geuNbRUQLVAE9siMfgKrpj7MloKFHruw==} engines: {node: '>=12'} 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-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: true - /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/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: true - /p-map/2.1.0: + /p-map@2.1.0: resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==} engines: {node: '>=6'} 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-reduce/2.1.0: + /p-reduce@2.1.0: resolution: {integrity: sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==} engines: {node: '>=8'} dev: true - /p-reduce/3.0.0: + /p-reduce@3.0.0: resolution: {integrity: sha512-xsrIUgI0Kn6iyDYm9StOpOeK29XM1aboGji26+QEortiFST1hGZaUQOLhtEbqHErPpGW/aSz6allwK2qcptp0Q==} engines: {node: '>=12'} 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-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'} - /pako/0.2.9: + /pako@0.2.9: resolution: {integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==} dev: false - /pako/1.0.11: + /pako@1.0.11: resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==} dev: false - /pako/2.1.0: + /pako@2.1.0: resolution: {integrity: sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug==} dev: false - /parent-module/1.0.1: + /parent-module@1.0.1: resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} engines: {node: '>=6'} dependencies: callsites: 3.1.0 - /parse-json/4.0.0: + /parse-json@4.0.0: resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==} engines: {node: '>=4'} dependencies: @@ -13413,7 +13373,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: @@ -13422,68 +13382,67 @@ packages: json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 - /parse-node-version/1.0.1: + /parse-node-version@1.0.1: resolution: {integrity: sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==} engines: {node: '>= 0.10'} - dev: false - /parse5/4.0.0: + /parse5@4.0.0: resolution: {integrity: sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==} dev: false - /parse5/7.1.2: + /parse5@7.1.2: resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==} dependencies: entities: 4.4.0 dev: true - /parseurl/1.3.3: + /parseurl@1.3.3: resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} engines: {node: '>= 0.8'} dev: false - /path-exists/3.0.0: + /path-exists@3.0.0: resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} engines: {node: '>=4'} dev: true - /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: true - /path-is-absolute/1.0.1: + /path-is-absolute@1.0.1: resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} engines: {node: '>=0.10.0'} - /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-parse/1.0.7: + /path-parse@1.0.7: resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} - /path-to-regexp/0.1.7: + /path-to-regexp@0.1.7: resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==} dev: false - /path-type/4.0.0: + /path-type@4.0.0: resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} engines: {node: '>=8'} - /pathval/1.1.1: + /pathval@1.1.1: resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==} - /pbkdf2/3.1.2: + /pbkdf2@3.1.2: resolution: {integrity: sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==} engines: {node: '>=0.12'} dependencies: @@ -13494,46 +13453,45 @@ packages: sha.js: 2.4.11 dev: false - /pend/1.2.0: + /pend@1.2.0: resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==} - /performance-now/2.1.0: + /performance-now@2.1.0: resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==} - /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'} - /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'} - dev: false optional: true - /pino-abstract-transport/0.5.0: + /pino-abstract-transport@0.5.0: resolution: {integrity: sha512-+KAgmVeqXYbTtU2FScx1XS3kNyfZ5TrXY07V96QnUSFqo2gAqlvmaxH67Lj7SWazqsMabf+58ctdTcBgnOLUOQ==} dependencies: duplexify: 4.1.2 split2: 4.1.0 dev: false - /pino-std-serializers/4.0.0: + /pino-std-serializers@4.0.0: resolution: {integrity: sha512-cK0pekc1Kjy5w9V2/n+8MkZwusa6EyyxfeQCB799CQRhRt/CqYKiWs5adeu8Shve2ZNffvfC/7J64A2PJo1W/Q==} dev: false - /pino/7.11.0: + /pino@7.11.0: resolution: {integrity: sha512-dMACeu63HtRLmCG8VKdy4cShCPKaYDR4youZqoSWLxl5Gu99HUw8bw75thbPv9Nip+H+QYX8o3ZJbTdVZZ2TVg==} hasBin: true dependencies: @@ -13550,11 +13508,11 @@ packages: thread-stream: 0.15.2 dev: false - /pirates/4.0.5: + /pirates@4.0.5: resolution: {integrity: sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==} engines: {node: '>= 6'} - /pkg-conf/2.1.0: + /pkg-conf@2.1.0: resolution: {integrity: sha512-C+VUP+8jis7EsQZIhDYmS5qlNtjv2yP4SNtjXK9AP1ZcTRlnSfuumaTnRfYZnYgUUYVIKqL0fRvmUGDV2fmp6g==} engines: {node: '>=4'} dependencies: @@ -13562,13 +13520,13 @@ packages: load-json-file: 4.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 - /postcss-calc/8.2.4_postcss@8.4.21: + /postcss-calc@8.2.4(postcss@8.4.21): resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==} peerDependencies: postcss: ^8.2.2 @@ -13578,7 +13536,7 @@ packages: postcss-value-parser: 4.2.0 dev: false - /postcss-colormin/5.3.1_postcss@8.4.21: + /postcss-colormin@5.3.1(postcss@8.4.21): resolution: {integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -13591,7 +13549,7 @@ packages: postcss-value-parser: 4.2.0 dev: false - /postcss-convert-values/5.1.3_postcss@8.4.21: + /postcss-convert-values@5.1.3(postcss@8.4.21): resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -13602,7 +13560,7 @@ packages: postcss-value-parser: 4.2.0 dev: false - /postcss-discard-comments/5.1.2_postcss@8.4.21: + /postcss-discard-comments@5.1.2(postcss@8.4.21): resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -13611,7 +13569,7 @@ packages: postcss: 8.4.21 dev: false - /postcss-discard-duplicates/5.1.0_postcss@8.4.21: + /postcss-discard-duplicates@5.1.0(postcss@8.4.21): resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -13620,7 +13578,7 @@ packages: postcss: 8.4.21 dev: false - /postcss-discard-empty/5.1.1_postcss@8.4.21: + /postcss-discard-empty@5.1.1(postcss@8.4.21): resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -13629,7 +13587,7 @@ packages: postcss: 8.4.21 dev: false - /postcss-discard-overridden/5.1.0_postcss@8.4.21: + /postcss-discard-overridden@5.1.0(postcss@8.4.21): resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -13638,7 +13596,7 @@ packages: postcss: 8.4.21 dev: false - /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: @@ -13650,7 +13608,7 @@ packages: resolve: 1.22.1 dev: false - /postcss-loader/6.2.1_6jdsrmfenkuhhw3gx4zvjlznce: + /postcss-loader@6.2.1(postcss@8.4.21)(webpack@5.75.0): resolution: {integrity: sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==} engines: {node: '>= 12.13.0'} peerDependencies: @@ -13664,7 +13622,7 @@ packages: webpack: 5.75.0 dev: false - /postcss-merge-longhand/5.1.7_postcss@8.4.21: + /postcss-merge-longhand@5.1.7(postcss@8.4.21): resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -13672,10 +13630,10 @@ packages: dependencies: postcss: 8.4.21 postcss-value-parser: 4.2.0 - stylehacks: 5.1.1_postcss@8.4.21 + stylehacks: 5.1.1(postcss@8.4.21) dev: false - /postcss-merge-rules/5.1.4_postcss@8.4.21: + /postcss-merge-rules@5.1.4(postcss@8.4.21): resolution: {integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -13683,12 +13641,12 @@ packages: dependencies: browserslist: 4.21.5 caniuse-api: 3.0.0 - cssnano-utils: 3.1.0_postcss@8.4.21 + cssnano-utils: 3.1.0(postcss@8.4.21) postcss: 8.4.21 postcss-selector-parser: 6.0.11 dev: false - /postcss-minify-font-values/5.1.0_postcss@8.4.21: + /postcss-minify-font-values@5.1.0(postcss@8.4.21): resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -13698,31 +13656,31 @@ packages: postcss-value-parser: 4.2.0 dev: false - /postcss-minify-gradients/5.1.1_postcss@8.4.21: + /postcss-minify-gradients@5.1.1(postcss@8.4.21): 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.21 + cssnano-utils: 3.1.0(postcss@8.4.21) postcss: 8.4.21 postcss-value-parser: 4.2.0 dev: false - /postcss-minify-params/5.1.4_postcss@8.4.21: + /postcss-minify-params@5.1.4(postcss@8.4.21): resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: browserslist: 4.21.5 - cssnano-utils: 3.1.0_postcss@8.4.21 + cssnano-utils: 3.1.0(postcss@8.4.21) postcss: 8.4.21 postcss-value-parser: 4.2.0 dev: false - /postcss-minify-selectors/5.2.1_postcss@8.4.21: + /postcss-minify-selectors@5.2.1(postcss@8.4.21): resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -13732,7 +13690,7 @@ packages: postcss-selector-parser: 6.0.11 dev: false - /postcss-modules-extract-imports/3.0.0_postcss@8.4.21: + /postcss-modules-extract-imports@3.0.0(postcss@8.4.21): resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: @@ -13741,19 +13699,19 @@ packages: postcss: 8.4.21 dev: false - /postcss-modules-local-by-default/4.0.0_postcss@8.4.21: + /postcss-modules-local-by-default@4.0.0(postcss@8.4.21): resolution: {integrity: sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - icss-utils: 5.1.0_postcss@8.4.21 + icss-utils: 5.1.0(postcss@8.4.21) postcss: 8.4.21 postcss-selector-parser: 6.0.11 postcss-value-parser: 4.2.0 dev: false - /postcss-modules-scope/3.0.0_postcss@8.4.21: + /postcss-modules-scope@3.0.0(postcss@8.4.21): resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: @@ -13763,17 +13721,17 @@ packages: postcss-selector-parser: 6.0.11 dev: false - /postcss-modules-values/4.0.0_postcss@8.4.21: + /postcss-modules-values@4.0.0(postcss@8.4.21): 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.21 + icss-utils: 5.1.0(postcss@8.4.21) postcss: 8.4.21 dev: false - /postcss-normalize-charset/5.1.0_postcss@8.4.21: + /postcss-normalize-charset@5.1.0(postcss@8.4.21): resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -13782,7 +13740,7 @@ packages: postcss: 8.4.21 dev: false - /postcss-normalize-display-values/5.1.0_postcss@8.4.21: + /postcss-normalize-display-values@5.1.0(postcss@8.4.21): resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -13792,7 +13750,7 @@ packages: postcss-value-parser: 4.2.0 dev: false - /postcss-normalize-positions/5.1.1_postcss@8.4.21: + /postcss-normalize-positions@5.1.1(postcss@8.4.21): resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -13802,7 +13760,7 @@ packages: postcss-value-parser: 4.2.0 dev: false - /postcss-normalize-repeat-style/5.1.1_postcss@8.4.21: + /postcss-normalize-repeat-style@5.1.1(postcss@8.4.21): resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -13812,7 +13770,7 @@ packages: postcss-value-parser: 4.2.0 dev: false - /postcss-normalize-string/5.1.0_postcss@8.4.21: + /postcss-normalize-string@5.1.0(postcss@8.4.21): resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -13822,7 +13780,7 @@ packages: postcss-value-parser: 4.2.0 dev: false - /postcss-normalize-timing-functions/5.1.0_postcss@8.4.21: + /postcss-normalize-timing-functions@5.1.0(postcss@8.4.21): resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -13832,7 +13790,7 @@ packages: postcss-value-parser: 4.2.0 dev: false - /postcss-normalize-unicode/5.1.1_postcss@8.4.21: + /postcss-normalize-unicode@5.1.1(postcss@8.4.21): resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -13843,7 +13801,7 @@ packages: postcss-value-parser: 4.2.0 dev: false - /postcss-normalize-url/5.1.0_postcss@8.4.21: + /postcss-normalize-url@5.1.0(postcss@8.4.21): resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -13854,7 +13812,7 @@ packages: postcss-value-parser: 4.2.0 dev: false - /postcss-normalize-whitespace/5.1.1_postcss@8.4.21: + /postcss-normalize-whitespace@5.1.1(postcss@8.4.21): resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -13864,18 +13822,18 @@ packages: postcss-value-parser: 4.2.0 dev: false - /postcss-ordered-values/5.1.3_postcss@8.4.21: + /postcss-ordered-values@5.1.3(postcss@8.4.21): 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.21 + cssnano-utils: 3.1.0(postcss@8.4.21) postcss: 8.4.21 postcss-value-parser: 4.2.0 dev: false - /postcss-reduce-initial/5.1.2_postcss@8.4.21: + /postcss-reduce-initial@5.1.2(postcss@8.4.21): resolution: {integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -13886,7 +13844,7 @@ packages: postcss: 8.4.21 dev: false - /postcss-reduce-transforms/5.1.0_postcss@8.4.21: + /postcss-reduce-transforms@5.1.0(postcss@8.4.21): resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -13896,7 +13854,7 @@ packages: postcss-value-parser: 4.2.0 dev: false - /postcss-selector-parser/6.0.11: + /postcss-selector-parser@6.0.11: resolution: {integrity: sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==} engines: {node: '>=4'} dependencies: @@ -13904,7 +13862,7 @@ packages: util-deprecate: 1.0.2 dev: false - /postcss-svgo/5.1.0_postcss@8.4.21: + /postcss-svgo@5.1.0(postcss@8.4.21): resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -13915,7 +13873,7 @@ packages: svgo: 2.8.0 dev: false - /postcss-unique-selectors/5.1.1_postcss@8.4.21: + /postcss-unique-selectors@5.1.1(postcss@8.4.21): resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -13925,11 +13883,11 @@ packages: postcss-selector-parser: 6.0.11 dev: false - /postcss-value-parser/4.2.0: + /postcss-value-parser@4.2.0: resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} dev: false - /postcss/8.4.14: + /postcss@8.4.14: resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==} engines: {node: ^10 || ^12 || >=14} dependencies: @@ -13938,7 +13896,7 @@ packages: source-map-js: 1.0.2 dev: false - /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: @@ -13946,25 +13904,25 @@ packages: picocolors: 1.0.0 source-map-js: 1.0.2 - /prelude-ls/1.1.2: + /prelude-ls@1.1.2: resolution: {integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==} engines: {node: '>= 0.8.0'} dev: true - /prelude-ls/1.2.1: + /prelude-ls@1.2.1: resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} engines: {node: '>= 0.8.0'} - /prettier/2.8.4: + /prettier@2.8.4: resolution: {integrity: sha512-vIS4Rlc2FNh0BySk3Wkd6xmwxB0FpOndW5fisM5H8hsZSxU2VWVB5CWIkIjWvrHjIhxk2g3bfMKM87zNTrZddw==} engines: {node: '>=10.13.0'} hasBin: true - /pretty-bytes/5.6.0: + /pretty-bytes@5.6.0: resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==} engines: {node: '>=6'} - /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: @@ -13973,7 +13931,7 @@ packages: react-is: 17.0.2 dev: true - /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: @@ -13982,7 +13940,7 @@ packages: ansi-styles: 5.2.0 react-is: 18.2.0 - /pretty-format/29.4.3: + /pretty-format@29.4.3: resolution: {integrity: sha512-cvpcHTc42lcsvOOAzd3XuNWTcvk1Jmnzqeu+WsOuiPmxUJTnkbAcFNsRKvEpBEUFVUgy/GTZLulZDcDEi+CIlA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -13991,14 +13949,14 @@ packages: react-is: 18.2.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-warning/1.0.0: + /process-warning@1.0.0: resolution: {integrity: sha512-du4wfLyj4yCZq1VupnVSZmRsPJsNuxoDQFdCFHLaYiEbFBD7QE0a+I4D7hOxrVnh78QE/YipFAj9lXHiXocV+Q==} dev: false - /prompts/2.4.2: + /prompts@2.4.2: resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} engines: {node: '>= 6'} dependencies: @@ -14006,18 +13964,18 @@ packages: sisteransi: 1.0.5 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 - /proto-list/1.2.4: + /proto-list@1.2.4: resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==} dev: true - /protobufjs/6.11.3: + /protobufjs@6.11.3: resolution: {integrity: sha512-xL96WDdCZYdU7Slin569tFX712BxsxslWwAfAhCYjQKGTq7dAU91Lomy6nLLhh/dyGhk/YH4TwTSRxTzhuHyZg==} hasBin: true requiresBuild: true @@ -14036,7 +13994,7 @@ packages: '@types/node': 18.14.2 long: 4.0.0 - /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: @@ -14044,36 +14002,35 @@ packages: ipaddr.js: 1.9.1 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==} - dev: false optional: true - /psl/1.9.0: + /psl@1.9.0: resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==} - /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 - /punycode/2.3.0: + /punycode@2.3.0: resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==} engines: {node: '>=6'} - /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'} dev: true - /qrcode.react/3.1.0_react@18.2.0: + /qrcode.react@3.1.0(react@18.2.0): resolution: {integrity: sha512-oyF+Urr3oAMUG/OiOuONL3HXM+53wvuH3mtIWQrYmsXoAq0DkvZp2RYUWFSMFtbdOpuS++9v+WAkzNVkMlNW6Q==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -14081,20 +14038,20 @@ packages: react: 18.2.0 dev: false - /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 dev: false - /query-string/7.1.1: + /query-string@7.1.1: resolution: {integrity: sha512-MplouLRDHBZSG9z7fpuAAcI7aAYjDLhtsiVZsevsfaHWDS2IDdORKbSd1kWUA+V4zyva/HZoSfpwnYMMQDhb0w==} engines: {node: '>=6'} dependencies: @@ -14104,34 +14061,34 @@ packages: strict-uri-encode: 2.0.0 dev: false - /querystringify/2.2.0: + /querystringify@2.2.0: resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} dev: true - /queue-microtask/1.2.3: + /queue-microtask@1.2.3: resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} - /quick-format-unescaped/4.0.4: + /quick-format-unescaped@4.0.4: resolution: {integrity: sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==} dev: false - /quick-lru/4.0.1: + /quick-lru@4.0.1: resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==} engines: {node: '>=8'} dev: true - /randombytes/2.1.0: + /randombytes@2.1.0: resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} dependencies: safe-buffer: 5.2.1 dev: false - /range-parser/1.2.1: + /range-parser@1.2.1: resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} engines: {node: '>= 0.6'} dev: false - /raw-body/2.5.1: + /raw-body@2.5.1: resolution: {integrity: sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==} engines: {node: '>= 0.8'} dependencies: @@ -14141,7 +14098,7 @@ packages: unpipe: 1.0.0 dev: false - /rc/1.2.8: + /rc@1.2.8: resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} hasBin: true dependencies: @@ -14151,7 +14108,7 @@ packages: strip-json-comments: 2.0.1 dev: true - /react-clientside-effect/1.2.6_react@18.2.0: + /react-clientside-effect@1.2.6(react@18.2.0): resolution: {integrity: sha512-XGGGRQAKY+q25Lz9a/4EPqom7WRjz3z9R2k4jhVKA/puQFH/5Nt27vFZYql4m4NVNdUvX8PS3O7r/Zzm7cjUlg==} peerDependencies: react: ^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 @@ -14160,7 +14117,7 @@ packages: react: 18.2.0 dev: false - /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 @@ -14169,11 +14126,11 @@ packages: react: 18.2.0 scheduler: 0.23.0 - /react-fast-compare/3.2.0: + /react-fast-compare@3.2.0: resolution: {integrity: sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA==} dev: false - /react-focus-lock/2.9.4_pmekkgnqduwlme35zpnqhenc34: + /react-focus-lock@2.9.4(@types/react@18.0.28)(react@18.2.0): resolution: {integrity: sha512-7pEdXyMseqm3kVjhdVH18sovparAzLg5h6WvIx7/Ck3ekjhrrDMEegHSa3swwC8wgfdd7DIdUVRGeiHT9/7Sgg==} peerDependencies: '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -14187,12 +14144,12 @@ packages: focus-lock: 0.11.6 prop-types: 15.8.1 react: 18.2.0 - react-clientside-effect: 1.2.6_react@18.2.0 - use-callback-ref: 1.3.0_pmekkgnqduwlme35zpnqhenc34 - use-sidecar: 1.1.2_pmekkgnqduwlme35zpnqhenc34 + react-clientside-effect: 1.2.6(react@18.2.0) + use-callback-ref: 1.3.0(@types/react@18.0.28)(react@18.2.0) + use-sidecar: 1.1.2(@types/react@18.0.28)(react@18.2.0) dev: false - /react-icons/4.4.0_react@18.2.0: + /react-icons@4.4.0(react@18.2.0): resolution: {integrity: sha512-fSbvHeVYo/B5/L4VhB7sBA1i2tS8MkT0Hb9t2H1AVPkwGfVHLJCqyr2Py9dKMxsyM63Eng1GkdZfbWj+Fmv8Rg==} peerDependencies: react: '*' @@ -14200,22 +14157,22 @@ packages: react: 18.2.0 dev: false - /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==} dev: true - /react-is/18.2.0: + /react-is@18.2.0: resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==} - /react-refresh/0.14.0: + /react-refresh@0.14.0: resolution: {integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==} engines: {node: '>=0.10.0'} dev: true - /react-remove-scroll-bar/2.3.4_pmekkgnqduwlme35zpnqhenc34: + /react-remove-scroll-bar@2.3.4(@types/react@18.0.28)(react@18.2.0): resolution: {integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==} engines: {node: '>=10'} peerDependencies: @@ -14227,11 +14184,11 @@ packages: dependencies: '@types/react': 18.0.28 react: 18.2.0 - react-style-singleton: 2.2.1_pmekkgnqduwlme35zpnqhenc34 + react-style-singleton: 2.2.1(@types/react@18.0.28)(react@18.2.0) tslib: 2.5.0 dev: false - /react-remove-scroll/2.5.5_pmekkgnqduwlme35zpnqhenc34: + /react-remove-scroll@2.5.5(@types/react@18.0.28)(react@18.2.0): resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==} engines: {node: '>=10'} peerDependencies: @@ -14243,14 +14200,14 @@ packages: dependencies: '@types/react': 18.0.28 react: 18.2.0 - react-remove-scroll-bar: 2.3.4_pmekkgnqduwlme35zpnqhenc34 - react-style-singleton: 2.2.1_pmekkgnqduwlme35zpnqhenc34 + react-remove-scroll-bar: 2.3.4(@types/react@18.0.28)(react@18.2.0) + react-style-singleton: 2.2.1(@types/react@18.0.28)(react@18.2.0) tslib: 2.5.0 - use-callback-ref: 1.3.0_pmekkgnqduwlme35zpnqhenc34 - use-sidecar: 1.1.2_pmekkgnqduwlme35zpnqhenc34 + use-callback-ref: 1.3.0(@types/react@18.0.28)(react@18.2.0) + use-sidecar: 1.1.2(@types/react@18.0.28)(react@18.2.0) dev: false - /react-resize-detector/8.0.4_biqbaboplfbrettd7655fr4n2y: + /react-resize-detector@8.0.4(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-ln9pMAob8y8mc9UI4aZuuWFiyMqBjnTs/sxe9Vs9dPXUjwCTeKK1FP8I75ufnb/2mEEZXG6wOo/fjMcBRRuAXw==} peerDependencies: react: ^16.0.0 || ^17.0.0 || ^18.0.0 @@ -14258,10 +14215,10 @@ packages: dependencies: lodash: 4.17.21 react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 + react-dom: 18.2.0(react@18.2.0) dev: false - /react-router-dom/6.8.1_biqbaboplfbrettd7655fr4n2y: + /react-router-dom@6.8.1(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-67EXNfkQgf34P7+PSb6VlBuaacGhkKn3kpE51+P6zYSG2kiRoumXEL6e27zTa9+PGF2MNXbgIUHTVlleLbIcHQ==} engines: {node: '>=14'} peerDependencies: @@ -14270,11 +14227,11 @@ packages: dependencies: '@remix-run/router': 1.3.2 react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 - react-router: 6.8.1_react@18.2.0 + react-dom: 18.2.0(react@18.2.0) + react-router: 6.8.1(react@18.2.0) dev: false - /react-router/6.8.1_react@18.2.0: + /react-router@6.8.1(react@18.2.0): resolution: {integrity: sha512-Jgi8BzAJQ8MkPt8ipXnR73rnD7EmZ0HFFb7jdQU24TynGW1Ooqin2KVDN9voSC+7xhqbbCd2cjGUepb6RObnyg==} engines: {node: '>=14'} peerDependencies: @@ -14284,7 +14241,7 @@ packages: react: 18.2.0 dev: false - /react-select/5.7.0_zula6vjvt3wdocc4mwcxqa6nzi: + /react-select@5.7.0(@types/react@18.0.28)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-lJGiMxCa3cqnUr2Jjtg9YHsaytiZqeNOKeibv6WF5zbK/fPegZ1hg3y/9P1RZVLhqBTs0PfqQLKuAACednYGhQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -14292,20 +14249,20 @@ packages: dependencies: '@babel/runtime': 7.21.0 '@emotion/cache': 11.10.5 - '@emotion/react': 11.10.6_pmekkgnqduwlme35zpnqhenc34 + '@emotion/react': 11.10.6(@types/react@18.0.28)(react@18.2.0) '@floating-ui/dom': 1.2.3 '@types/react-transition-group': 4.4.5 memoize-one: 6.0.0 prop-types: 15.8.1 react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 - react-transition-group: 4.4.5_biqbaboplfbrettd7655fr4n2y - use-isomorphic-layout-effect: 1.1.2_pmekkgnqduwlme35zpnqhenc34 + react-dom: 18.2.0(react@18.2.0) + react-transition-group: 4.4.5(react-dom@18.2.0)(react@18.2.0) + use-isomorphic-layout-effect: 1.1.2(@types/react@18.0.28)(react@18.2.0) transitivePeerDependencies: - '@types/react' dev: false - /react-shallow-renderer/16.15.0_react@18.2.0: + /react-shallow-renderer@16.15.0(react@18.2.0): resolution: {integrity: sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==} peerDependencies: react: ^16.0.0 || ^17.0.0 || ^18.0.0 @@ -14315,7 +14272,7 @@ packages: react-is: 18.2.0 dev: true - /react-style-singleton/2.2.1_pmekkgnqduwlme35zpnqhenc34: + /react-style-singleton@2.2.1(@types/react@18.0.28)(react@18.2.0): resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==} engines: {node: '>=10'} peerDependencies: @@ -14332,18 +14289,18 @@ packages: tslib: 2.5.0 dev: false - /react-test-renderer/18.2.0_react@18.2.0: + /react-test-renderer@18.2.0(react@18.2.0): resolution: {integrity: sha512-JWD+aQ0lh2gvh4NM3bBM42Kx+XybOxCpgYK7F8ugAlpaTSnWsX+39Z4XkOykGZAHrjwwTZT3x3KxswVWxHPUqA==} peerDependencies: react: ^18.2.0 dependencies: react: 18.2.0 react-is: 18.2.0 - react-shallow-renderer: 16.15.0_react@18.2.0 + react-shallow-renderer: 16.15.0(react@18.2.0) scheduler: 0.23.0 dev: true - /react-transition-group/4.4.5_biqbaboplfbrettd7655fr4n2y: + /react-transition-group@4.4.5(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==} peerDependencies: react: '>=16.6.0' @@ -14354,22 +14311,22 @@ packages: loose-envify: 1.4.0 prop-types: 15.8.1 react: 18.2.0 - react-dom: 18.2.0_react@18.2.0 + react-dom: 18.2.0(react@18.2.0) dev: false - /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 - /read-cache/1.0.0: + /read-cache@1.0.0: resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} dependencies: pify: 2.3.0 dev: false - /read-pkg-up/7.0.1: + /read-pkg-up@7.0.1: resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} engines: {node: '>=8'} dependencies: @@ -14378,7 +14335,7 @@ packages: type-fest: 0.8.1 dev: true - /read-pkg-up/9.1.0: + /read-pkg-up@9.1.0: resolution: {integrity: sha512-vaMRR1AC1nrd5CQM0PhlRsO5oc2AAigqr7cCrZ/MW/Rsaflz4RlgzkpL4qoU/z1F6wrbd85iFv1OQj/y5RdGvg==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: @@ -14387,7 +14344,7 @@ packages: type-fest: 2.19.0 dev: true - /read-pkg/5.2.0: + /read-pkg@5.2.0: resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} engines: {node: '>=8'} dependencies: @@ -14397,7 +14354,7 @@ packages: type-fest: 0.6.0 dev: true - /read-pkg/7.1.0: + /read-pkg@7.1.0: resolution: {integrity: sha512-5iOehe+WF75IccPc30bWTbpdDQLOCc3Uu8bi3Dte3Eueij81yx1Mrufk8qBx/YAbR4uL1FdUr+7BKXDwEtisXg==} engines: {node: '>=12.20'} dependencies: @@ -14407,7 +14364,7 @@ packages: type-fest: 2.19.0 dev: true - /readable-stream/1.0.34: + /readable-stream@1.0.34: resolution: {integrity: sha512-ok1qVCJuRkNmvebYikljxJA/UEsKwLl2nI1OmaqAu4/UE+h0wKCHok4XkL/gvi39OacXvw59RJUOFUkDib2rHg==} dependencies: core-util-is: 1.0.2 @@ -14416,7 +14373,7 @@ packages: string_decoder: 0.10.31 dev: false - /readable-stream/2.3.8: + /readable-stream@2.3.8: resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} dependencies: core-util-is: 1.0.2 @@ -14427,7 +14384,7 @@ packages: string_decoder: 1.1.1 util-deprecate: 1.0.2 - /readable-stream/3.6.1: + /readable-stream@3.6.1: resolution: {integrity: sha512-+rQmrWMYGA90yenhTYsLWAsLsqVC8osOw6PKE1HDYiO0gdPeKe/xDHNzIAIn4C91YQ6oenEhfYqqc1883qHbjQ==} engines: {node: '>= 6'} dependencies: @@ -14435,22 +14392,22 @@ packages: string_decoder: 1.3.0 util-deprecate: 1.0.2 - /readdirp/3.6.0: + /readdirp@3.6.0: resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} engines: {node: '>=8.10.0'} dependencies: picomatch: 2.3.1 - /readonly-date/1.0.0: + /readonly-date@1.0.0: resolution: {integrity: sha512-tMKIV7hlk0h4mO3JTmmVuIlJVXjKk3Sep9Bf5OH0O+758ruuVkUy2J9SttDLm91IEX/WHlXPSpxMGjPj4beMIQ==} dev: false - /real-require/0.1.0: + /real-require@0.1.0: resolution: {integrity: sha512-r/H9MzAWtrv8aSVjPCMFpDMl5q66GqtmmRkRjpHTsp4zBAa+snZyiQNlMONiUmEJcsnaw0wCauJ2GWODr/aFkg==} engines: {node: '>= 12.13.0'} dev: false - /redent/3.0.0: + /redent@3.0.0: resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} engines: {node: '>=8'} dependencies: @@ -14458,30 +14415,30 @@ packages: strip-indent: 3.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 - /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.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 - /regexp.prototype.flags/1.4.3: + /regexp.prototype.flags@1.4.3: resolution: {integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==} engines: {node: '>= 0.4'} dependencies: @@ -14490,11 +14447,11 @@ packages: functions-have-names: 1.2.3 dev: true - /regexpp/3.2.0: + /regexpp@3.2.0: resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} engines: {node: '>=8'} - /regexpu-core/5.3.1: + /regexpu-core@5.3.1: resolution: {integrity: sha512-nCOzW2V/X15XpLsK2rlgdwrysrBq+AauCn+omItIz4R1pIcmeot5zvjdmOBRLzEH/CkC6IxMJVmxDe3QcMuNVQ==} engines: {node: '>=4'} dependencies: @@ -14505,71 +14462,71 @@ 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.0 dev: true - /regjsparser/0.9.1: + /regjsparser@0.9.1: resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==} hasBin: true dependencies: jsesc: 0.5.0 - /remeda/0.0.32: + /remeda@0.0.32: resolution: {integrity: sha512-FEdl8ONpqY7AvvMHG5WYdomc0mGf2khHPUDu6QvNkOq4Wjkw5BvzWM4QyksAQ/US1sFIIRG8TVBn6iJx6HbRrA==} dev: true - /request-progress/3.0.0: + /request-progress@3.0.0: resolution: {integrity: sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==} dependencies: throttleit: 1.0.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'} - /requires-port/1.0.0: + /requires-port@1.0.0: resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} - /resolve-cwd/3.0.0: + /resolve-cwd@3.0.0: resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==} engines: {node: '>=8'} dependencies: resolve-from: 5.0.0 dev: true - /resolve-from/4.0.0: + /resolve-from@4.0.0: resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} engines: {node: '>=4'} - /resolve-from/5.0.0: + /resolve-from@5.0.0: resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} engines: {node: '>=8'} - /resolve-global/1.0.0: + /resolve-global@1.0.0: resolution: {integrity: sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==} engines: {node: '>=8'} dependencies: global-dirs: 0.1.1 dev: true - /resolve.exports/1.1.0: + /resolve.exports@1.1.0: resolution: {integrity: sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==} engines: {node: '>=10'} - /resolve.exports/2.0.0: + /resolve.exports@2.0.0: resolution: {integrity: sha512-6K/gDlqgQscOlg9fSRpWstA8sYe8rbELsSTNpx+3kTrsVCzvSl0zIvRErM7fdl9ERWDsKnrLnwB+Ne89918XOg==} engines: {node: '>=10'} dev: true - /resolve/1.22.1: + /resolve@1.22.1: resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==} hasBin: true dependencies: @@ -14577,7 +14534,7 @@ packages: path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 - /resolve/2.0.0-next.4: + /resolve@2.0.0-next.4: resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==} hasBin: true dependencies: @@ -14586,38 +14543,38 @@ packages: supports-preserve-symlinks-flag: 1.0.0 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 - /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'} - /rfdc/1.3.0: + /rfdc@1.3.0: resolution: {integrity: sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==} - /rimraf/3.0.2: + /rimraf@3.0.2: resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} hasBin: true dependencies: glob: 7.2.3 - /ripemd160/2.0.2: + /ripemd160@2.0.2: resolution: {integrity: sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==} dependencies: hash-base: 3.1.0 inherits: 2.0.4 dev: false - /rollup/2.79.1: + /rollup@2.79.1: resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==} engines: {node: '>=10.0.0'} hasBin: true @@ -14625,7 +14582,7 @@ packages: fsevents: 2.3.2 dev: true - /rollup/3.17.2: + /rollup@3.17.2: resolution: {integrity: sha512-qMNZdlQPCkWodrAZ3qnJtvCAl4vpQ8q77uEujVCCbC/6CLB7Lcmvjq7HyiOSnf4fxTT9XgsE36oLHJBH49xjqA==} engines: {node: '>=14.18.0', npm: '>=8.0.0'} hasBin: true @@ -14633,33 +14590,33 @@ packages: fsevents: 2.3.2 dev: true - /run-parallel/1.2.0: + /run-parallel@1.2.0: resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} dependencies: queue-microtask: 1.2.3 - /rxjs/6.6.7: + /rxjs@6.6.7: resolution: {integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==} engines: {npm: '>=2.0.0'} dependencies: tslib: 1.14.1 - /rxjs/7.8.0: + /rxjs@7.8.0: resolution: {integrity: sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==} dependencies: tslib: 2.5.0 - /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-json-utils/1.1.1: + /safe-json-utils@1.1.1: resolution: {integrity: sha512-SAJWGKDs50tAbiDXLf89PDwt9XYkWyANFWVzn4dTXl5QyI8t2o/bW5/OJl3lvc2WVU4MEpTo9Yz5NVFNsp+OJQ==} dev: false - /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 @@ -14667,15 +14624,15 @@ packages: is-regex: 1.1.4 dev: true - /safe-stable-stringify/2.4.2: + /safe-stable-stringify@2.4.2: resolution: {integrity: sha512-gMxvPJYhP0O9n2pvcfYfIuYgbledAOJFcqRThtPRmjscaipiwcwPPKLytpVzMkG2HAN87Qmo2d4PtGiri1dSLA==} engines: {node: '>=10'} dev: false - /safer-buffer/2.1.2: + /safer-buffer@2.1.2: resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} - /sass-loader/12.6.0_sass@1.58.3+webpack@5.75.0: + /sass-loader@12.6.0(sass@1.58.3)(webpack@5.75.0): resolution: {integrity: sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==} engines: {node: '>= 12.13.0'} peerDependencies: @@ -14700,7 +14657,7 @@ packages: webpack: 5.75.0 dev: false - /sass/1.58.3: + /sass@1.58.3: resolution: {integrity: sha512-Q7RaEtYf6BflYrQ+buPudKR26/lH+10EmO9bBqbmPh/KeLqv8bjpTNqxe71ocONqXq+jYiCbpPUmQMS+JJPk4A==} engines: {node: '>=12.0.0'} hasBin: true @@ -14710,42 +14667,41 @@ packages: source-map-js: 1.0.2 dev: false - /sax/1.2.4: + /sax@1.2.4: resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==} - dev: false - /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.23.0: + /scheduler@0.23.0: resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==} dependencies: loose-envify: 1.4.0 - /schema-utils/3.1.1: + /schema-utils@3.1.1: resolution: {integrity: sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==} engines: {node: '>= 10.13.0'} dependencies: '@types/json-schema': 7.0.11 ajv: 6.12.6 - ajv-keywords: 3.5.2_ajv@6.12.6 + ajv-keywords: 3.5.2(ajv@6.12.6) dev: false - /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.11 ajv: 8.12.0 - ajv-formats: 2.1.1 - 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) dev: false - /secretjs/0.17.7: + /secretjs@0.17.7: resolution: {integrity: sha512-j39l9+vR2A8067QBqDDejS7LmRLgdkG4uRw2Ar6HMfzDGo26eTh7cIXVlVu/yHBumxtQzKun20epOXwuYHXjQg==} deprecated: deprecated dependencies: @@ -14764,22 +14720,22 @@ packages: - debug dev: false - /secure-random/1.1.2: + /secure-random@1.1.2: resolution: {integrity: sha512-H2bdSKERKdBV1SwoqYm6C0y+9EA94v6SUBOWO8kDndc4NoUih7Dv6Tsgma7zO1lv27wIvjlD0ZpMQk7um5dheQ==} dev: false - /select-hose/2.0.0: + /select-hose@2.0.0: resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==} dev: false - /selfsigned/2.1.1: + /selfsigned@2.1.1: resolution: {integrity: sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==} engines: {node: '>=10'} dependencies: node-forge: 1.3.1 dev: false - /semantic-release-plugin-decorators/3.0.1_semantic-release@20.1.0: + /semantic-release-plugin-decorators@3.0.1(semantic-release@20.1.0): resolution: {integrity: sha512-f5Qjvv/AJYByvkaj11a+05gQwfPwgQKo5OIhj8YVM2Dhf2rOPEOLD83jGrTdM7Nuf//sZYw77/cGUSVygUG9Kg==} peerDependencies: semantic-release: '>=11' @@ -14787,19 +14743,19 @@ packages: semantic-release: 20.1.0 dev: true - /semantic-release/20.1.0: + /semantic-release@20.1.0: resolution: {integrity: sha512-+9+n6RIr0Fz0F53cXrjpawxWlUg3O7/qr1jF9lrE+/v6WqwBrSWnavVHTPaf2WLerET2EngoqI0M4pahkKl6XQ==} engines: {node: '>=18'} hasBin: true dependencies: - '@semantic-release/commit-analyzer': 9.0.2_semantic-release@20.1.0 + '@semantic-release/commit-analyzer': 9.0.2(semantic-release@20.1.0) '@semantic-release/error': 3.0.0 - '@semantic-release/github': 8.0.7_semantic-release@20.1.0 - '@semantic-release/npm': 9.0.2_semantic-release@20.1.0 - '@semantic-release/release-notes-generator': 10.0.3_semantic-release@20.1.0 + '@semantic-release/github': 8.0.7(semantic-release@20.1.0) + '@semantic-release/npm': 9.0.2(semantic-release@20.1.0) + '@semantic-release/release-notes-generator': 10.0.3(semantic-release@20.1.0) aggregate-error: 4.0.1 cosmiconfig: 8.1.0 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) env-ci: 8.0.0 execa: 6.1.0 figures: 5.0.0 @@ -14810,7 +14766,7 @@ packages: hosted-git-info: 6.1.1 lodash-es: 4.17.21 marked: 4.2.12 - marked-terminal: 5.1.1_marked@4.2.12 + marked-terminal: 5.1.1(marked@4.2.12) micromatch: 4.0.5 p-each-series: 3.0.0 p-reduce: 3.0.0 @@ -14825,41 +14781,41 @@ packages: - supports-color dev: true - /semver-diff/4.0.0: + /semver-diff@4.0.0: resolution: {integrity: sha512-0Ju4+6A8iOnpL/Thra7dZsSlOHYAHIeMxfhWQRI1/VLcT3WDBZKKtQt/QkBOsiIN9ZpuvHE6cGZ0x4glCMmfiA==} engines: {node: '>=12'} dependencies: semver: 7.3.8 dev: true - /semver-regex/4.0.5: + /semver-regex@4.0.5: resolution: {integrity: sha512-hunMQrEy1T6Jr2uEVjrAIqjwWcQTgOAcIM52C8MY1EZSD3DDNft04XzvYKPqjED65bNVVko0YI38nYeEHCX3yw==} engines: {node: '>=12'} dev: true - /semver/5.7.1: + /semver@5.7.1: resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==} hasBin: true - /semver/6.3.0: + /semver@6.3.0: resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==} hasBin: true - /semver/7.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 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: @@ -14880,13 +14836,13 @@ packages: - supports-color dev: false - /serialize-javascript/6.0.0: + /serialize-javascript@6.0.0: resolution: {integrity: sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==} dependencies: randombytes: 2.1.0 dev: false - /serve-index/1.9.1: + /serve-index@1.9.1: resolution: {integrity: sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==} engines: {node: '>= 0.8.0'} dependencies: @@ -14901,7 +14857,7 @@ packages: - supports-color dev: false - /serve-static/1.15.0: + /serve-static@1.15.0: resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==} engines: {node: '>= 0.8.0'} dependencies: @@ -14913,15 +14869,15 @@ packages: - supports-color dev: false - /setprototypeof/1.1.0: + /setprototypeof@1.1.0: resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==} dev: false - /setprototypeof/1.2.0: + /setprototypeof@1.2.0: resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} dev: false - /sha.js/2.4.11: + /sha.js@2.4.11: resolution: {integrity: sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==} hasBin: true dependencies: @@ -14929,40 +14885,40 @@ packages: safe-buffer: 5.2.1 dev: false - /sha3/2.1.4: + /sha3@2.1.4: resolution: {integrity: sha512-S8cNxbyb0UGUM2VhRD4Poe5N58gJnJsLJ5vC7FYWGUmGhcsj4++WaIOBFVDxlG0W3To6xBuiRh+i0Qp2oNCOtg==} dependencies: buffer: 6.0.3 dev: false - /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 dev: false - /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/3.0.0: + /shebang-regex@3.0.0: resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} engines: {node: '>=8'} - /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.0 object-inspect: 1.12.3 - /signal-exit/3.0.7: + /signal-exit@3.0.7: resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} - /signale/1.4.0: + /signale@1.4.0: resolution: {integrity: sha512-iuh+gPf28RkltuJC7W5MRi6XAjTDCAPC/prJUpQoG4vIP3MJZ+GTydVnodXA7pwvTKb2cA0m9OFZW/cdWy/I/w==} engines: {node: '>=6'} dependencies: @@ -14971,7 +14927,7 @@ packages: pkg-conf: 2.1.0 dev: true - /sirv/2.0.2: + /sirv@2.0.2: resolution: {integrity: sha512-4Qog6aE29nIjAOKe/wowFTxOdmbEZKb+3tsLljaBRzJwtqto0BChD2zzH0LhgCSXiI+V7X+Y45v14wBZQ1TK3w==} engines: {node: '>= 10'} dependencies: @@ -14980,19 +14936,19 @@ packages: totalist: 3.0.0 dev: true - /sisteransi/1.0.5: + /sisteransi@1.0.5: resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} dev: true - /slash/3.0.0: + /slash@3.0.0: resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} engines: {node: '>=8'} - /slash/4.0.0: + /slash@4.0.0: resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==} engines: {node: '>=12'} - /slice-ansi/3.0.0: + /slice-ansi@3.0.0: resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==} engines: {node: '>=8'} dependencies: @@ -15000,7 +14956,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: @@ -15008,7 +14964,7 @@ packages: astral-regex: 2.0.0 is-fullwidth-code-point: 3.0.0 - /sockjs/0.3.24: + /sockjs@0.3.24: resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==} dependencies: faye-websocket: 0.11.4 @@ -15016,17 +14972,17 @@ packages: websocket-driver: 0.7.4 dev: false - /sonic-boom/2.8.0: + /sonic-boom@2.8.0: resolution: {integrity: sha512-kuonw1YOYYNOve5iHdSahXPOK49GqwA+LZhI6Wz/l0rP57iKyXXIHaRagOBHAPmGwJC6od2Z9zgvZ5loSgMlVg==} dependencies: atomic-sleep: 1.0.0 dev: false - /source-map-js/1.0.2: + /source-map-js@1.0.2: resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} engines: {node: '>=0.10.0'} - /source-map-loader/3.0.2_webpack@5.75.0: + /source-map-loader@3.0.2(webpack@5.75.0): resolution: {integrity: sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==} engines: {node: '>= 12.13.0'} peerDependencies: @@ -15038,76 +14994,74 @@ packages: webpack: 5.75.0 dev: false - /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: atob: 2.1.2 decode-uri-component: 0.2.2 - dev: false - /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 - /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 - /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 dev: false - /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'} - dev: false - /spawn-error-forwarder/1.0.0: + /spawn-error-forwarder@1.0.0: resolution: {integrity: sha512-gRjMgK5uFjbCvdibeGJuy3I5OYz6VLoVdsOJdA6wV0WlfQVLFueoqMxwwYD9RODdgb6oUIvlRlsyFSiQkMKu0g==} 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.12 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.12 dev: true - /spdx-license-ids/3.0.12: + /spdx-license-ids@3.0.12: resolution: {integrity: sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA==} 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 @@ -15117,11 +15071,11 @@ packages: - supports-color dev: false - /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 @@ -15130,38 +15084,38 @@ packages: - supports-color 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/1.0.1: - resolution: {integrity: sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==} - dependencies: - through: 2.3.8 - dev: true - - /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.1 dev: true - /split2/4.1.0: + /split2@4.1.0: resolution: {integrity: sha512-VBiJxFkxiXRlUIeyMQi8s4hgvKCSjtknJv/LVYbrgALPwf5zSKmEwV9Lst25AkvMDnvxODugjdl6KZgwKM1WYQ==} engines: {node: '>= 10.x'} dev: false - /sprintf-js/1.0.3: + /split@1.0.1: + resolution: {integrity: sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==} + dependencies: + through: 2.3.8 + dev: true + + /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 @@ -15176,58 +15130,58 @@ packages: safer-buffer: 2.1.2 tweetnacl: 0.14.5 - /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' dev: false - /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 - /statuses/1.5.0: + /statuses@1.5.0: resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==} engines: {node: '>= 0.6'} dev: false - /statuses/2.0.1: + /statuses@2.0.1: resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} engines: {node: '>= 0.8'} 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 dev: true - /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-shift/1.0.1: + /stream-shift@1.0.1: resolution: {integrity: sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==} dev: false - /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-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-width/4.2.3: + /string-width@4.2.3: resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} engines: {node: '>=8'} dependencies: @@ -15235,7 +15189,7 @@ packages: is-fullwidth-code-point: 3.0.0 strip-ansi: 6.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 @@ -15248,7 +15202,7 @@ packages: side-channel: 1.0.4 dev: true - /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 @@ -15256,7 +15210,7 @@ packages: es-abstract: 1.21.1 dev: true - /string.prototype.trimstart/1.0.6: + /string.prototype.trimstart@1.0.6: resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==} dependencies: call-bind: 1.0.2 @@ -15264,66 +15218,66 @@ packages: es-abstract: 1.21.1 dev: true - /string_decoder/0.10.31: + /string_decoder@0.10.31: resolution: {integrity: sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==} dev: false - /string_decoder/1.1.1: + /string_decoder@1.1.1: resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} dependencies: safe-buffer: 5.1.2 - /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 - /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-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-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/3.0.0: + /strip-indent@3.0.0: resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} engines: {node: '>=8'} dependencies: min-indent: 1.0.1 dev: true - /strip-json-comments/2.0.1: + /strip-json-comments@2.0.1: resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} engines: {node: '>=0.10.0'} dev: true - /strip-json-comments/3.1.1: + /strip-json-comments@3.1.1: resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} engines: {node: '>=8'} - /strip-literal/1.0.1: + /strip-literal@1.0.1: resolution: {integrity: sha512-QZTsipNpa2Ppr6v1AmJHESqJ3Uz247MUS0OjrnnZjFAvEoWqxuyFuXn2xLgMtRnijJShAa1HL0gtJyUs7u7n3Q==} dependencies: acorn: 8.8.2 dev: true - /strong-log-transformer/2.1.0: + /strong-log-transformer@2.1.0: resolution: {integrity: sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==} engines: {node: '>=4'} hasBin: true @@ -15332,7 +15286,7 @@ packages: minimist: 1.2.8 through: 2.3.8 - /style-loader/3.3.1_webpack@5.75.0: + /style-loader@3.3.1(webpack@5.75.0): resolution: {integrity: sha512-GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ==} engines: {node: '>= 12.13.0'} peerDependencies: @@ -15341,7 +15295,7 @@ packages: webpack: 5.75.0 dev: false - /styled-jsx/5.1.1_q2tyk3gci27qk4qoatek53e4vi: + /styled-jsx@5.1.1(@babel/core@7.21.0)(react@18.2.0): resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==} engines: {node: '>= 12.0.0'} peerDependencies: @@ -15359,7 +15313,7 @@ packages: react: 18.2.0 dev: false - /stylehacks/5.1.1_postcss@8.4.21: + /stylehacks@5.1.1(postcss@8.4.21): resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: @@ -15370,10 +15324,10 @@ packages: postcss-selector-parser: 6.0.11 dev: false - /stylis/4.1.3: + /stylis@4.1.3: resolution: {integrity: sha512-GP6WDNWf+o403jrEp9c5jibKavrtLW+/qYGhFxFrG8maXhwTBI7gLLhiBb0o7uFccWN+EOS9aMO6cGHWAO07OA==} - /stylus-loader/7.1.0_irl2hmhzopg6urv44vymn74p4e: + /stylus-loader@7.1.0(stylus@0.55.0)(webpack@5.75.0): resolution: {integrity: sha512-gNUEjjozR+oZ8cuC/Fx4LVXqZOgDKvpW9t2hpXHcxjfPYqSjQftaGwZUK+wL9B0QJ26uS6p1EmoWHmvld1dF7g==} engines: {node: '>= 14.15.0'} peerDependencies: @@ -15387,7 +15341,7 @@ packages: webpack: 5.75.0 dev: false - /stylus/0.55.0: + /stylus@0.55.0: resolution: {integrity: sha512-MuzIIVRSbc8XxHH7FjkvWqkIcr1BvoMZoR/oFuAJDlh7VSaNJzrB4uJ38GRQa+mWjLXODAMzeDe0xi9GYbGwnw==} hasBin: true dependencies: @@ -15401,42 +15355,41 @@ packages: source-map: 0.7.4 transitivePeerDependencies: - supports-color - dev: false - /supports-color/5.5.0: + /supports-color@5.5.0: resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} engines: {node: '>=4'} dependencies: has-flag: 3.0.0 - /supports-color/7.2.0: + /supports-color@7.2.0: resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} engines: {node: '>=8'} dependencies: has-flag: 4.0.0 - /supports-color/8.1.1: + /supports-color@8.1.1: resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} engines: {node: '>=10'} dependencies: has-flag: 4.0.0 - /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==} dev: false - /svgo/2.8.0: + /svgo@2.8.0: resolution: {integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==} engines: {node: '>=10.13.0'} hasBin: true @@ -15450,16 +15403,16 @@ packages: stable: 0.1.8 dev: false - /symbol-observable/2.0.3: + /symbol-observable@2.0.3: resolution: {integrity: sha512-sQV7phh2WCYAn81oAkakC5qjq2Ml0g8ozqz03wOGnx9dDlG1de6yrF+0RAzSJD8fPUow3PTSMf2SAbOGxb93BA==} engines: {node: '>=0.10'} dev: false - /symbol-tree/3.2.4: + /symbol-tree@3.2.4: resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} dev: true - /synckit/0.8.5: + /synckit@0.8.5: resolution: {integrity: sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==} engines: {node: ^14.18.0 || >=16.0.0} dependencies: @@ -15467,11 +15420,11 @@ packages: tslib: 2.5.0 dev: true - /tapable/2.2.1: + /tapable@2.2.1: resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} engines: {node: '>=6'} - /tar-stream/2.2.0: + /tar-stream@2.2.0: resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} engines: {node: '>=6'} dependencies: @@ -15481,7 +15434,7 @@ packages: inherits: 2.0.4 readable-stream: 3.6.1 - /tar/6.1.11: + /tar@6.1.11: resolution: {integrity: sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==} engines: {node: '>= 10'} dependencies: @@ -15493,12 +15446,12 @@ packages: yallist: 4.0.0 dev: true - /temp-dir/2.0.0: + /temp-dir@2.0.0: resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==} engines: {node: '>=8'} dev: true - /tempy/1.0.1: + /tempy@1.0.1: resolution: {integrity: sha512-biM9brNqxSc04Ee71hzFbryD11nX7VPhQQY32AdDmjFvodsRFz/3ufeoTZ6uYkRFfGo188tENcASNs3vTdsM0w==} engines: {node: '>=10'} dependencies: @@ -15509,14 +15462,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.6_webpack@5.75.0: + /terser-webpack-plugin@5.3.6(webpack@5.75.0): resolution: {integrity: sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -15540,7 +15493,7 @@ packages: webpack: 5.75.0 dev: false - /terser/5.16.5: + /terser@5.16.5: resolution: {integrity: sha512-qcwfg4+RZa3YvlFh0qjifnzBHjKGNbtDo9yivMqMFDy9Q6FSaQWSB/j1xKhsoUFJIqDOM3TsN6D5xbrMrFcHbg==} engines: {node: '>=10'} hasBin: true @@ -15551,7 +15504,7 @@ packages: source-map-support: 0.5.21 dev: false - /test-exclude/6.0.0: + /test-exclude@6.0.0: resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} engines: {node: '>=8'} dependencies: @@ -15559,66 +15512,66 @@ packages: glob: 7.2.3 minimatch: 3.1.2 - /text-extensions/1.9.0: + /text-extensions@1.9.0: resolution: {integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==} engines: {node: '>=0.10'} dev: true - /text-table/0.2.0: + /text-table@0.2.0: resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} - /thread-stream/0.15.2: + /thread-stream@0.15.2: resolution: {integrity: sha512-UkEhKIg2pD+fjkHQKyJO3yoIvAP3N6RlNFt2dUhcS1FGvCD1cQa1M/PGknCLFIyZdtJOWQjejp7bdNqmN7zwdA==} dependencies: real-require: 0.1.0 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/0.4.2: + /through2@0.4.2: resolution: {integrity: sha512-45Llu+EwHKtAZYTPPVn3XZHBgakWMN3rokhEv5hu596XP+cNgplMg+Gj+1nmAvj+L0K7+N49zBKx5rah5u0QIQ==} dependencies: readable-stream: 1.0.34 xtend: 2.1.2 dev: false - /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/4.0.2: + /through2@4.0.2: resolution: {integrity: sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==} dependencies: readable-stream: 3.6.1 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==} dev: false - /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-inflate/1.0.3: + /tiny-inflate@1.0.3: resolution: {integrity: sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==} dev: false - /tiny-invariant/1.3.1: + /tiny-invariant@1.3.1: resolution: {integrity: sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==} dev: false - /tiny-secp256k1/1.1.6: + /tiny-secp256k1@1.1.6: resolution: {integrity: sha512-FmqJZGduTyvsr2cF3375fqGHUovSwDi/QytexX1Se4BPuPZpTE5Ftp5fg+EFSuEf3lhZqgCRjEG3ydUQ/aNiwA==} engines: {node: '>=6.0.0'} requiresBuild: true @@ -15630,61 +15583,61 @@ packages: nan: 2.17.0 dev: false - /tinybench/2.3.1: + /tinybench@2.3.1: resolution: {integrity: sha512-hGYWYBMPr7p4g5IarQE7XhlyWveh1EKhy4wUBS1LrHXCKYgvz+4/jCqgmJqZxxldesn05vccrtME2RLLZNW7iA==} dev: true - /tinypool/0.3.1: + /tinypool@0.3.1: resolution: {integrity: sha512-zLA1ZXlstbU2rlpA4CIeVaqvWq41MTWqLY3FfsAXgC8+f7Pk7zroaJQxDgxn1xNudKW6Kmj4808rPFShUlIRmQ==} engines: {node: '>=14.0.0'} dev: true - /tinyspy/1.1.1: + /tinyspy@1.1.1: resolution: {integrity: sha512-UVq5AXt/gQlti7oxoIg5oi/9r0WpF7DGEVwXgqWSMmyN16+e3tl5lIvTaOpJ3TAtu5xFzWccFRM4R5NaWHF+4g==} engines: {node: '>=14.0.0'} dev: true - /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-fast-properties/2.0.0: + /to-fast-properties@2.0.0: resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} engines: {node: '>=4'} - /to-regex-range/5.0.1: + /to-regex-range@5.0.1: resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} engines: {node: '>=8.0'} dependencies: is-number: 7.0.0 - /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'} dev: false - /totalist/3.0.0: + /totalist@3.0.0: resolution: {integrity: sha512-eM+pCBxXO/njtF7vdFsHuqb+ElbxqtI4r5EAvk6grfAFyJ6IvWlSkfZ5T9ozC6xWw3Fj1fGoSmrl0gUs46JVIw==} engines: {node: '>=6'} 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: @@ -15694,31 +15647,31 @@ packages: url-parse: 1.5.10 dev: true - /tr46/0.0.3: + /tr46@0.0.3: resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} dev: true - /tr46/3.0.0: + /tr46@3.0.0: resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==} engines: {node: '>=12'} dependencies: punycode: 2.3.0 dev: true - /traverse/0.6.7: + /traverse@0.6.7: resolution: {integrity: sha512-/y956gpUo9ZNCb99YjxG7OaslxZWHfCHAUUfshwqOXmxUIvqLjVO581BT+gM59+QV9tFe6/CGG53tsA1Y7RSdg==} dev: true - /tree-kill/1.2.2: + /tree-kill@1.2.2: resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==} hasBin: true - /trim-newlines/3.0.1: + /trim-newlines@3.0.1: resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} engines: {node: '>=8'} dev: true - /ts-jest/29.0.5_uvh2lfmfmkxl7pemqrjflcid5y: + /ts-jest@29.0.5(@babel/core@7.21.0)(babel-jest@29.4.3)(jest@29.4.3)(typescript@4.9.5): resolution: {integrity: sha512-PL3UciSgIpQ7f6XjVOmbi96vmDHUqAyqDr8YxzopDqX3kfgYtX1cuNeBjP+L9sFXi6nzsGGA6R3fP3DDDJyrxA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true @@ -15740,10 +15693,10 @@ packages: optional: true dependencies: '@babel/core': 7.21.0 - babel-jest: 29.4.3_@babel+core@7.21.0 + babel-jest: 29.4.3(@babel/core@7.21.0) bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 29.4.3_jboh4c3iv3wxuja4m36ecyac7e + jest: 29.4.3(@types/node@18.14.2)(ts-node@10.9.1) jest-util: 29.4.3 json5: 2.2.3 lodash.memoize: 4.1.2 @@ -15753,7 +15706,7 @@ packages: yargs-parser: 21.1.1 dev: true - /ts-loader/9.4.2_hhrrucqyg4eysmfpujvov2ym5u: + /ts-loader@9.4.2(typescript@4.9.5)(webpack@5.75.0): resolution: {integrity: sha512-OmlC4WVmFv5I0PpaxYb+qGeGOdm5giHU7HwDDUjw59emP2UYMHy9fFSDcYgSNoH8sXcj4hGCSEhlDZ9ULeDraA==} engines: {node: '>=12.0.0'} peerDependencies: @@ -15768,7 +15721,7 @@ packages: webpack: 5.75.0 dev: false - /ts-node/10.9.1_ellgaeuoqnti3hful2ny2iugba: + /ts-node@10.9.1(@types/node@18.14.2)(typescript@4.9.5): resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} hasBin: true peerDependencies: @@ -15798,7 +15751,7 @@ packages: v8-compile-cache-lib: 3.0.1 yn: 3.1.1 - /tsconfck/2.0.3_typescript@4.9.5: + /tsconfck@2.0.3(typescript@4.9.5): resolution: {integrity: sha512-o3DsPZO1+C98KqHMdAbWs30zpxD30kj8r9OLA4ML1yghx4khNDzaaShNalfluh8ZPPhzKe3qyVCP1HiZszSAsw==} engines: {node: ^14.13.1 || ^16 || >=18} hasBin: true @@ -15811,7 +15764,7 @@ packages: typescript: 4.9.5 dev: true - /tsconfig-paths-webpack-plugin/4.0.0: + /tsconfig-paths-webpack-plugin@4.0.0: resolution: {integrity: sha512-fw/7265mIWukrSHd0i+wSwx64kYUSAKPfxRDksjKIYTxSAp9W9/xcZVBF4Kl0eqQd5eBpAQ/oQrc5RyM/0c1GQ==} engines: {node: '>=10.13.0'} dependencies: @@ -15820,7 +15773,7 @@ packages: tsconfig-paths: 4.1.2 dev: false - /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 @@ -15829,7 +15782,7 @@ packages: strip-bom: 3.0.0 dev: true - /tsconfig-paths/4.1.2: + /tsconfig-paths@4.1.2: resolution: {integrity: sha512-uhxiMgnXQp1IR622dUXI+9Ehnws7i/y6xvpZB9IbUVOPy0muvdvgXeZOn88UcGPiT98Vp3rJPTa8bFoalZ3Qhw==} engines: {node: '>=6'} dependencies: @@ -15837,17 +15790,17 @@ packages: minimist: 1.2.8 strip-bom: 3.0.0 - /tslib/1.14.1: + /tslib@1.14.1: resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} - /tslib/2.4.0: + /tslib@2.4.0: resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==} dev: false - /tslib/2.5.0: + /tslib@2.5.0: resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==} - /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: @@ -15857,70 +15810,70 @@ packages: typescript: 4.9.5 dev: true - /tunnel-agent/0.6.0: + /tunnel-agent@0.6.0: resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} dependencies: safe-buffer: 5.2.1 - /tweetnacl/0.14.5: + /tweetnacl@0.14.5: resolution: {integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==} - /type-check/0.3.2: + /type-check@0.3.2: resolution: {integrity: sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==} engines: {node: '>= 0.8.0'} dependencies: prelude-ls: 1.1.2 dev: 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.16.0: + /type-fest@0.16.0: resolution: {integrity: sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==} engines: {node: '>=10'} dev: true - /type-fest/0.18.1: + /type-fest@0.18.1: resolution: {integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==} engines: {node: '>=10'} dev: true - /type-fest/0.20.2: + /type-fest@0.20.2: resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} engines: {node: '>=10'} - /type-fest/0.21.3: + /type-fest@0.21.3: resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} engines: {node: '>=10'} - /type-fest/0.6.0: + /type-fest@0.6.0: resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} engines: {node: '>=8'} dev: true - /type-fest/0.8.1: + /type-fest@0.8.1: resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} engines: {node: '>=8'} dev: true - /type-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'} dev: true - /type-is/1.6.18: + /type-is@1.6.18: resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} engines: {node: '>= 0.6'} dependencies: @@ -15928,11 +15881,11 @@ packages: mime-types: 2.1.35 dev: false - /type-tagger/1.0.0: + /type-tagger@1.0.0: resolution: {integrity: sha512-FIPqqpmDgdaulCnRoKv1/d3U4xVBUrYn42QXWNP3XYmgfPUDuBUsgFOb9ntT0aIe0UsUP+lknpQ5d9Kn36RssA==} dev: false - /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 @@ -15940,20 +15893,20 @@ packages: is-typed-array: 1.1.10 dev: true - /typed-assert/1.0.9: + /typed-assert@1.0.9: resolution: {integrity: sha512-KNNZtayBCtmnNmbo5mG47p1XsCyrx6iVqomjcZnec/1Y5GGARaxPs6r49RnSPeUP3YjNYiU9sQHAtY4BBvnZwg==} dev: false - /typeforce/1.18.0: + /typeforce@1.18.0: resolution: {integrity: sha512-7uc1O8h1M1g0rArakJdf0uLRSSgFcYexrVoKo+bzJd32gd4gDy2L/Z+8/FjPnU9ydY3pEnVPtr9FyscYY60K1g==} dev: false - /typescript/4.9.5: + /typescript@4.9.5: resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==} engines: {node: '>=4.2.0'} hasBin: true - /uglify-js/3.17.4: + /uglify-js@3.17.4: resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==} engines: {node: '>=0.8.0'} hasBin: true @@ -15961,13 +15914,13 @@ packages: dev: true optional: true - /uint8arrays/3.1.1: + /uint8arrays@3.1.1: resolution: {integrity: sha512-+QJa8QRnbdXVpHYjLoTpJIdCTiw9Ir62nocClWuXIq2JIh4Uta0cQsTSpFL678p2CN8B+XSApwcU+pQEqVpKWg==} dependencies: multiformats: 9.9.0 dev: false - /unbox-primitive/1.0.2: + /unbox-primitive@1.0.2: resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} dependencies: call-bind: 1.0.2 @@ -15976,67 +15929,67 @@ packages: which-boxed-primitive: 1.0.2 dev: true - /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'} - /unicode-trie/2.0.0: + /unicode-trie@2.0.0: resolution: {integrity: sha512-x7bc76x0bm4prf1VLg79uhAzKw8DVboClSN5VxJuQ+LKDOVEW9CdH+VY7SP+vX7xCYQqzzgQpFqz15zeLvAtZQ==} dependencies: pako: 0.2.9 tiny-inflate: 1.0.3 dev: false - /unique-string/2.0.0: + /unique-string@2.0.0: resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==} engines: {node: '>=8'} dependencies: crypto-random-string: 2.0.0 dev: true - /universal-user-agent/6.0.0: + /universal-user-agent@6.0.0: resolution: {integrity: sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==} dev: true - /universalify/0.2.0: + /universalify@0.2.0: resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} engines: {node: '>= 4.0.0'} dev: true - /universalify/2.0.0: + /universalify@2.0.0: resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==} engines: {node: '>= 10.0.0'} - /unorm/1.6.0: + /unorm@1.6.0: resolution: {integrity: sha512-b2/KCUlYZUeA7JFUuRJZPUtr4gZvBh7tavtv4fvk4+KV9pfGiR6CQAQAWl49ZpR3ts2dk4FYkP7EIgDJoiOLDA==} engines: {node: '>= 0.4.0'} dev: false - /unpipe/1.0.0: + /unpipe@1.0.0: resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} engines: {node: '>= 0.8'} dev: false - /untildify/4.0.0: + /untildify@4.0.0: resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==} engines: {node: '>=8'} - /update-browserslist-db/1.0.10_browserslist@4.21.5: + /update-browserslist-db@1.0.10(browserslist@4.21.5): resolution: {integrity: sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==} hasBin: true peerDependencies: @@ -16046,16 +15999,16 @@ packages: escalade: 3.1.1 picocolors: 1.0.0 - /uri-js/4.4.1: + /uri-js@4.4.1: resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} dependencies: punycode: 2.3.0 - /url-join/4.0.1: + /url-join@4.0.1: resolution: {integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==} dev: true - /url-loader/4.1.1_webpack@5.75.0: + /url-loader@4.1.1(webpack@5.75.0): resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -16071,14 +16024,14 @@ packages: webpack: 5.75.0 dev: false - /url-parse/1.5.10: + /url-parse@1.5.10: resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} dependencies: querystringify: 2.2.0 requires-port: 1.0.0 dev: true - /use-callback-ref/1.3.0_pmekkgnqduwlme35zpnqhenc34: + /use-callback-ref@1.3.0(@types/react@18.0.28)(react@18.2.0): resolution: {integrity: sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w==} engines: {node: '>=10'} peerDependencies: @@ -16093,7 +16046,7 @@ packages: tslib: 2.5.0 dev: false - /use-isomorphic-layout-effect/1.1.2_pmekkgnqduwlme35zpnqhenc34: + /use-isomorphic-layout-effect@1.1.2(@types/react@18.0.28)(react@18.2.0): resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==} peerDependencies: '@types/react': '*' @@ -16106,7 +16059,7 @@ packages: react: 18.2.0 dev: false - /use-sidecar/1.1.2_pmekkgnqduwlme35zpnqhenc34: + /use-sidecar@1.1.2(@types/react@18.0.28)(react@18.2.0): resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==} engines: {node: '>=10'} peerDependencies: @@ -16122,7 +16075,7 @@ packages: tslib: 2.5.0 dev: false - /use-sync-external-store/1.2.0_react@18.2.0: + /use-sync-external-store@1.2.0(react@18.2.0): resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -16130,30 +16083,30 @@ packages: react: 18.2.0 dev: false - /util-deprecate/1.0.2: + /util-deprecate@1.0.2: resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} - /utility-types/3.10.0: + /utility-types@3.10.0: resolution: {integrity: sha512-O11mqxmi7wMKCo6HKFt5AhO4BwY3VV68YU07tgxfz8zJTIxr4BpsezN49Ffwy9j3ZpwwJp4fkRwjRzq3uWE6Rg==} engines: {node: '>= 4'} dev: false - /utils-merge/1.0.1: + /utils-merge@1.0.1: resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} engines: {node: '>= 0.4.0'} dev: false - /uuid/8.3.2: + /uuid@8.3.2: resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} hasBin: true - /v8-compile-cache-lib/3.0.1: + /v8-compile-cache-lib@3.0.1: resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} - /v8-compile-cache/2.3.0: + /v8-compile-cache@2.3.0: resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==} - /v8-to-istanbul/9.1.0: + /v8-to-istanbul@9.1.0: resolution: {integrity: sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==} engines: {node: '>=10.12.0'} dependencies: @@ -16161,19 +16114,19 @@ packages: '@types/istanbul-lib-coverage': 2.0.4 convert-source-map: 1.9.0 - /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 - /vary/1.1.2: + /vary@1.1.2: resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} engines: {node: '>= 0.8'} dev: false - /verror/1.10.0: + /verror@1.10.0: resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==} engines: {'0': node >=0.6.0} dependencies: @@ -16181,7 +16134,7 @@ packages: core-util-is: 1.0.2 extsprintf: 1.3.0 - /vite-plugin-eslint/1.8.1_eslint@8.15.0+vite@4.1.4: + /vite-plugin-eslint@1.8.1(eslint@8.15.0)(vite@4.1.4): resolution: {integrity: sha512-PqdMf3Y2fLO9FsNPmMX+//2BF5SF8nEWspZdgl4kSt7UvHDRHVVfHvxsD7ULYzZrJDGRxR81Nq7TOFgwMnUang==} peerDependencies: eslint: '>=7' @@ -16191,21 +16144,21 @@ packages: '@types/eslint': 8.21.1 eslint: 8.15.0 rollup: 2.79.1 - vite: 4.1.4_@types+node@18.14.2 + vite: 4.1.4(@types/node@18.14.2)(less@4.1.3)(stylus@0.55.0) dev: true - /vite-tsconfig-paths/4.0.5_typescript@4.9.5: + /vite-tsconfig-paths@4.0.5(typescript@4.9.5): resolution: {integrity: sha512-/L/eHwySFYjwxoYt1WRJniuK/jPv+WGwgRGBYx3leciR5wBeqntQpUE6Js6+TJemChc+ter7fDBKieyEWDx4yQ==} dependencies: - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) globrex: 0.1.2 - tsconfck: 2.0.3_typescript@4.9.5 + tsconfck: 2.0.3(typescript@4.9.5) transitivePeerDependencies: - supports-color - typescript dev: true - /vite/4.1.4_@types+node@18.14.2: + /vite@4.1.4(@types/node@18.14.2)(less@4.1.3)(stylus@0.55.0): resolution: {integrity: sha512-3knk/HsbSTKEin43zHu7jTwYWv81f8kgAL99G5NWBcA1LKvtvcVAC4JjBH1arBunO9kQka+1oGbrMKOjk4ZrBg==} engines: {node: ^14.18.0 || >=16.0.0} hasBin: true @@ -16232,14 +16185,16 @@ packages: dependencies: '@types/node': 18.14.2 esbuild: 0.16.17 + less: 4.1.3 postcss: 8.4.21 resolve: 1.22.1 rollup: 3.17.2 + stylus: 0.55.0 optionalDependencies: fsevents: 2.3.2 dev: true - /vitest/0.25.8_eetf2xjpdhuqcs2dx4ndfgw7iq: + /vitest@0.25.8(@vitest/ui@0.25.8)(jsdom@20.0.3)(less@4.1.3)(stylus@0.55.0): resolution: {integrity: sha512-X75TApG2wZTJn299E/TIYevr4E9/nBo1sUtZzn0Ci5oK8qnpZAZyhwg0qCeMSakGIWtc6oRwcQFyFfW14aOFWg==} engines: {node: '>=v14.16.0'} hasBin: true @@ -16268,7 +16223,7 @@ packages: acorn: 8.8.2 acorn-walk: 8.2.0 chai: 4.3.7 - debug: 4.3.4 + debug: 4.3.4(supports-color@8.1.1) jsdom: 20.0.3 local-pkg: 0.4.3 source-map: 0.6.1 @@ -16276,7 +16231,7 @@ packages: tinybench: 2.3.1 tinypool: 0.3.1 tinyspy: 1.1.1 - vite: 4.1.4_@types+node@18.14.2 + vite: 4.1.4(@types/node@18.14.2)(less@4.1.3)(stylus@0.55.0) transitivePeerDependencies: - less - sass @@ -16286,19 +16241,19 @@ packages: - terser dev: true - /w3c-xmlserializer/4.0.0: + /w3c-xmlserializer@4.0.0: resolution: {integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==} engines: {node: '>=14'} dependencies: xml-name-validator: 4.0.0 dev: true - /walker/1.0.8: + /walker@1.0.8: resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} dependencies: makeerror: 1.0.12 - /watchpack/2.4.0: + /watchpack@2.4.0: resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==} engines: {node: '>=10.13.0'} dependencies: @@ -16306,22 +16261,22 @@ packages: graceful-fs: 4.2.10 dev: false - /wbuf/1.7.3: + /wbuf@1.7.3: resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==} dependencies: minimalistic-assert: 1.0.1 dev: false - /webidl-conversions/3.0.1: + /webidl-conversions@3.0.1: resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} dev: true - /webidl-conversions/7.0.0: + /webidl-conversions@7.0.0: resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} engines: {node: '>=12'} dev: true - /webpack-dev-middleware/5.3.3_webpack@5.75.0: + /webpack-dev-middleware@5.3.3(webpack@5.75.0): resolution: {integrity: sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==} engines: {node: '>= 12.13.0'} peerDependencies: @@ -16335,7 +16290,7 @@ packages: webpack: 5.75.0 dev: false - /webpack-dev-server/4.11.1_webpack@5.75.0: + /webpack-dev-server@4.11.1(webpack@5.75.0): resolution: {integrity: sha512-lILVz9tAUy1zGFwieuaQtYiadImb5M3d+H+L1zDYalYoDl0cksAB1UNyuE5MMWJrG6zR1tXkCP2fitl7yoUJiw==} engines: {node: '>= 12.13.0'} hasBin: true @@ -16363,7 +16318,7 @@ packages: express: 4.18.2 graceful-fs: 4.2.10 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 @@ -16374,7 +16329,7 @@ packages: sockjs: 0.3.24 spdy: 4.0.2 webpack: 5.75.0 - webpack-dev-middleware: 5.3.3_webpack@5.75.0 + webpack-dev-middleware: 5.3.3(webpack@5.75.0) ws: 8.12.1 transitivePeerDependencies: - bufferutil @@ -16383,7 +16338,7 @@ packages: - utf-8-validate dev: false - /webpack-merge/5.8.0: + /webpack-merge@5.8.0: resolution: {integrity: sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==} engines: {node: '>=10.0.0'} dependencies: @@ -16391,17 +16346,17 @@ packages: wildcard: 2.0.0 dev: false - /webpack-node-externals/3.0.0: + /webpack-node-externals@3.0.0: resolution: {integrity: sha512-LnL6Z3GGDPht/AigwRh2dvL9PQPFQ8skEpVrWZXLWBYmqcaojHNN0onvHzie6rq7EWKrrBfPYqNEzTJgiwEQDQ==} engines: {node: '>=6'} dev: false - /webpack-sources/3.2.3: + /webpack-sources@3.2.3: resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==} engines: {node: '>=10.13.0'} dev: false - /webpack-subresource-integrity/5.1.0_webpack@5.75.0: + /webpack-subresource-integrity@5.1.0(webpack@5.75.0): resolution: {integrity: sha512-sacXoX+xd8r4WKsy9MvH/q/vBtEHr86cpImXwyg74pFIpERKt6FmB8cXpeuh0ZLgclOlHI4Wcll7+R5L02xk9Q==} engines: {node: '>= 12'} peerDependencies: @@ -16415,7 +16370,7 @@ packages: webpack: 5.75.0 dev: false - /webpack/5.75.0: + /webpack@5.75.0: resolution: {integrity: sha512-piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ==} engines: {node: '>=10.13.0'} hasBin: true @@ -16431,7 +16386,7 @@ packages: '@webassemblyjs/wasm-edit': 1.11.1 '@webassemblyjs/wasm-parser': 1.11.1 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.12.0 @@ -16446,7 +16401,7 @@ packages: neo-async: 2.6.2 schema-utils: 3.1.1 tapable: 2.2.1 - terser-webpack-plugin: 5.3.6_webpack@5.75.0 + terser-webpack-plugin: 5.3.6(webpack@5.75.0) watchpack: 2.4.0 webpack-sources: 3.2.3 transitivePeerDependencies: @@ -16455,7 +16410,7 @@ packages: - uglify-js dev: false - /websocket-driver/0.7.4: + /websocket-driver@0.7.4: resolution: {integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==} engines: {node: '>=0.8.0'} dependencies: @@ -16464,24 +16419,24 @@ packages: websocket-extensions: 0.1.4 dev: false - /websocket-extensions/0.1.4: + /websocket-extensions@0.1.4: resolution: {integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==} engines: {node: '>=0.8.0'} dev: false - /whatwg-encoding/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-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: @@ -16489,14 +16444,14 @@ packages: webidl-conversions: 7.0.0 dev: true - /whatwg-url/5.0.0: + /whatwg-url@5.0.0: resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} dependencies: tr46: 0.0.3 webidl-conversions: 3.0.1 dev: true - /which-boxed-primitive/1.0.2: + /which-boxed-primitive@1.0.2: resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} dependencies: is-bigint: 1.0.4 @@ -16506,7 +16461,7 @@ packages: is-symbol: 1.0.4 dev: true - /which-collection/1.0.1: + /which-collection@1.0.1: resolution: {integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==} dependencies: is-map: 2.0.2 @@ -16515,7 +16470,7 @@ packages: is-weakset: 2.0.2 dev: true - /which-typed-array/1.1.9: + /which-typed-array@1.1.9: resolution: {integrity: sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==} engines: {node: '>= 0.4'} dependencies: @@ -16527,36 +16482,36 @@ packages: is-typed-array: 1.1.10 dev: true - /which/2.0.2: + /which@2.0.2: resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} engines: {node: '>= 8'} hasBin: true dependencies: isexe: 2.0.0 - /wif/2.0.6: + /wif@2.0.6: resolution: {integrity: sha512-HIanZn1zmduSF+BQhkE+YXIbEiH0xPr1012QbFEGB0xsKqJii0/SqJjyn8dFv6y36kOznMgMB+LGcbZTJ1xACQ==} dependencies: bs58check: 2.1.2 dev: false - /wildcard/2.0.0: + /wildcard@2.0.0: resolution: {integrity: sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==} dev: false - /word-wrap/1.2.3: + /word-wrap@1.2.3: resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==} engines: {node: '>=0.10.0'} - /wordwrap/1.0.0: + /wordwrap@1.0.0: resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} dev: true - /workerpool/6.2.1: + /workerpool@6.2.1: resolution: {integrity: sha512-ILEIE97kDZvF9Wb9f6h5aXK4swSlKGUcOEGiIYb2OOu/IrDU9iwj0fD//SsA6E5ibwJxpEvhullJY4Sl4GcpAw==} dev: false - /wrap-ansi/6.2.0: + /wrap-ansi@6.2.0: resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} engines: {node: '>=8'} dependencies: @@ -16564,7 +16519,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: @@ -16572,17 +16527,17 @@ packages: string-width: 4.2.3 strip-ansi: 6.0.1 - /wrappy/1.0.2: + /wrappy@1.0.2: resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} - /write-file-atomic/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 - /ws/7.5.9: + /ws@7.5.9: resolution: {integrity: sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==} engines: {node: '>=8.3.0'} peerDependencies: @@ -16595,7 +16550,7 @@ packages: optional: true dev: false - /ws/8.12.1: + /ws@8.12.1: resolution: {integrity: sha512-1qo+M9Ba+xNhPB+YTWUlK6M17brTut5EXbcBaMRN5pH5dFrXz7lzz1ChFSUq3bOUl8yEvSenhHmYUNJxFzdJew==} engines: {node: '>=10.0.0'} peerDependencies: @@ -16607,66 +16562,66 @@ packages: utf-8-validate: optional: true - /xml-name-validator/4.0.0: + /xml-name-validator@4.0.0: resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} engines: {node: '>=12'} dev: true - /xmlchars/2.2.0: + /xmlchars@2.2.0: resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} dev: true - /xstate/4.37.0: + /xstate@4.37.0: resolution: {integrity: sha512-YC+JCerRclKS9ixQTuw8l3vs3iFqWzNzOGR0ID5XsSlieMXIV9nNPE43h9CGr7VdxA1QYhMwhCZA0EdpOd17Bg==} dev: false - /xstream/11.14.0: + /xstream@11.14.0: resolution: {integrity: sha512-1bLb+kKKtKPbgTK6i/BaoAn03g47PpFstlbe1BA+y3pNS/LfvcaghS5BFf9+EE1J+KwSQsEpfJvFN5GqFtiNmw==} dependencies: globalthis: 1.0.3 symbol-observable: 2.0.3 dev: false - /xtend/2.1.2: + /xtend@2.1.2: resolution: {integrity: sha512-vMNKzr2rHP9Dp/e1NQFnLQlwlhp9L/LfvnsVdHxN1f+uggyVI3i08uD14GPvCToPkdsRfyPqIyYGmIk58V98ZQ==} engines: {node: '>=0.4'} dependencies: object-keys: 0.4.0 dev: false - /xtend/4.0.2: + /xtend@4.0.2: resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} engines: {node: '>=0.4'} dev: true - /y18n/5.0.8: + /y18n@5.0.8: resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} engines: {node: '>=10'} - /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/20.2.4: + /yargs-parser@20.2.4: resolution: {integrity: sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==} engines: {node: '>=10'} dev: false - /yargs-parser/20.2.9: + /yargs-parser@20.2.9: resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} engines: {node: '>=10'} - /yargs-parser/21.1.1: + /yargs-parser@21.1.1: resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} engines: {node: '>=12'} - /yargs-unparser/2.0.0: + /yargs-unparser@2.0.0: resolution: {integrity: sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==} engines: {node: '>=10'} dependencies: @@ -16676,7 +16631,7 @@ packages: is-plain-obj: 2.1.0 dev: false - /yargs/16.2.0: + /yargs@16.2.0: resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==} engines: {node: '>=10'} dependencies: @@ -16688,7 +16643,7 @@ packages: y18n: 5.0.8 yargs-parser: 20.2.9 - /yargs/17.7.1: + /yargs@17.7.1: resolution: {integrity: sha512-cwiTb08Xuv5fqF4AovYacTFNxk62th7LKJ6BL9IGUpTJrWoU7/7WdQGTP2SjKf1dUNBGzDd28p/Yfs/GI6JrLw==} engines: {node: '>=12'} dependencies: @@ -16700,21 +16655,21 @@ 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: true From 528642d5d57d2c9366a00c2a6f3f276c4ec36e46 Mon Sep 17 00:00:00 2001 From: DavideSegullo Date: Tue, 11 Apr 2023 10:36:59 +0200 Subject: [PATCH 15/46] feat(txs-tracer-core): :arrow_up: upgrade cosmjs and osmojs deps --- package.json | 20 ++-- pnpm-lock.yaml | 282 ++++++++++++++++++++++++++++++++----------------- 2 files changed, 195 insertions(+), 107 deletions(-) diff --git a/package.json b/package.json index c080c63..010dbc2 100644 --- a/package.json +++ b/package.json @@ -16,13 +16,13 @@ "@chakra-ui/react": "^2.5.1", "@chakra-ui/spinner": "^2.0.12", "@chakra-ui/system": "^2.5.1", - "@cosmjs/amino": "^0.29.5", - "@cosmjs/cosmwasm-stargate": "^0.29.5", - "@cosmjs/encoding": "^0.29.5", - "@cosmjs/math": "^0.29.5", - "@cosmjs/proto-signing": "^0.29.5", - "@cosmjs/stargate": "^0.29.5", - "@cosmjs/tendermint-rpc": "^0.29.5", + "@cosmjs/amino": "^0.30.1", + "@cosmjs/cosmwasm-stargate": "^0.30.1", + "@cosmjs/encoding": "^0.30.1", + "@cosmjs/math": "^0.30.1", + "@cosmjs/proto-signing": "^0.30.1", + "@cosmjs/stargate": "^0.30.1", + "@cosmjs/tendermint-rpc": "^0.30.1", "@cosmos-kit/core": "^1.1.4", "@cosmos-kit/keplr": "^0.33.4", "@cosmos-kit/react": "^1.3.1", @@ -33,10 +33,11 @@ "@xstate/react": "^3.2.1", "buffer": "^6.0.3", "chain-registry": "^1.10.0", + "cosmjs-types": "^0.7.2", "framer-motion": "^10.0.1", "long": "^5.2.1", "next": "^13.2.3", - "osmojs": "14.0.0-rc.0", + "osmojs": "^15.2.0", "react": "18.2.0", "react-dom": "18.2.0", "react-router-dom": "6.8.1", @@ -73,7 +74,6 @@ "@vitest/coverage-c8": "~0.25.8", "@vitest/ui": "^0.25.8", "babel-jest": "^29.4.1", - "cosmjs-types": "^0.6.1", "cypress": "^12.2.0", "eslint": "~8.15.0", "eslint-config-next": "13.1.1", @@ -98,4 +98,4 @@ "vite-tsconfig-paths": "^4.0.2", "vitest": "^0.25.8" } -} +} \ No newline at end of file diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ce44749..5f8dc72 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -29,35 +29,35 @@ dependencies: specifier: ^2.5.1 version: 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(react@18.2.0) '@cosmjs/amino': - specifier: ^0.29.5 - version: 0.29.5 + specifier: ^0.30.1 + version: 0.30.1 '@cosmjs/cosmwasm-stargate': - specifier: ^0.29.5 - version: 0.29.5 + specifier: ^0.30.1 + version: 0.30.1 '@cosmjs/encoding': - specifier: ^0.29.5 - version: 0.29.5 + specifier: ^0.30.1 + version: 0.30.1 '@cosmjs/math': - specifier: ^0.29.5 - version: 0.29.5 + specifier: ^0.30.1 + version: 0.30.1 '@cosmjs/proto-signing': - specifier: ^0.29.5 - version: 0.29.5 + specifier: ^0.30.1 + version: 0.30.1 '@cosmjs/stargate': - specifier: ^0.29.5 - version: 0.29.5 + specifier: ^0.30.1 + version: 0.30.1 '@cosmjs/tendermint-rpc': - specifier: ^0.29.5 - version: 0.29.5 + specifier: ^0.30.1 + version: 0.30.1 '@cosmos-kit/core': specifier: ^1.1.4 - version: 1.1.4(@cosmjs/amino@0.29.5)(@cosmjs/cosmwasm-stargate@0.29.5)(@cosmjs/proto-signing@0.29.5)(@cosmjs/stargate@0.29.5)(@types/node@18.14.2)(cosmjs-types@0.6.1)(typescript@4.9.5) + version: 1.1.4(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(cosmjs-types@0.7.2)(typescript@4.9.5) '@cosmos-kit/keplr': specifier: ^0.33.4 - version: 0.33.4(@cosmjs/amino@0.29.5)(@cosmjs/cosmwasm-stargate@0.29.5)(@cosmjs/proto-signing@0.29.5)(@cosmjs/stargate@0.29.5)(@types/node@18.14.2)(cosmjs-types@0.6.1)(typescript@4.9.5) + version: 0.33.4(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(cosmjs-types@0.7.2)(typescript@4.9.5) '@cosmos-kit/react': specifier: ^1.3.1 - version: 1.3.1(@chakra-ui/form-control@2.0.17)(@chakra-ui/icon@3.0.15)(@chakra-ui/layout@2.1.16)(@chakra-ui/media-query@3.2.12)(@chakra-ui/menu@2.1.9)(@chakra-ui/spinner@2.0.12)(@chakra-ui/system@2.5.1)(@cosmjs/amino@0.29.5)(@cosmjs/cosmwasm-stargate@0.29.5)(@cosmjs/proto-signing@0.29.5)(@cosmjs/stargate@0.29.5)(@types/node@18.14.2)(@types/react@18.0.28)(cosmjs-types@0.6.1)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5) + version: 1.3.1(@chakra-ui/form-control@2.0.17)(@chakra-ui/icon@3.0.15)(@chakra-ui/layout@2.1.16)(@chakra-ui/media-query@3.2.12)(@chakra-ui/menu@2.1.9)(@chakra-ui/spinner@2.0.12)(@chakra-ui/system@2.5.1)(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(@types/react@18.0.28)(cosmjs-types@0.7.2)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5) '@emotion/react': specifier: 11.10.6 version: 11.10.6(@types/react@18.0.28)(react@18.2.0) @@ -79,6 +79,9 @@ dependencies: chain-registry: specifier: ^1.10.0 version: 1.10.0 + cosmjs-types: + specifier: ^0.7.2 + version: 0.7.2 framer-motion: specifier: ^10.0.1 version: 10.0.1(react-dom@18.2.0)(react@18.2.0) @@ -89,8 +92,8 @@ dependencies: specifier: ^13.2.3 version: 13.2.3(@babel/core@7.21.0)(react-dom@18.2.0)(react@18.2.0) osmojs: - specifier: 14.0.0-rc.0 - version: 14.0.0-rc.0 + specifier: ^15.2.0 + version: 15.2.0 react: specifier: 18.2.0 version: 18.2.0 @@ -195,9 +198,6 @@ devDependencies: babel-jest: specifier: ^29.4.1 version: 29.4.3(@babel/core@7.21.0) - cosmjs-types: - specifier: ^0.6.1 - version: 0.6.1 cypress: specifier: ^12.2.0 version: 12.7.0 @@ -3058,27 +3058,27 @@ packages: '@cosmjs/utils': 0.29.5 dev: false - /@cosmjs/amino@0.29.5: - resolution: {integrity: sha512-Qo8jpC0BiziTSUqpkNatBcwtKNhCovUnFul9SlT/74JUCdLYaeG5hxr3q1cssQt++l4LvlcpF+OUXL48XjNjLw==} + /@cosmjs/amino@0.30.1: + resolution: {integrity: sha512-yNHnzmvAlkETDYIpeCTdVqgvrdt1qgkOXwuRVi8s27UKI5hfqyE9fJ/fuunXE6ZZPnKkjIecDznmuUOMrMvw4w==} dependencies: - '@cosmjs/crypto': 0.29.5 - '@cosmjs/encoding': 0.29.5 - '@cosmjs/math': 0.29.5 - '@cosmjs/utils': 0.29.5 + '@cosmjs/crypto': 0.30.1 + '@cosmjs/encoding': 0.30.1 + '@cosmjs/math': 0.30.1 + '@cosmjs/utils': 0.30.1 dev: false - /@cosmjs/cosmwasm-stargate@0.29.5: - resolution: {integrity: sha512-TNdSvm2tEE3XMCuxHxquzls56t40hC8qnLeYJWHsY2ECZmRK3KrnpRReEr7N7bLtODToK7X/riYrV0JaYxjrYA==} + /@cosmjs/cosmwasm-stargate@0.30.1: + resolution: {integrity: sha512-W/6SLUCJAJGBN+sJLXouLZikVgmqDd9LCdlMzQaxczcCHTWeJAmRvOiZGSZaSy3shw/JN1qc6g6PKpvTVgj10A==} dependencies: - '@cosmjs/amino': 0.29.5 - '@cosmjs/crypto': 0.29.5 - '@cosmjs/encoding': 0.29.5 - '@cosmjs/math': 0.29.5 - '@cosmjs/proto-signing': 0.29.5 - '@cosmjs/stargate': 0.29.5 - '@cosmjs/tendermint-rpc': 0.29.5 - '@cosmjs/utils': 0.29.5 - cosmjs-types: 0.5.2 + '@cosmjs/amino': 0.30.1 + '@cosmjs/crypto': 0.30.1 + '@cosmjs/encoding': 0.30.1 + '@cosmjs/math': 0.30.1 + '@cosmjs/proto-signing': 0.30.1 + '@cosmjs/stargate': 0.30.1 + '@cosmjs/tendermint-rpc': 0.30.1 + '@cosmjs/utils': 0.30.1 + cosmjs-types: 0.7.2 long: 4.0.0 pako: 2.1.0 transitivePeerDependencies: @@ -3099,6 +3099,18 @@ packages: libsodium-wrappers: 0.7.11 dev: false + /@cosmjs/crypto@0.30.1: + resolution: {integrity: sha512-rAljUlake3MSXs9xAm87mu34GfBLN0h/1uPPV6jEwClWjNkAMotzjC0ab9MARy5FFAvYHL3lWb57bhkbt2GtzQ==} + dependencies: + '@cosmjs/encoding': 0.30.1 + '@cosmjs/math': 0.30.1 + '@cosmjs/utils': 0.30.1 + '@noble/hashes': 1.2.0 + bn.js: 5.2.1 + elliptic: 6.5.4 + libsodium-wrappers: 0.7.11 + dev: false + /@cosmjs/encoding@0.29.5: resolution: {integrity: sha512-G4rGl/Jg4dMCw5u6PEZHZcoHnUBlukZODHbm/wcL4Uu91fkn5jVo5cXXZcvs4VCkArVGrEj/52eUgTZCmOBGWQ==} dependencies: @@ -3107,6 +3119,14 @@ packages: readonly-date: 1.0.0 dev: false + /@cosmjs/encoding@0.30.1: + resolution: {integrity: sha512-rXmrTbgqwihORwJ3xYhIgQFfMSrwLu1s43RIK9I8EBudPx3KmnmyAKzMOVsRDo9edLFNuZ9GIvysUCwQfq3WlQ==} + dependencies: + base64-js: 1.5.1 + bech32: 1.1.4 + readonly-date: 1.0.0 + dev: false + /@cosmjs/json-rpc@0.29.5: resolution: {integrity: sha512-C78+X06l+r9xwdM1yFWIpGl03LhB9NdM1xvZpQHwgCOl0Ir/WV8pw48y3Ez2awAoUBRfTeejPe4KvrE6NoIi/w==} dependencies: @@ -3114,16 +3134,29 @@ packages: xstream: 11.14.0 dev: false + /@cosmjs/json-rpc@0.30.1: + resolution: {integrity: sha512-pitfC/2YN9t+kXZCbNuyrZ6M8abnCC2n62m+JtU9vQUfaEtVsgy+1Fk4TRQ175+pIWSdBMFi2wT8FWVEE4RhxQ==} + dependencies: + '@cosmjs/stream': 0.30.1 + xstream: 11.14.0 + dev: false + /@cosmjs/math@0.29.5: resolution: {integrity: sha512-2GjKcv+A9f86MAWYLUkjhw1/WpRl2R1BTb3m9qPG7lzMA7ioYff9jY5SPCfafKdxM4TIQGxXQlYGewQL16O68Q==} dependencies: bn.js: 5.2.1 dev: false + /@cosmjs/math@0.30.1: + resolution: {integrity: sha512-yaoeI23pin9ZiPHIisa6qqLngfnBR/25tSaWpkTm8Cy10MX70UF5oN4+/t1heLaM6SSmRrhk3psRkV4+7mH51Q==} + dependencies: + bn.js: 5.2.1 + dev: false + /@cosmjs/proto-signing@0.29.3: resolution: {integrity: sha512-Ai3l9THjMOrLJ4Ebn1Dgptwg6W5ZIRJqtnJjijHhGwTVC1WT0WdYU3aMZ7+PwubcA/cA1rH4ZTK7jrfYbra63g==} dependencies: - '@cosmjs/amino': 0.29.5 + '@cosmjs/amino': 0.29.3 '@cosmjs/crypto': 0.29.5 '@cosmjs/encoding': 0.29.5 '@cosmjs/math': 0.29.5 @@ -3132,15 +3165,15 @@ packages: long: 4.0.0 dev: false - /@cosmjs/proto-signing@0.29.5: - resolution: {integrity: sha512-QRrS7CiKaoETdgIqvi/7JC2qCwCR7lnWaUsTzh/XfRy3McLkEd+cXbKAW3cygykv7IN0VAEIhZd2lyIfT8KwNA==} + /@cosmjs/proto-signing@0.30.1: + resolution: {integrity: sha512-tXh8pPYXV4aiJVhTKHGyeZekjj+K9s2KKojMB93Gcob2DxUjfKapFYBMJSgfKPuWUPEmyr8Q9km2hplI38ILgQ==} dependencies: - '@cosmjs/amino': 0.29.5 - '@cosmjs/crypto': 0.29.5 - '@cosmjs/encoding': 0.29.5 - '@cosmjs/math': 0.29.5 - '@cosmjs/utils': 0.29.5 - cosmjs-types: 0.5.2 + '@cosmjs/amino': 0.30.1 + '@cosmjs/crypto': 0.30.1 + '@cosmjs/encoding': 0.30.1 + '@cosmjs/math': 0.30.1 + '@cosmjs/utils': 0.30.1 + cosmjs-types: 0.7.2 long: 4.0.0 dev: false @@ -3156,14 +3189,26 @@ packages: - utf-8-validate dev: false + /@cosmjs/socket@0.30.1: + resolution: {integrity: sha512-r6MpDL+9N+qOS/D5VaxnPaMJ3flwQ36G+vPvYJsXArj93BjgyFB7BwWwXCQDzZ+23cfChPUfhbINOenr8N2Kow==} + dependencies: + '@cosmjs/stream': 0.30.1 + isomorphic-ws: 4.0.1(ws@7.5.9) + ws: 7.5.9 + xstream: 11.14.0 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + dev: false + /@cosmjs/stargate@0.29.3: resolution: {integrity: sha512-455TgXStCi6E8KDjnhDAM8wt6aLSjobH4Dixvd7Up1DfCH6UB9NkC/G0fMJANNcNXMaM4wSX14niTXwD1d31BA==} dependencies: '@confio/ics23': 0.6.8 - '@cosmjs/amino': 0.29.5 + '@cosmjs/amino': 0.29.3 '@cosmjs/encoding': 0.29.5 '@cosmjs/math': 0.29.5 - '@cosmjs/proto-signing': 0.29.5 + '@cosmjs/proto-signing': 0.29.3 '@cosmjs/stream': 0.29.5 '@cosmjs/tendermint-rpc': 0.29.5 '@cosmjs/utils': 0.29.5 @@ -3177,18 +3222,18 @@ packages: - utf-8-validate dev: false - /@cosmjs/stargate@0.29.5: - resolution: {integrity: sha512-hjEv8UUlJruLrYGJcUZXM/CziaINOKwfVm2BoSdUnNTMxGvY/jC1ABHKeZUYt9oXHxEJ1n9+pDqzbKc8pT0nBw==} + /@cosmjs/stargate@0.30.1: + resolution: {integrity: sha512-RdbYKZCGOH8gWebO7r6WvNnQMxHrNXInY/gPHPzMjbQF6UatA6fNM2G2tdgS5j5u7FTqlCI10stNXrknaNdzog==} dependencies: '@confio/ics23': 0.6.8 - '@cosmjs/amino': 0.29.5 - '@cosmjs/encoding': 0.29.5 - '@cosmjs/math': 0.29.5 - '@cosmjs/proto-signing': 0.29.5 - '@cosmjs/stream': 0.29.5 - '@cosmjs/tendermint-rpc': 0.29.5 - '@cosmjs/utils': 0.29.5 - cosmjs-types: 0.5.2 + '@cosmjs/amino': 0.30.1 + '@cosmjs/encoding': 0.30.1 + '@cosmjs/math': 0.30.1 + '@cosmjs/proto-signing': 0.30.1 + '@cosmjs/stream': 0.30.1 + '@cosmjs/tendermint-rpc': 0.30.1 + '@cosmjs/utils': 0.30.1 + cosmjs-types: 0.7.2 long: 4.0.0 protobufjs: 6.11.3 xstream: 11.14.0 @@ -3204,6 +3249,12 @@ packages: xstream: 11.14.0 dev: false + /@cosmjs/stream@0.30.1: + resolution: {integrity: sha512-Fg0pWz1zXQdoxQZpdHRMGvUH5RqS6tPv+j9Eh7Q953UjMlrwZVo0YFLC8OTf/HKVf10E4i0u6aM8D69Q6cNkgQ==} + dependencies: + xstream: 11.14.0 + dev: false + /@cosmjs/tendermint-rpc@0.29.5: resolution: {integrity: sha512-ar80twieuAxsy0x2za/aO3kBr2DFPAXDmk2ikDbmkda+qqfXgl35l9CVAAjKRqd9d+cRvbQyb5M4wy6XQpEV6w==} dependencies: @@ -3223,10 +3274,33 @@ packages: - utf-8-validate dev: false + /@cosmjs/tendermint-rpc@0.30.1: + resolution: {integrity: sha512-Z3nCwhXSbPZJ++v85zHObeUggrEHVfm1u18ZRwXxFE9ZMl5mXTybnwYhczuYOl7KRskgwlB+rID0WYACxj4wdQ==} + dependencies: + '@cosmjs/crypto': 0.30.1 + '@cosmjs/encoding': 0.30.1 + '@cosmjs/json-rpc': 0.30.1 + '@cosmjs/math': 0.30.1 + '@cosmjs/socket': 0.30.1 + '@cosmjs/stream': 0.30.1 + '@cosmjs/utils': 0.30.1 + axios: 0.21.4 + readonly-date: 1.0.0 + xstream: 11.14.0 + transitivePeerDependencies: + - bufferutil + - debug + - utf-8-validate + dev: false + /@cosmjs/utils@0.29.5: resolution: {integrity: sha512-m7h+RXDUxOzEOGt4P+3OVPX7PuakZT3GBmaM/Y2u+abN3xZkziykD/NvedYFvvCCdQo714XcGl33bwifS9FZPQ==} dev: false + /@cosmjs/utils@0.30.1: + resolution: {integrity: sha512-KvvX58MGMWh7xA+N+deCfunkA/ZNDvFLw4YbOmX3f/XBIkqrVY7qlotfy2aNb1kgp6h4B6Yc8YawJPDTfvWX7g==} + dev: false + /@cosmology-ui/react@0.1.21(@chakra-ui/form-control@2.0.17)(@chakra-ui/icon@3.0.15)(@chakra-ui/layout@2.1.16)(@chakra-ui/media-query@3.2.12)(@chakra-ui/menu@2.1.9)(@chakra-ui/spinner@2.0.12)(@chakra-ui/system@2.5.1)(@types/react@18.0.28)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-eOaYIFhm8XBf1bex49AuZjiv4livhUUXGmq5rJua5m+B4JxKOcyC5w+e38KoYQT9c6yiwsFfBSnIENdTtbRw7g==} peerDependencies: @@ -3288,7 +3362,7 @@ packages: - react-dom dev: false - /@cosmos-kit/core@1.1.4(@cosmjs/amino@0.29.5)(@cosmjs/cosmwasm-stargate@0.29.5)(@cosmjs/proto-signing@0.29.5)(@cosmjs/stargate@0.29.5)(@types/node@18.14.2)(cosmjs-types@0.6.1)(typescript@4.9.5): + /@cosmos-kit/core@1.1.4(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(cosmjs-types@0.7.2)(typescript@4.9.5): resolution: {integrity: sha512-DMOHu7HPP8k7pu9TcL5U+1ehUH1eBbnwRt/r2PXRxPdxjxw5ZB6nGJ99A9qXb1hnnuUdGB+2AqtQsv7hnHUIKw==} peerDependencies: '@cosmjs/amino': '>= 0.28' @@ -3298,13 +3372,13 @@ packages: cosmjs-types: '>= 0.5' dependencies: '@chain-registry/types': 0.13.0 - '@cosmjs/amino': 0.29.5 - '@cosmjs/cosmwasm-stargate': 0.29.5 - '@cosmjs/proto-signing': 0.29.5 - '@cosmjs/stargate': 0.29.5 + '@cosmjs/amino': 0.30.1 + '@cosmjs/cosmwasm-stargate': 0.30.1 + '@cosmjs/proto-signing': 0.30.1 + '@cosmjs/stargate': 0.30.1 '@walletconnect/types': 2.2.0(@types/node@18.14.2)(typescript@4.9.5) bowser: 2.11.0 - cosmjs-types: 0.6.1 + cosmjs-types: 0.7.2 events: 3.3.0 transitivePeerDependencies: - '@react-native-async-storage/async-storage' @@ -3316,16 +3390,16 @@ packages: - typescript dev: false - /@cosmos-kit/keplr-extension@0.33.4(@cosmjs/amino@0.29.5)(@cosmjs/cosmwasm-stargate@0.29.5)(@cosmjs/proto-signing@0.29.5)(@cosmjs/stargate@0.29.5)(@types/node@18.14.2)(cosmjs-types@0.6.1)(typescript@4.9.5): + /@cosmos-kit/keplr-extension@0.33.4(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(cosmjs-types@0.7.2)(typescript@4.9.5): resolution: {integrity: sha512-2hdnssEYiys3dRrM/3vanGdbkPP8ufjfvbAbzX95THzmtQylPdXEeZIY7cF3ReJFKCONZccp0jp1kVcJFZnMAg==} peerDependencies: '@cosmjs/amino': '>= 0.28' '@cosmjs/proto-signing': '>= 0.28' dependencies: '@chain-registry/keplr': 1.8.0 - '@cosmjs/amino': 0.29.5 - '@cosmjs/proto-signing': 0.29.5 - '@cosmos-kit/core': 1.1.4(@cosmjs/amino@0.29.5)(@cosmjs/cosmwasm-stargate@0.29.5)(@cosmjs/proto-signing@0.29.5)(@cosmjs/stargate@0.29.5)(@types/node@18.14.2)(cosmjs-types@0.6.1)(typescript@4.9.5) + '@cosmjs/amino': 0.30.1 + '@cosmjs/proto-signing': 0.30.1 + '@cosmos-kit/core': 1.1.4(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(cosmjs-types@0.7.2)(typescript@4.9.5) transitivePeerDependencies: - '@cosmjs/cosmwasm-stargate' - '@cosmjs/stargate' @@ -3339,17 +3413,17 @@ packages: - typescript dev: false - /@cosmos-kit/keplr-mobile@0.33.4(@cosmjs/amino@0.29.5)(@cosmjs/cosmwasm-stargate@0.29.5)(@cosmjs/proto-signing@0.29.5)(@cosmjs/stargate@0.29.5)(@types/node@18.14.2)(cosmjs-types@0.6.1)(typescript@4.9.5): + /@cosmos-kit/keplr-mobile@0.33.4(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(cosmjs-types@0.7.2)(typescript@4.9.5): resolution: {integrity: sha512-3AOXMtMuLNe6NRGD2AgK3A0C+5VL5txSehjx7vkK7qH/M1WrjO1N9ZySfPsit8cbKdY85FCnScjWN/AvK13Ofw==} peerDependencies: '@cosmjs/amino': '>= 0.28' '@cosmjs/proto-signing': '>= 0.28' dependencies: '@chain-registry/keplr': 1.8.0 - '@cosmjs/amino': 0.29.5 - '@cosmjs/proto-signing': 0.29.5 - '@cosmos-kit/core': 1.1.4(@cosmjs/amino@0.29.5)(@cosmjs/cosmwasm-stargate@0.29.5)(@cosmjs/proto-signing@0.29.5)(@cosmjs/stargate@0.29.5)(@types/node@18.14.2)(cosmjs-types@0.6.1)(typescript@4.9.5) - '@cosmos-kit/walletconnect': 0.2.4(@cosmjs/amino@0.29.5)(@cosmjs/cosmwasm-stargate@0.29.5)(@cosmjs/proto-signing@0.29.5)(@cosmjs/stargate@0.29.5)(@types/node@18.14.2)(cosmjs-types@0.6.1)(typescript@4.9.5) + '@cosmjs/amino': 0.30.1 + '@cosmjs/proto-signing': 0.30.1 + '@cosmos-kit/core': 1.1.4(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(cosmjs-types@0.7.2)(typescript@4.9.5) + '@cosmos-kit/walletconnect': 0.2.4(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(cosmjs-types@0.7.2)(typescript@4.9.5) transitivePeerDependencies: - '@cosmjs/cosmwasm-stargate' - '@cosmjs/stargate' @@ -3365,7 +3439,7 @@ packages: - utf-8-validate dev: false - /@cosmos-kit/keplr@0.33.4(@cosmjs/amino@0.29.5)(@cosmjs/cosmwasm-stargate@0.29.5)(@cosmjs/proto-signing@0.29.5)(@cosmjs/stargate@0.29.5)(@types/node@18.14.2)(cosmjs-types@0.6.1)(typescript@4.9.5): + /@cosmos-kit/keplr@0.33.4(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(cosmjs-types@0.7.2)(typescript@4.9.5): resolution: {integrity: sha512-25kwUCERtsek04A7D5mw59zO2rAdK9h1fOrZbBQclzkz+pbOMwC8v0+la4zJt8K/Gq7DjD3J/rG5pRUnZHdgkg==} peerDependencies: '@cosmjs/amino': '>= 0.28' @@ -3373,12 +3447,12 @@ packages: '@cosmjs/proto-signing': '>= 0.28' '@cosmjs/stargate': '>= 0.28' dependencies: - '@cosmjs/amino': 0.29.5 - '@cosmjs/cosmwasm-stargate': 0.29.5 - '@cosmjs/proto-signing': 0.29.5 - '@cosmjs/stargate': 0.29.5 - '@cosmos-kit/keplr-extension': 0.33.4(@cosmjs/amino@0.29.5)(@cosmjs/cosmwasm-stargate@0.29.5)(@cosmjs/proto-signing@0.29.5)(@cosmjs/stargate@0.29.5)(@types/node@18.14.2)(cosmjs-types@0.6.1)(typescript@4.9.5) - '@cosmos-kit/keplr-mobile': 0.33.4(@cosmjs/amino@0.29.5)(@cosmjs/cosmwasm-stargate@0.29.5)(@cosmjs/proto-signing@0.29.5)(@cosmjs/stargate@0.29.5)(@types/node@18.14.2)(cosmjs-types@0.6.1)(typescript@4.9.5) + '@cosmjs/amino': 0.30.1 + '@cosmjs/cosmwasm-stargate': 0.30.1 + '@cosmjs/proto-signing': 0.30.1 + '@cosmjs/stargate': 0.30.1 + '@cosmos-kit/keplr-extension': 0.33.4(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(cosmjs-types@0.7.2)(typescript@4.9.5) + '@cosmos-kit/keplr-mobile': 0.33.4(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(cosmjs-types@0.7.2)(typescript@4.9.5) transitivePeerDependencies: - '@react-native-async-storage/async-storage' - '@swc/core' @@ -3392,7 +3466,7 @@ packages: - utf-8-validate dev: false - /@cosmos-kit/react@1.3.1(@chakra-ui/form-control@2.0.17)(@chakra-ui/icon@3.0.15)(@chakra-ui/layout@2.1.16)(@chakra-ui/media-query@3.2.12)(@chakra-ui/menu@2.1.9)(@chakra-ui/spinner@2.0.12)(@chakra-ui/system@2.5.1)(@cosmjs/amino@0.29.5)(@cosmjs/cosmwasm-stargate@0.29.5)(@cosmjs/proto-signing@0.29.5)(@cosmjs/stargate@0.29.5)(@types/node@18.14.2)(@types/react@18.0.28)(cosmjs-types@0.6.1)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5): + /@cosmos-kit/react@1.3.1(@chakra-ui/form-control@2.0.17)(@chakra-ui/icon@3.0.15)(@chakra-ui/layout@2.1.16)(@chakra-ui/media-query@3.2.12)(@chakra-ui/menu@2.1.9)(@chakra-ui/spinner@2.0.12)(@chakra-ui/system@2.5.1)(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(@types/react@18.0.28)(cosmjs-types@0.7.2)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5): resolution: {integrity: sha512-h2IXOMS2alGa0YuGVa/dxGT9Qz6p3FpjtPpJkhI4ksMac4qe/OsDD9IrWnuw4xuVE/X/S4QV5eIKcykLJWR6Yg==} peerDependencies: '@cosmjs/cosmwasm-stargate': '>= 0.28' @@ -3403,10 +3477,10 @@ packages: '@babel/runtime': 7.11.2 '@chain-registry/types': 0.13.1 '@chakra-ui/react': 2.5.1(@emotion/react@11.10.6)(@emotion/styled@11.10.6)(@types/react@18.0.28)(framer-motion@9.1.7)(react-dom@18.2.0)(react@18.2.0) - '@cosmjs/cosmwasm-stargate': 0.29.5 - '@cosmjs/stargate': 0.29.5 + '@cosmjs/cosmwasm-stargate': 0.30.1 + '@cosmjs/stargate': 0.30.1 '@cosmology-ui/react': 0.1.21(@chakra-ui/form-control@2.0.17)(@chakra-ui/icon@3.0.15)(@chakra-ui/layout@2.1.16)(@chakra-ui/media-query@3.2.12)(@chakra-ui/menu@2.1.9)(@chakra-ui/spinner@2.0.12)(@chakra-ui/system@2.5.1)(@types/react@18.0.28)(react-dom@18.2.0)(react@18.2.0) - '@cosmos-kit/core': 1.1.4(@cosmjs/amino@0.29.5)(@cosmjs/cosmwasm-stargate@0.29.5)(@cosmjs/proto-signing@0.29.5)(@cosmjs/stargate@0.29.5)(@types/node@18.14.2)(cosmjs-types@0.6.1)(typescript@4.9.5) + '@cosmos-kit/core': 1.1.4(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(cosmjs-types@0.7.2)(typescript@4.9.5) '@emotion/react': 11.10.6(@types/react@18.0.28)(react@18.2.0) '@emotion/styled': 11.10.6(@emotion/react@11.10.6)(@types/react@18.0.28)(react@18.2.0) '@walletconnect/types': 2.2.0(@types/node@18.14.2)(typescript@4.9.5) @@ -3437,16 +3511,16 @@ packages: - typescript dev: false - /@cosmos-kit/walletconnect@0.2.4(@cosmjs/amino@0.29.5)(@cosmjs/cosmwasm-stargate@0.29.5)(@cosmjs/proto-signing@0.29.5)(@cosmjs/stargate@0.29.5)(@types/node@18.14.2)(cosmjs-types@0.6.1)(typescript@4.9.5): + /@cosmos-kit/walletconnect@0.2.4(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(cosmjs-types@0.7.2)(typescript@4.9.5): resolution: {integrity: sha512-uYq8EJTROhQo0yRiW2+E9Xr25sSEpYwXeX7S70QN6/F6XOeT4NkTGqS3/kDJ+9JnrfwyFaN8xk7F/T2w2a1Q8A==} peerDependencies: '@cosmjs/amino': '>= 0.28' '@cosmjs/proto-signing': '>= 0.28' dependencies: '@babel/runtime': 7.11.2 - '@cosmjs/amino': 0.29.5 - '@cosmjs/proto-signing': 0.29.5 - '@cosmos-kit/core': 1.1.4(@cosmjs/amino@0.29.5)(@cosmjs/cosmwasm-stargate@0.29.5)(@cosmjs/proto-signing@0.29.5)(@cosmjs/stargate@0.29.5)(@types/node@18.14.2)(cosmjs-types@0.6.1)(typescript@4.9.5) + '@cosmjs/amino': 0.30.1 + '@cosmjs/proto-signing': 0.30.1 + '@cosmos-kit/core': 1.1.4(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(cosmjs-types@0.7.2)(typescript@4.9.5) '@walletconnect/sign-client': 2.4.7(@types/node@18.14.2)(typescript@4.9.5) '@walletconnect/types': 2.4.7(@types/node@18.14.2)(typescript@4.9.5) '@walletconnect/utils': 2.4.7(@types/node@18.14.2)(typescript@4.9.5) @@ -5480,8 +5554,8 @@ packages: '@octokit/openapi-types': 16.0.0 dev: true - /@osmonauts/lcd@0.8.0: - resolution: {integrity: sha512-k7m2gAVnXc0H4m/eTq4z/8A6hFrr3MPS9wnLV4Xu9/K/WYltCnp2PpiObZm+feZUPK/svES6hxIQeO1bODLx8g==} + /@osmonauts/lcd@0.10.0: + resolution: {integrity: sha512-PzmXk9x9MHyLn2fUztpAqWqvDmMiEJaQv/JcAoAOE8VdHrD9Hf/KWnE1RZtamuS2ngQRqvQPD0xotCGXW7eTxA==} dependencies: '@babel/runtime': 7.21.0 axios: 0.27.2 @@ -5548,36 +5622,46 @@ packages: /@protobufjs/aspromise@1.1.2: resolution: {integrity: sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==} + dev: false /@protobufjs/base64@1.1.2: resolution: {integrity: sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==} + dev: false /@protobufjs/codegen@2.0.4: resolution: {integrity: sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==} + dev: false /@protobufjs/eventemitter@1.1.0: resolution: {integrity: sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==} + dev: false /@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: resolution: {integrity: sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==} + dev: false /@protobufjs/inquire@1.1.0: resolution: {integrity: sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==} + dev: false /@protobufjs/path@1.1.2: resolution: {integrity: sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==} + dev: false /@protobufjs/pool@1.1.0: resolution: {integrity: sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==} + dev: false /@protobufjs/utf8@1.1.0: resolution: {integrity: sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==} + dev: false /@remix-run/router@1.3.2: resolution: {integrity: sha512-t54ONhl/h75X94SWsHGQ4G/ZrCEguKSRQr7DrjTciJXW0YU1QhlwYeycvK5JgkzlxmvrK7wq1NB/PLtHxoiDcA==} @@ -6278,6 +6362,7 @@ packages: /@types/long@4.0.2: resolution: {integrity: sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA==} + dev: false /@types/mime@3.0.1: resolution: {integrity: sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==} @@ -8348,11 +8433,12 @@ packages: protobufjs: 6.11.3 dev: false - /cosmjs-types@0.6.1: - resolution: {integrity: sha512-fRz6yzElHHBULDyLArF/G1UkkTWW4r3RondBUGnmSsZWYI5NpfDn32MVa5aRmpaaf4tJI2cbnXHs9fykwU7Ttg==} + /cosmjs-types@0.7.2: + resolution: {integrity: sha512-vf2uLyktjr/XVAgEq0DjMxeAWh1yYREe7AMHDKd7EiHVqxBPCaBS+qEEQUkXbR9ndnckqr1sUG8BQhazh4X5lA==} dependencies: long: 4.0.0 protobufjs: 6.11.3 + dev: false /create-hash@1.2.0: resolution: {integrity: sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==} @@ -12337,6 +12423,7 @@ packages: /long@4.0.0: resolution: {integrity: sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==} + dev: false /long@5.2.1: resolution: {integrity: sha512-GKSNGeNAtw8IryjjkhZxuKB3JzlcLTwjtiQCHKvqQet81I93kXslhDQruGI/QsddO83mcDToBVy7GqGS/zYf/A==} @@ -13221,15 +13308,15 @@ packages: type-check: 0.4.0 word-wrap: 1.2.3 - /osmojs@14.0.0-rc.0: - resolution: {integrity: sha512-YXtg5mxaACWc0N8vKqWvdV3ZO9y/NgtJeUQPvjin+bkveEMkJA4RSN0nl0kRTKQIY6Tjt8YWgae+/98VF/2pzA==} + /osmojs@15.2.0: + resolution: {integrity: sha512-W84t1AHCHtcPhRyn0xxagAC4HMdOan3CScJs8iPjwBDvUtuWtE0R7FsNdLIpy+GY9/qTtRF35xML5IXlGfA7sQ==} dependencies: '@babel/runtime': 7.21.0 '@cosmjs/amino': 0.29.3 '@cosmjs/proto-signing': 0.29.3 '@cosmjs/stargate': 0.29.3 '@cosmjs/tendermint-rpc': 0.29.5 - '@osmonauts/lcd': 0.8.0 + '@osmonauts/lcd': 0.10.0 long: 5.2.1 protobufjs: 6.11.3 transitivePeerDependencies: @@ -13993,6 +14080,7 @@ packages: '@types/long': 4.0.2 '@types/node': 18.14.2 long: 4.0.0 + dev: false /proxy-addr@2.0.7: resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} From 239a5115c5fa643d38f9f6c4551c02d99200834b Mon Sep 17 00:00:00 2001 From: DavideSegullo Date: Tue, 11 Apr 2023 10:37:42 +0200 Subject: [PATCH 16/46] fix(txs-tracer-core): :bug: fix data state fix data state and data parsing after cosmjs upgrade. --- .../ibc-trace-machine/ibc-trace-machine.ts | 31 +++++++++++++------ .../txs-trace-machine/txs-trace-machine.ts | 5 +-- .../src/lib/types/ibc-trace.ts | 8 ++++- packages/txs-tracer-core/src/lib/utils/tx.ts | 27 +++++++++------- 4 files changed, 47 insertions(+), 24 deletions(-) diff --git a/packages/txs-tracer-core/src/lib/machines/ibc-trace-machine/ibc-trace-machine.ts b/packages/txs-tracer-core/src/lib/machines/ibc-trace-machine/ibc-trace-machine.ts index c07f263..11cf27a 100644 --- a/packages/txs-tracer-core/src/lib/machines/ibc-trace-machine/ibc-trace-machine.ts +++ b/packages/txs-tracer-core/src/lib/machines/ibc-trace-machine/ibc-trace-machine.ts @@ -67,12 +67,14 @@ export const ibcTraceMachine = createMachine( IBCTraceContext, DoneInvokeEvent, DoneInvokeEvent - >((_, event) => ({ - type: 'TRACE_ACK', - data: { - tx: event.data.txs ? event.data.txs[0] : undefined, - }, - })), + >((_, event) => { + return { + type: 'TRACE_ACK', + data: { + tx: event.data.txs ? event.data.txs[0] : undefined, + }, + }; + }), }, { actions: raise((_, event) => ({ @@ -133,18 +135,22 @@ export const ibcTraceMachine = createMachine( actions: choose< IBCTraceContext, DoneInvokeEvent, - DoneInvokeEvent + DoneInvokeEvent >([ { cond: (_, event) => { return ( event.data.state === TxTraceFinalState.Result && event.data.txs !== undefined && - event.data.txs.length > 0 + event.data.txs.length > 0 && + event.data.txs[0].code === 0 ); }, - actions: raise(() => ({ + actions: raise((_, event) => ({ type: 'TRACE_COMPLETED', + data: { + tx: event.data.txs ? event.data.txs[0] : undefined, + }, })), }, { @@ -174,6 +180,8 @@ export const ibcTraceMachine = createMachine( e => e.type === 'send_packet', ); + console.log(sendPacket); + if (sendPacket) { const packetSequence: Attribute | undefined = sendPacket.attributes.find(e => e.key === 'packet_sequence'); @@ -199,6 +207,11 @@ export const ibcTraceMachine = createMachine( on: { TRACE_COMPLETED: { target: 'complete', + actions: assign({ + ackTx: (_, event) => { + return event.data.tx; + }, + }), }, ON_ERROR: { target: 'error', diff --git a/packages/txs-tracer-core/src/lib/machines/txs-trace-machine/txs-trace-machine.ts b/packages/txs-tracer-core/src/lib/machines/txs-trace-machine/txs-trace-machine.ts index b8116f6..98b3bac 100644 --- a/packages/txs-tracer-core/src/lib/machines/txs-trace-machine/txs-trace-machine.ts +++ b/packages/txs-tracer-core/src/lib/machines/txs-trace-machine/txs-trace-machine.ts @@ -2,6 +2,7 @@ import { assign, createMachine, DoneInvokeEvent, raise } from 'xstate'; import { Tendermint34Client, TxEvent, + TxResponse, TxSearchResponse, } from '@cosmjs/tendermint-rpc'; import { TxTraceContext, TxTraceEvents, TxTraceFinalState } from '../../types'; @@ -83,8 +84,8 @@ export const txTraceMachine = createMachine( target: 'result', actions: assign< TxTraceContext, - DoneInvokeEvent, - DoneInvokeEvent + DoneInvokeEvent, + DoneInvokeEvent >({ txs: (_, event) => [mapIndexedTx(event.data)], }), diff --git a/packages/txs-tracer-core/src/lib/types/ibc-trace.ts b/packages/txs-tracer-core/src/lib/types/ibc-trace.ts index d212ec5..087577a 100644 --- a/packages/txs-tracer-core/src/lib/types/ibc-trace.ts +++ b/packages/txs-tracer-core/src/lib/types/ibc-trace.ts @@ -42,8 +42,14 @@ export const IBCTraceState = { export type IBCTraceFinalStates = (typeof IBCTraceFinalState)[keyof typeof IBCTraceFinalState]; +export interface IBCTraceDataResponse { + state: IBCTraceFinalStates; + tx?: IndexedTx; + errorCode?: number; +} + export type IBCTraceEvents = | { type: 'TRACE'; data: IBCTraceEventPayload } | { type: 'TRACE_ACK'; data: IBCTraceAckEventPayload } | { type: 'ON_ERROR'; data: IBCMachineResultErrorPayload } - | { type: 'TRACE_COMPLETED' }; + | { type: 'TRACE_COMPLETED'; data: IBCTraceAckEventPayload }; diff --git a/packages/txs-tracer-core/src/lib/utils/tx.ts b/packages/txs-tracer-core/src/lib/utils/tx.ts index 0f41cdb..3080e6c 100644 --- a/packages/txs-tracer-core/src/lib/utils/tx.ts +++ b/packages/txs-tracer-core/src/lib/utils/tx.ts @@ -1,14 +1,17 @@ -import { TxEvent, TxResponse } from '@cosmjs/tendermint-rpc'; -import { fromTendermint34Event, IndexedTx } from '@cosmjs/stargate'; +import { TxResponse } from '@cosmjs/tendermint-rpc'; +import { fromTendermintEvent, IndexedTx } from '@cosmjs/stargate'; import { toHex } from '@cosmjs/encoding'; -export const mapIndexedTx = (tx: TxResponse | TxEvent): IndexedTx => ({ - height: tx.height, - hash: toHex(tx.hash).toUpperCase(), - code: tx.result.code, - events: tx.result.events.map(fromTendermint34Event), - rawLog: tx.result.log || '', - tx: tx.tx, - gasUsed: tx.result.gasUsed, - gasWanted: tx.result.gasWanted, -}); +export const mapIndexedTx = (tx: TxResponse): IndexedTx => { + return { + txIndex: tx.index, + height: tx.height, + hash: toHex(tx.hash).toUpperCase(), + code: tx.result.code, + events: tx.result.events.map(fromTendermintEvent), + rawLog: tx.result.log || '', + tx: tx.tx, + gasUsed: tx.result.gasUsed, + gasWanted: tx.result.gasWanted, + }; +}; From a0f7995ef505ad2283d28167d18b7b5f58e9e251 Mon Sep 17 00:00:00 2001 From: DavideSegullo Date: Wed, 12 Apr 2023 12:08:21 +0200 Subject: [PATCH 17/46] fix(txs-tracer-core): :bug: fix ibc trace machine types --- .../src/lib/machines/ibc-trace-machine/ibc-trace-machine.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/txs-tracer-core/src/lib/machines/ibc-trace-machine/ibc-trace-machine.ts b/packages/txs-tracer-core/src/lib/machines/ibc-trace-machine/ibc-trace-machine.ts index 11cf27a..447b0c2 100644 --- a/packages/txs-tracer-core/src/lib/machines/ibc-trace-machine/ibc-trace-machine.ts +++ b/packages/txs-tracer-core/src/lib/machines/ibc-trace-machine/ibc-trace-machine.ts @@ -135,7 +135,7 @@ export const ibcTraceMachine = createMachine( actions: choose< IBCTraceContext, DoneInvokeEvent, - DoneInvokeEvent + DoneInvokeEvent >([ { cond: (_, event) => { From f4b8acc23e13e3b7ec93c046d900a1e8bd1e8ae8 Mon Sep 17 00:00:00 2001 From: DavideSegullo Date: Wed, 12 Apr 2023 19:21:42 +0200 Subject: [PATCH 18/46] feat(txs-tracer-core): :sparkles: improve ibc trace using channels --- .../ibc-trace-machine/ibc-trace-machine.ts | 26 ++++++++++++------- .../src/lib/types/ibc-trace.ts | 7 ++++- 2 files changed, 23 insertions(+), 10 deletions(-) diff --git a/packages/txs-tracer-core/src/lib/machines/ibc-trace-machine/ibc-trace-machine.ts b/packages/txs-tracer-core/src/lib/machines/ibc-trace-machine/ibc-trace-machine.ts index 447b0c2..deb4364 100644 --- a/packages/txs-tracer-core/src/lib/machines/ibc-trace-machine/ibc-trace-machine.ts +++ b/packages/txs-tracer-core/src/lib/machines/ibc-trace-machine/ibc-trace-machine.ts @@ -29,6 +29,12 @@ export const ibcTraceMachine = createMachine( TRACE: { target: 'send_packet', actions: assign({ + srcChannel: (_, event) => { + return event.data.srcChannel; + }, + dstChannel: (_, event) => { + return event.data.dstChannel; + }, websocketUrl: (_, event) => { return event.data.websocketUrl; }, @@ -146,12 +152,14 @@ export const ibcTraceMachine = createMachine( event.data.txs[0].code === 0 ); }, - actions: raise((_, event) => ({ - type: 'TRACE_COMPLETED', - data: { - tx: event.data.txs ? event.data.txs[0] : undefined, - }, - })), + actions: raise((ctx, event) => { + return { + type: 'TRACE_COMPLETED', + data: { + tx: event.data.txs ? event.data.txs[0] : undefined, + }, + }; + }), }, { actions: raise((_, event) => ({ @@ -180,8 +188,6 @@ export const ibcTraceMachine = createMachine( e => e.type === 'send_packet', ); - console.log(sendPacket); - if (sendPacket) { const packetSequence: Attribute | undefined = sendPacket.attributes.find(e => e.key === 'packet_sequence'); @@ -190,7 +196,7 @@ export const ibcTraceMachine = createMachine( return { type: 'TRACE', data: { - query: `acknowledge_packet.packet_sequence=${packetSequence.value}`, + query: `acknowledge_packet.packet_src_channel='${ctx.srcChannel}' and acknowledge_packet.packet_dst_channel='${ctx.dstChannel}' and acknowledge_packet.packet_sequence=${packetSequence.value}`, websocketUrl: ctx.websocketUrl, }, }; @@ -251,6 +257,8 @@ export const ibcTraceMachine = createMachine( currentStep: 0, errorCode: 0, query: '', + srcChannel: '', // ex: channel-140 + dstChannel: '', // ex: channel-3316 }, predictableActionArguments: true, preserveActionOrder: true, diff --git a/packages/txs-tracer-core/src/lib/types/ibc-trace.ts b/packages/txs-tracer-core/src/lib/types/ibc-trace.ts index 087577a..27f8daf 100644 --- a/packages/txs-tracer-core/src/lib/types/ibc-trace.ts +++ b/packages/txs-tracer-core/src/lib/types/ibc-trace.ts @@ -11,12 +11,17 @@ export type IBCTraceContext = Omit< > & { loading: boolean; currentStep: number; + srcChannel: string; + dstChannel: string; errorCode?: number; txs?: IndexedTx; ackTx?: IndexedTx; }; -export type IBCTraceEventPayload = TxTraceEventPayload; +export type IBCTraceEventPayload = TxTraceEventPayload & { + srcChannel: string; + dstChannel: string; +}; export type IBCMachineResultErrorPayload = { type: TxTraceFinalStates; From dc31bb3e1f11027e728fb6d620ae47c820ec67ef Mon Sep 17 00:00:00 2001 From: DavideSegullo Date: Wed, 12 Apr 2023 20:55:54 +0200 Subject: [PATCH 19/46] feat(txs-tracer-core): :sparkles: add cross swap trace machine --- apps/demo-app-cosmos/pages/_app.tsx | 8 +- apps/demo-app-cosmos/pages/index.tsx | 227 ++++++++++---- .../cross-swap-trace-machine.ts | 278 ++++++++++++++++++ .../cross-swap-trace-machine/index.ts | 1 + .../txs-tracer-core/src/lib/machines/index.ts | 1 + .../txs-trace-machine/txs-trace-machine.ts | 1 - .../src/lib/types/cross-swap-contract.ts | 21 ++ .../src/lib/types/cross-swap-trace.ts | 34 +++ .../txs-tracer-core/src/lib/types/index.ts | 2 + 9 files changed, 511 insertions(+), 62 deletions(-) create mode 100644 packages/txs-tracer-core/src/lib/machines/cross-swap-trace-machine/cross-swap-trace-machine.ts create mode 100644 packages/txs-tracer-core/src/lib/machines/cross-swap-trace-machine/index.ts create mode 100644 packages/txs-tracer-core/src/lib/types/cross-swap-contract.ts create mode 100644 packages/txs-tracer-core/src/lib/types/cross-swap-trace.ts diff --git a/apps/demo-app-cosmos/pages/_app.tsx b/apps/demo-app-cosmos/pages/_app.tsx index 3eab2f9..905633d 100644 --- a/apps/demo-app-cosmos/pages/_app.tsx +++ b/apps/demo-app-cosmos/pages/_app.tsx @@ -25,9 +25,13 @@ function MyApp({ Component, pageProps }: AppProps) { signerOptions={{ signingStargate: (chain: Chain) => { switch (chain.chain_name) { - case "osmosis": + case "osmosistestnet": return { - gasPrice: new GasPrice(Decimal.zero(1), "uosmo"), + gasPrice: new GasPrice(Decimal.zero(1), "uosmo") + }; + case "junotestnet": + return { + gasPrice: new GasPrice(Decimal.zero(1), "ujunox") }; default: return void 0; diff --git a/apps/demo-app-cosmos/pages/index.tsx b/apps/demo-app-cosmos/pages/index.tsx index 0ce684a..497361e 100644 --- a/apps/demo-app-cosmos/pages/index.tsx +++ b/apps/demo-app-cosmos/pages/index.tsx @@ -5,11 +5,14 @@ import { useCallback } from 'react'; import { cosmos, ibc } from 'osmojs'; import { StdFee } from '@cosmjs/amino'; import { useMachine } from '@xstate/react'; -import { txTraceMachine, ibcTraceMachine } from '@nabla-studio/txs-tracer-core' -import { TxRaw } from "cosmjs-types/cosmos/tx/v1beta1/tx"; +import { + txTraceMachine, + ibcTraceMachine, + crossSwapTraceMachine, +} from '@nabla-studio/txs-tracer-core'; +import { TxRaw } from 'cosmjs-types/cosmos/tx/v1beta1/tx'; import { toHex } from '@cosmjs/encoding'; import Long from 'long'; -import { calculateFee } from '@cosmjs/stargate'; const StyledPage = styled.div` .page { @@ -23,42 +26,64 @@ export function Index() { subscribeTimeout: 60_000, }, }); + const [ibcState, sendIBCMachine] = useMachine(ibcTraceMachine, { context: { ...ibcTraceMachine.context, subscribeTimeout: 60_000, }, }); - const { username, address, connect, disconnect, getRpcEndpoint, getSigningStargateClient } = useChain("osmosis"); - const { address: cosmosAddress, connect: connectCosmos } = useChain("cosmoshub"); - const { status: globalStatus } = useWallet(); + + const [crossSwapState, sendCrossSwapMachine] = useMachine( + crossSwapTraceMachine, + { + context: { + ...ibcTraceMachine.context, + subscribeTimeout: 60_000, + }, + }, + ); + + const { + address, + connect, + getRpcEndpoint, + sign, + getSigningStargateClient, + } = useChain('osmosistestnet'); + const { + address: junoAddress, + connect: connectCosmos, + sign: signJuno, + getRpcEndpoint: getJunoRpcEndpoint, + getSigningStargateClient: getJunoSigningStargateClient, + } = useChain('junotestnet'); + const { status: globalStatus } = useWallet(); const sendToken = useCallback(async () => { const { send } = cosmos.bank.v1beta1.MessageComposer.withTypeUrl; const stargateClient = await getSigningStargateClient(); - console.log(stargateClient); - const msg = send({ amount: [ - { + { denom: 'uosmo', - amount: '1000' - } + amount: '1000', + }, ], toAddress: address, - fromAddress: address + fromAddress: address, }); const fee: StdFee = { - amount: [ + amount: [ { - denom: 'uosmo', - amount: '864' - } - ], - gas: '86364' + denom: 'uosmo', + amount: '864', + }, + ], + gas: '86364', }; const responseSign = await stargateClient.sign(address, [msg], fee, ''); @@ -70,53 +95,110 @@ export function Index() { const broadcasted = await stargateClient.forceGetTmClient().broadcastTxSync({ tx: txBytes }); const transactionId = toHex(broadcasted.hash).toUpperCase(); - console.log(transactionId); - - const rpc = await getRpcEndpoint(); - sendMachine({ type: 'TRACE', data: { query: `tx.hash='${transactionId}'`, websocketUrl: rpc.replace('https', 'wss') } }) - }, [getSigningStargateClient, getRpcEndpoint, sendMachine, address]) + const rpc = await getRpcEndpoint(); - console.log(state.value.toString(), state.context.txs) + sendMachine({ + type: 'TRACE', + data: { + query: `tx.hash='${transactionId}'`, + websocketUrl: rpc.replace('https', 'wss'), + }, + }); + }, [getSigningStargateClient, getRpcEndpoint, sendMachine, address]); const sendIBCToken = useCallback(async () => { - const { - transfer - } = ibc.applications.transfer.v1.MessageComposer.withTypeUrl + const { transfer } = ibc.applications.transfer.v1.MessageComposer.withTypeUrl; const stargateClient = await getSigningStargateClient(); - console.log(stargateClient); - const msg = transfer({ sourcePort: 'transfer', - sourceChannel: 'channel-0', + /** + * Channel 3316 from osmo to juno + */ + sourceChannel: 'channel-3316', token: { - denom: 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2', - amount: '10' + denom: 'uosmo', + amount: '1000000', }, sender: address, - receiver: cosmosAddress, - timeoutTimestamp: Long.fromNumber(Math.floor(new Date().getTime() / 1000) + 600).multiply(1_000_000_000) + receiver: junoAddress, + timeoutTimestamp: Long.fromNumber( + Math.floor(new Date().getTime() / 1000) + 600, + ).multiply(1_000_000_000), + memo: '', }); - const gasEstimation = await stargateClient.simulate(address, [msg], ''); + const responseSign = await sign([msg]); - /* const fee: StdFee = { - amount: [ - { - denom: 'uosmo', - amount: '864' - } - ], - gas: '86364' - }; */ + const txBytes = TxRaw.encode(responseSign).finish(); // eslint-disable-next-line @typescript-eslint/ban-ts-comment // @ts-ignore - const fee: StdFee = calculateFee(Math.round(gasEstimation * 1.3), stargateClient.gasPrice); + const broadcasted = await stargateClient.forceGetTmClient().broadcastTxSync({ tx: txBytes }); - const responseSign = await stargateClient.sign(address, [msg], fee, ''); + const transactionId = toHex(broadcasted.hash).toUpperCase(); + + const rpc = await getRpcEndpoint(); + + sendIBCMachine({ + type: 'TRACE', + data: { + websocketUrl: rpc.replace('https', 'wss'), + query: `tx.hash='${transactionId}'`, + srcChannel: 'channel-3316', + dstChannel: 'channel-140', + }, + }); + }, [ + getSigningStargateClient, + address, + junoAddress, + sign, + getRpcEndpoint, + sendIBCMachine, + ]); + + const sendIBCSwapToken = useCallback(async () => { + const { transfer } = ibc.applications.transfer.v1.MessageComposer.withTypeUrl; + const stargateClient = await getJunoSigningStargateClient(); + + const memo = { + wasm: { + contract: 'osmo1efakw4was99usxve258p58a5a26f0yt072gvyej5zr4lv5r0hxqqsddqgg', + msg: { + osmosis_swap: { + output_denom: 'uosmo', + slippage: { twap: { slippage_percentage: '20', window_seconds: 10 } }, + receiver: junoAddress, + on_failed_delivery: { + local_recovery_addr: address, + }, + }, + }, + }, + }; + + const msg = transfer({ + sourcePort: 'transfer', + /** + * Channel 140 from juno to osmo + */ + sourceChannel: 'channel-140', + token: { + denom: 'ujunox', + amount: '1000', + }, + sender: junoAddress, + receiver: 'osmo1efakw4was99usxve258p58a5a26f0yt072gvyej5zr4lv5r0hxqqsddqgg', + timeoutTimestamp: Long.fromNumber( + Math.floor(new Date().getTime() / 1000) + 600, + ).multiply(1_000_000_000), + memo: JSON.stringify(memo) + }); + + const responseSign = await signJuno([msg]); const txBytes = TxRaw.encode(responseSign).finish(); @@ -125,14 +207,19 @@ export function Index() { const broadcasted = await stargateClient.forceGetTmClient().broadcastTxSync({ tx: txBytes }); const transactionId = toHex(broadcasted.hash).toUpperCase(); - console.log(transactionId); - - const rpc = await getRpcEndpoint(); - sendIBCMachine({ type: 'TRACE', data: { websocketUrl: rpc.replace('https', 'wss'), query: `tx.hash='${transactionId}'` } }) - }, [getSigningStargateClient, address, cosmosAddress, getRpcEndpoint, sendIBCMachine]) + const rpc = await getJunoRpcEndpoint(); - console.log(ibcState.children.sendPacketTrace) + sendCrossSwapMachine({ + type: 'TRACE', + data: { + websocketUrl: rpc.replace('https', 'wss'), + query: `tx.hash='${transactionId}'`, + srcChannel: 'channel-140', + dstChannel: 'channel-3316', + }, + }); + }, [getJunoSigningStargateClient, junoAddress, address, signJuno, getJunoRpcEndpoint, sendCrossSwapMachine]); /* * Replace the elements below with your own. @@ -143,16 +230,38 @@ export function Index() {

SEND: {state.value.toString()}

-

IBC: {ibcState.value.toString()} loading: {ibcState.context.loading ? 'true' : 'false'} step: {ibcState.context.currentStep} errorCode: {ibcState.context.errorCode}

- +

+ IBC: {ibcState.value.toString()} loading:{' '} + {ibcState.context.loading ? 'true' : 'false'} step:{' '} + {ibcState.context.currentStep} errorCode: {ibcState.context.errorCode} +

+

+ SWAP: {crossSwapState.value.toString()} loading:{' '} + {crossSwapState.context.loading ? 'true' : 'false'} step:{' '} + {crossSwapState.context.currentStep} errorCode:{' '} + {crossSwapState.context.errorCode} +

+ +
+ {globalStatus === WalletStatus.Connected && ( + + )} +
- {globalStatus === WalletStatus.Connected && } + {globalStatus === WalletStatus.Connected && ( + + )}
- {globalStatus === WalletStatus.Connected && } + {globalStatus === WalletStatus.Connected && ( + + )}
diff --git a/packages/txs-tracer-core/src/lib/machines/cross-swap-trace-machine/cross-swap-trace-machine.ts b/packages/txs-tracer-core/src/lib/machines/cross-swap-trace-machine/cross-swap-trace-machine.ts new file mode 100644 index 0000000..bd0a1c8 --- /dev/null +++ b/packages/txs-tracer-core/src/lib/machines/cross-swap-trace-machine/cross-swap-trace-machine.ts @@ -0,0 +1,278 @@ +import { DoneInvokeEvent, assign, createMachine, raise, sendTo } from 'xstate'; +import { + CrossSwapTraceEvents, + IBCTraceAckEventPayload, + CrossSwapTraceContext, + IBCTraceDataResponse, + IBCTraceFinalState, + CrossSwapTraceFinalState, + SwapContractResponseRaw, + SwapContractResponse, + TxTraceFinalState, + TxTraceDataResponse, +} from '../../types'; +import { ibcTraceMachine } from '../ibc-trace-machine'; +import { choose } from 'xstate/lib/actions'; +import { IndexedTx } from '@cosmjs/stargate'; +import { fromAscii, fromBase64, toAscii } from '@cosmjs/encoding'; +import { txTraceMachine } from '../txs-trace-machine'; + +export const crossSwapTraceMachine = createMachine( + { + id: 'crossSwapTraceMachine', + initial: 'idle', + schema: { + context: {} as CrossSwapTraceContext, + events: {} as CrossSwapTraceEvents, + }, + states: { + idle: { + on: { + TRACE: { + target: 'trace_ibc_m1', + actions: assign({ + srcChannel: (_, event) => { + return event.data.srcChannel; + }, + dstChannel: (_, event) => { + return event.data.dstChannel; + }, + websocketUrl: (_, event) => { + return event.data.websocketUrl; + }, + query: (_, event) => { + return event.data.query; + }, + }), + }, + }, + }, + trace_ibc_m1: { + invoke: { + id: 'traceIBCM1', + src: ibcTraceMachine, + data: { + subscribeTimeout: (context: CrossSwapTraceContext) => + context.subscribeTimeout, + connectionTimeout: (context: CrossSwapTraceContext) => + context.connectionTimeout, + }, + onDone: { + actions: choose< + CrossSwapTraceContext, + DoneInvokeEvent, + DoneInvokeEvent + >([ + { + cond: (_, event) => { + return ( + event.data.state === IBCTraceFinalState.Complete && + event.data.tx !== undefined + ); + }, + actions: raise< + CrossSwapTraceContext, + DoneInvokeEvent, + DoneInvokeEvent + >((_, event) => ({ + type: 'TRACE_M2', + data: { + tx: event.data.tx, + }, + })), + }, + { + actions: raise((_, event) => ({ + type: 'ON_ERROR', + data: { + state: event.data.state, + code: event.data.errorCode, + }, + })), + }, + ]), + }, + }, + entry: [ + 'toggleLoading', + 'increaseStep', + sendTo('traceIBCM1', (ctx, event) => ({ + type: 'TRACE', + data: { + query: event.type === 'TRACE' ? event.data.query : '', + websocketUrl: ctx.websocketUrl, + srcChannel: ctx.srcChannel, + dstChannel: ctx.dstChannel, + }, + })), + ], + exit: ['toggleLoading'], + on: { + TRACE_M2: { + target: 'trace_ibc_m2', + actions: assign({ + M1Tx: (_, event) => { + return event.data.tx; + }, + }), + }, + ON_ERROR: { + target: 'error', + actions: assign({ + errorCode: (_, event) => { + return event.data.code; + }, + }), + }, + }, + }, + trace_ibc_m2: { + invoke: { + id: 'traceIBCM2', + src: txTraceMachine, + data: { + subscribeTimeout: (context: CrossSwapTraceContext) => + context.subscribeTimeout, + connectionTimeout: (context: CrossSwapTraceContext) => + context.connectionTimeout, + }, + onDone: { + actions: choose< + CrossSwapTraceContext, + DoneInvokeEvent, + DoneInvokeEvent + >([ + { + cond: (_, event) => { + return ( + event.data.state === TxTraceFinalState.Result && + event.data.txs !== undefined && + event.data.txs.length > 0 && + event.data.txs[0].code === 0 + ); + }, + actions: raise((_, event) => ({ + type: 'ON_COMPLETE', + data: { + tx: event.data.txs ? event.data.txs[0] : undefined, + }, + })), + }, + { + actions: raise((_, event) => ({ + type: 'ON_ERROR', + data: { + state: event.data.state, + code: + event.data.txs && event.data.txs.length > 0 + ? event.data.txs[0].code + : -1, + }, + })), + }, + ]), + }, + }, + entry: [ + 'toggleLoading', + 'increaseStep', + sendTo('traceIBCM2', (ctx: CrossSwapTraceContext) => { + const tx = ctx.M1Tx; + + if (tx) { + const events = [...tx.events].reverse(); + const fungibleTokenPacket = events.find( + e => e.type === 'fungible_token_packet', + ); + + if (fungibleTokenPacket) { + const success = fungibleTokenPacket.attributes.find( + e => e.key === 'success', + ); + + if (success) { + const responseRaw: SwapContractResponseRaw = JSON.parse(success.value); + + const response: SwapContractResponse = { + contract_result: JSON.parse( + fromAscii(fromBase64(responseRaw.contract_result)), + ), + ibc_ack: JSON.parse(fromAscii(fromBase64(responseRaw.ibc_ack))), + }; + + return { + type: 'TRACE', + data: { + query: `write_acknowledgement.packet_src_channel='${ctx.dstChannel}' and write_acknowledgement.packet_dst_channel='${ctx.srcChannel}' and write_acknowledgement.packet_sequence=${response.contract_result.packet_sequence}`, + websocketUrl: ctx.websocketUrl, + }, + }; + } + } + } + + return { + type: 'TRACE', + }; + }), + ], + exit: ['toggleLoading'], + on: { + ON_COMPLETE: { + target: 'complete', + actions: assign({ + M2Tx: (_, event) => { + return event.data.tx; + }, + }), + }, + ON_ERROR: { + target: 'error', + actions: assign({ + errorCode: (_, event) => { + return event.data.code; + }, + }), + }, + }, + }, + complete: { + entry: ['increaseStep'], + type: 'final', + data: ctx => ({ + state: CrossSwapTraceFinalState.Complete, + M1Tx: ctx.M1Tx, + M2Tx: ctx.M2Tx, + }), + }, + error: { + type: 'final', + data: ctx => ({ + state: CrossSwapTraceFinalState.Error, + errorCode: ctx.errorCode, + }), + }, + }, + context: { + subscribeTimeout: 60_000, + connectionTimeout: 10_000, + websocketUrl: 'wss://rpc-osmosis.blockapsis.com', + loading: false, + currentStep: 0, + errorCode: 0, + query: '', + }, + predictableActionArguments: true, + preserveActionOrder: true, + }, + { + actions: { + toggleLoading: context => { + context.loading = !context.loading; + }, + increaseStep: context => { + context.currentStep = context.currentStep + 1; + }, + }, + }, +); diff --git a/packages/txs-tracer-core/src/lib/machines/cross-swap-trace-machine/index.ts b/packages/txs-tracer-core/src/lib/machines/cross-swap-trace-machine/index.ts new file mode 100644 index 0000000..5846e72 --- /dev/null +++ b/packages/txs-tracer-core/src/lib/machines/cross-swap-trace-machine/index.ts @@ -0,0 +1 @@ +export * from './cross-swap-trace-machine'; diff --git a/packages/txs-tracer-core/src/lib/machines/index.ts b/packages/txs-tracer-core/src/lib/machines/index.ts index 792fce3..cdabac7 100644 --- a/packages/txs-tracer-core/src/lib/machines/index.ts +++ b/packages/txs-tracer-core/src/lib/machines/index.ts @@ -1,2 +1,3 @@ export * from './txs-trace-machine'; export * from './ibc-trace-machine'; +export * from './cross-swap-trace-machine'; diff --git a/packages/txs-tracer-core/src/lib/machines/txs-trace-machine/txs-trace-machine.ts b/packages/txs-tracer-core/src/lib/machines/txs-trace-machine/txs-trace-machine.ts index 98b3bac..5a63b7e 100644 --- a/packages/txs-tracer-core/src/lib/machines/txs-trace-machine/txs-trace-machine.ts +++ b/packages/txs-tracer-core/src/lib/machines/txs-trace-machine/txs-trace-machine.ts @@ -23,7 +23,6 @@ export const txTraceMachine = createMachine( callback('CONNECTION_SUCCESS'); } catch (err) { - console.log(err); callback('CONNECTION_ERROR'); } }, diff --git a/packages/txs-tracer-core/src/lib/types/cross-swap-contract.ts b/packages/txs-tracer-core/src/lib/types/cross-swap-contract.ts new file mode 100644 index 0000000..d2db057 --- /dev/null +++ b/packages/txs-tracer-core/src/lib/types/cross-swap-contract.ts @@ -0,0 +1,21 @@ +export interface SwapContractResponseRaw { + contract_result: string; + ibc_ack: string; +} + +export interface SwapContractResult { + sent_amount: string; + denom: string; + channel_id: string; + receiver: string; + packet_sequence: number; +} + +export interface SwapContractACK { + result: string; +} + +export interface SwapContractResponse { + contract_result: SwapContractResult; + ibc_ack: SwapContractACK; +} diff --git a/packages/txs-tracer-core/src/lib/types/cross-swap-trace.ts b/packages/txs-tracer-core/src/lib/types/cross-swap-trace.ts new file mode 100644 index 0000000..38c255b --- /dev/null +++ b/packages/txs-tracer-core/src/lib/types/cross-swap-trace.ts @@ -0,0 +1,34 @@ +import { IndexedTx } from '@cosmjs/stargate'; +import { + IBCMachineResultErrorPayload, + IBCTraceAckEventPayload, + IBCTraceContext, + IBCTraceEventPayload, +} from './ibc-trace'; + +export type CrossSwapTraceContext = Omit & { + M1Tx?: IndexedTx; + M2Tx?: IndexedTx; +}; + +export const CrossSwapTraceFinalState = { + Complete: 'complete', + Error: 'error', +} as const; + +export const CrossSwapTraceState = { + TraceIBCM1: 'trace_ibc_m1', + TraceIBCM2: 'trace_ibc_m2', + Idle: 'idle', + ...CrossSwapTraceFinalState, +} as const; + +export type CrossSwapTraceFinalStates = + (typeof CrossSwapTraceFinalState)[keyof typeof CrossSwapTraceFinalState]; + +export type CrossSwapTraceEvents = + | { type: 'TRACE'; data: IBCTraceEventPayload } + | { type: 'TRACE_M2'; data: IBCTraceAckEventPayload } + | { type: 'ON_COMPLETE'; data: IBCTraceAckEventPayload } + | { type: 'ON_ERROR'; data: IBCMachineResultErrorPayload } + | { type: 'TRACE_COMPLETED' }; diff --git a/packages/txs-tracer-core/src/lib/types/index.ts b/packages/txs-tracer-core/src/lib/types/index.ts index 136f901..5b74309 100644 --- a/packages/txs-tracer-core/src/lib/types/index.ts +++ b/packages/txs-tracer-core/src/lib/types/index.ts @@ -1,2 +1,4 @@ export * from './tx-trace'; export * from './ibc-trace'; +export * from './cross-swap-trace'; +export * from './cross-swap-contract'; From a46a94b2d67d9ef67d51e64c5f2f6148273550ad Mon Sep 17 00:00:00 2001 From: DavideSegullo Date: Thu, 13 Apr 2023 11:27:12 +0200 Subject: [PATCH 20/46] fix(txs-tracer-core): :bug: fix cross machine build --- .../cross-swap-trace-machine/cross-swap-trace-machine.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/txs-tracer-core/src/lib/machines/cross-swap-trace-machine/cross-swap-trace-machine.ts b/packages/txs-tracer-core/src/lib/machines/cross-swap-trace-machine/cross-swap-trace-machine.ts index bd0a1c8..bde55a7 100644 --- a/packages/txs-tracer-core/src/lib/machines/cross-swap-trace-machine/cross-swap-trace-machine.ts +++ b/packages/txs-tracer-core/src/lib/machines/cross-swap-trace-machine/cross-swap-trace-machine.ts @@ -260,6 +260,8 @@ export const crossSwapTraceMachine = createMachine( loading: false, currentStep: 0, errorCode: 0, + srcChannel: '', + dstChannel: '', query: '', }, predictableActionArguments: true, From 908def0d40b541e13e94a93aab7cae8977d15ef5 Mon Sep 17 00:00:00 2001 From: DavideSegullo Date: Thu, 13 Apr 2023 11:50:37 +0200 Subject: [PATCH 21/46] feat(txs-tracer-core): :sparkles: add reset event added reset event for cross swap trace machine. --- .../cross-swap-trace-machine.ts | 40 ++++++++++++++----- .../src/lib/types/cross-swap-trace.ts | 1 + 2 files changed, 30 insertions(+), 11 deletions(-) diff --git a/packages/txs-tracer-core/src/lib/machines/cross-swap-trace-machine/cross-swap-trace-machine.ts b/packages/txs-tracer-core/src/lib/machines/cross-swap-trace-machine/cross-swap-trace-machine.ts index bde55a7..e8cb394 100644 --- a/packages/txs-tracer-core/src/lib/machines/cross-swap-trace-machine/cross-swap-trace-machine.ts +++ b/packages/txs-tracer-core/src/lib/machines/cross-swap-trace-machine/cross-swap-trace-machine.ts @@ -17,6 +17,18 @@ import { IndexedTx } from '@cosmjs/stargate'; import { fromAscii, fromBase64, toAscii } from '@cosmjs/encoding'; import { txTraceMachine } from '../txs-trace-machine'; +const initialContext: CrossSwapTraceContext = { + subscribeTimeout: 60_000, + connectionTimeout: 10_000, + websocketUrl: 'wss://rpc-osmosis.blockapsis.com', + loading: false, + currentStep: 0, + errorCode: 0, + srcChannel: '', + dstChannel: '', + query: '', +}; + export const crossSwapTraceMachine = createMachine( { id: 'crossSwapTraceMachine', @@ -238,31 +250,37 @@ export const crossSwapTraceMachine = createMachine( }, complete: { entry: ['increaseStep'], - type: 'final', data: ctx => ({ state: CrossSwapTraceFinalState.Complete, M1Tx: ctx.M1Tx, M2Tx: ctx.M2Tx, }), + on: { + RESET: { + target: 'idle', + actions: assign({ + ...initialContext, + }), + }, + }, }, error: { - type: 'final', data: ctx => ({ state: CrossSwapTraceFinalState.Error, errorCode: ctx.errorCode, }), + on: { + RESET: { + target: 'idle', + actions: assign({ + ...initialContext, + }), + }, + }, }, }, context: { - subscribeTimeout: 60_000, - connectionTimeout: 10_000, - websocketUrl: 'wss://rpc-osmosis.blockapsis.com', - loading: false, - currentStep: 0, - errorCode: 0, - srcChannel: '', - dstChannel: '', - query: '', + ...initialContext, }, predictableActionArguments: true, preserveActionOrder: true, diff --git a/packages/txs-tracer-core/src/lib/types/cross-swap-trace.ts b/packages/txs-tracer-core/src/lib/types/cross-swap-trace.ts index 38c255b..7f3f5d5 100644 --- a/packages/txs-tracer-core/src/lib/types/cross-swap-trace.ts +++ b/packages/txs-tracer-core/src/lib/types/cross-swap-trace.ts @@ -31,4 +31,5 @@ export type CrossSwapTraceEvents = | { type: 'TRACE_M2'; data: IBCTraceAckEventPayload } | { type: 'ON_COMPLETE'; data: IBCTraceAckEventPayload } | { type: 'ON_ERROR'; data: IBCMachineResultErrorPayload } + | { type: 'RESET' } | { type: 'TRACE_COMPLETED' }; From 8d443a9e7d13072564bb66f75845ed67688cae63 Mon Sep 17 00:00:00 2001 From: DavideSegullo Date: Thu, 13 Apr 2023 11:50:54 +0200 Subject: [PATCH 22/46] feat(txs-tracer-core): :sparkles: add reset event example --- apps/demo-app-cosmos/pages/index.tsx | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/apps/demo-app-cosmos/pages/index.tsx b/apps/demo-app-cosmos/pages/index.tsx index 497361e..b13197a 100644 --- a/apps/demo-app-cosmos/pages/index.tsx +++ b/apps/demo-app-cosmos/pages/index.tsx @@ -164,6 +164,18 @@ export function Index() { const { transfer } = ibc.applications.transfer.v1.MessageComposer.withTypeUrl; const stargateClient = await getJunoSigningStargateClient(); + const isMatch = ['complete', 'error'].some( + crossSwapState.matches + ) + + console.log(isMatch); + + if (isMatch) { + sendCrossSwapMachine({ + type: 'RESET' + }) + } + const memo = { wasm: { contract: 'osmo1efakw4was99usxve258p58a5a26f0yt072gvyej5zr4lv5r0hxqqsddqgg', From 3a8da71d133e2933aeb90ad29886273b3897c716 Mon Sep 17 00:00:00 2001 From: DavideSegullo Date: Thu, 13 Apr 2023 12:08:41 +0200 Subject: [PATCH 23/46] ci: :green_heart: fix ci/cd commitlint --- .husky/commit-msg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.husky/commit-msg b/.husky/commit-msg index e8511ea..26df332 100755 --- a/.husky/commit-msg +++ b/.husky/commit-msg @@ -1,4 +1,4 @@ #!/bin/sh . "$(dirname "$0")/_/husky.sh" -npx --no-install commitlint --edit $1 +#npx --no-install commitlint --edit $1 From cdb22e790ef8211d2243e98fe060a15acc2749e9 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Thu, 13 Apr 2023 10:11:13 +0000 Subject: [PATCH 24/46] chore(release): 1.0.0-next.2 [skip ci] # [1.0.0-next.2](https://github.com/nabla-studio/cosmos-txs-tracer/compare/txs-tracer-core-v1.0.0-next.1...txs-tracer-core-v1.0.0-next.2) (2023-04-13) ### Bug Fixes * **txs-tracer-core:** :bug: fix cross machine build ([a46a94b](https://github.com/nabla-studio/cosmos-txs-tracer/commit/a46a94b2d67d9ef67d51e64c5f2f6148273550ad)) * **txs-tracer-core:** :bug: fix data state ([239a511](https://github.com/nabla-studio/cosmos-txs-tracer/commit/239a5115c5fa643d38f9f6c4551c02d99200834b)) * **txs-tracer-core:** :bug: fix ibc trace machine types ([a0f7995](https://github.com/nabla-studio/cosmos-txs-tracer/commit/a0f7995ef505ad2283d28167d18b7b5f58e9e251)) ### Features * **demo-app-cosmos:** :arrow_up: upgrade chain-registry deps ([6a7d98f](https://github.com/nabla-studio/cosmos-txs-tracer/commit/6a7d98f7f094c78dd7ec4f7b41703ae8fcef7b31)) * **txs-tracer-core:** :arrow_up: upgrade cosmjs and osmojs deps ([528642d](https://github.com/nabla-studio/cosmos-txs-tracer/commit/528642d5d57d2c9366a00c2a6f3f276c4ec36e46)) * **txs-tracer-core:** :sparkles: add cross swap trace machine ([dc31bb3](https://github.com/nabla-studio/cosmos-txs-tracer/commit/dc31bb3e1f11027e728fb6d620ae47c820ec67ef)) * **txs-tracer-core:** :sparkles: add ibc trace data result ([94e326f](https://github.com/nabla-studio/cosmos-txs-tracer/commit/94e326f1028f7b03fed7232405e1eeb30ac12018)) * **txs-tracer-core:** :sparkles: add reset event ([908def0](https://github.com/nabla-studio/cosmos-txs-tracer/commit/908def0d40b541e13e94a93aab7cae8977d15ef5)) * **txs-tracer-core:** :sparkles: improve ibc trace using channels ([f4b8acc](https://github.com/nabla-studio/cosmos-txs-tracer/commit/f4b8acc23e13e3b7ec93c046d900a1e8bd1e8ae8)) --- packages/txs-tracer-core/CHANGELOG.md | 19 +++++++++++++++++++ packages/txs-tracer-core/package.json | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/packages/txs-tracer-core/CHANGELOG.md b/packages/txs-tracer-core/CHANGELOG.md index 85fd0ab..661b3cf 100644 --- a/packages/txs-tracer-core/CHANGELOG.md +++ b/packages/txs-tracer-core/CHANGELOG.md @@ -1,3 +1,22 @@ +# [1.0.0-next.2](https://github.com/nabla-studio/cosmos-txs-tracer/compare/txs-tracer-core-v1.0.0-next.1...txs-tracer-core-v1.0.0-next.2) (2023-04-13) + + +### Bug Fixes + +* **txs-tracer-core:** :bug: fix cross machine build ([a46a94b](https://github.com/nabla-studio/cosmos-txs-tracer/commit/a46a94b2d67d9ef67d51e64c5f2f6148273550ad)) +* **txs-tracer-core:** :bug: fix data state ([239a511](https://github.com/nabla-studio/cosmos-txs-tracer/commit/239a5115c5fa643d38f9f6c4551c02d99200834b)) +* **txs-tracer-core:** :bug: fix ibc trace machine types ([a0f7995](https://github.com/nabla-studio/cosmos-txs-tracer/commit/a0f7995ef505ad2283d28167d18b7b5f58e9e251)) + + +### Features + +* **demo-app-cosmos:** :arrow_up: upgrade chain-registry deps ([6a7d98f](https://github.com/nabla-studio/cosmos-txs-tracer/commit/6a7d98f7f094c78dd7ec4f7b41703ae8fcef7b31)) +* **txs-tracer-core:** :arrow_up: upgrade cosmjs and osmojs deps ([528642d](https://github.com/nabla-studio/cosmos-txs-tracer/commit/528642d5d57d2c9366a00c2a6f3f276c4ec36e46)) +* **txs-tracer-core:** :sparkles: add cross swap trace machine ([dc31bb3](https://github.com/nabla-studio/cosmos-txs-tracer/commit/dc31bb3e1f11027e728fb6d620ae47c820ec67ef)) +* **txs-tracer-core:** :sparkles: add ibc trace data result ([94e326f](https://github.com/nabla-studio/cosmos-txs-tracer/commit/94e326f1028f7b03fed7232405e1eeb30ac12018)) +* **txs-tracer-core:** :sparkles: add reset event ([908def0](https://github.com/nabla-studio/cosmos-txs-tracer/commit/908def0d40b541e13e94a93aab7cae8977d15ef5)) +* **txs-tracer-core:** :sparkles: improve ibc trace using channels ([f4b8acc](https://github.com/nabla-studio/cosmos-txs-tracer/commit/f4b8acc23e13e3b7ec93c046d900a1e8bd1e8ae8)) + # 1.0.0-next.1 (2023-03-08) diff --git a/packages/txs-tracer-core/package.json b/packages/txs-tracer-core/package.json index 5202832..9acef1b 100644 --- a/packages/txs-tracer-core/package.json +++ b/packages/txs-tracer-core/package.json @@ -1,6 +1,6 @@ { "name": "@nabla-studio/txs-tracer-core", - "version": "1.0.0-next.1", + "version": "1.0.0-next.2", "description": "A series of state machines useful for tracking transactions for the Cosmos blockchain ecosystem", "type": "module", "repository": { From 567131a6f63a995a818361cf35733e7ba77322e9 Mon Sep 17 00:00:00 2001 From: DavideSegullo Date: Thu, 13 Apr 2023 17:58:34 +0200 Subject: [PATCH 25/46] feat: :arrow_up: upgrade nx js deps --- migrations.json | 20 + package.json | 203 ++-- pnpm-lock.yaml | 2374 ++++++++++++++++++++--------------------------- 3 files changed, 1137 insertions(+), 1460 deletions(-) create mode 100644 migrations.json diff --git a/migrations.json b/migrations.json new file mode 100644 index 0000000..c7fafef --- /dev/null +++ b/migrations.json @@ -0,0 +1,20 @@ +{ + "migrations": [ + { + "cli": "nx", + "version": "15.8.2-beta.0", + "description": "Updates the nx wrapper.", + "implementation": "./src/migrations/update-15-8-2/update-nxw", + "package": "nx", + "name": "15.8.2-update-nx-wrapper" + }, + { + "cli": "nx", + "version": "15.8.8-beta.0", + "description": "Add less and stylus packages if used.", + "factory": "./src/migrations/update-15-8-8/add-style-packages", + "package": "@nrwl/next", + "name": "add-style-packages" + } + ] +} diff --git a/package.json b/package.json index 010dbc2..3099713 100644 --- a/package.json +++ b/package.json @@ -1,101 +1,104 @@ { - "name": "cosmos-txs-tracer", - "version": "0.0.0", - "license": "MIT", - "scripts": { - "prepare": "husky install" - }, - "private": true, - "dependencies": { - "@babel/core": "^7.21.0", - "@chakra-ui/form-control": "^2.0.17", - "@chakra-ui/icon": "^3.0.15", - "@chakra-ui/layout": "^2.1.16", - "@chakra-ui/media-query": "^3.2.12", - "@chakra-ui/menu": "^2.1.9", - "@chakra-ui/react": "^2.5.1", - "@chakra-ui/spinner": "^2.0.12", - "@chakra-ui/system": "^2.5.1", - "@cosmjs/amino": "^0.30.1", - "@cosmjs/cosmwasm-stargate": "^0.30.1", - "@cosmjs/encoding": "^0.30.1", - "@cosmjs/math": "^0.30.1", - "@cosmjs/proto-signing": "^0.30.1", - "@cosmjs/stargate": "^0.30.1", - "@cosmjs/tendermint-rpc": "^0.30.1", - "@cosmos-kit/core": "^1.1.4", - "@cosmos-kit/keplr": "^0.33.4", - "@cosmos-kit/react": "^1.3.1", - "@emotion/react": "11.10.6", - "@emotion/server": "11.10.0", - "@emotion/styled": "11.10.6", - "@nrwl/next": "^15.8.5", - "@xstate/react": "^3.2.1", - "buffer": "^6.0.3", - "chain-registry": "^1.10.0", - "cosmjs-types": "^0.7.2", - "framer-motion": "^10.0.1", - "long": "^5.2.1", - "next": "^13.2.3", - "osmojs": "^15.2.0", - "react": "18.2.0", - "react-dom": "18.2.0", - "react-router-dom": "6.8.1", - "tslib": "^2.3.0", - "webpack": "^5.75.0", - "xstate": "^4.37.0", - "xstream": "^11.14.0" - }, - "devDependencies": { - "@babel/preset-react": "^7.14.5", - "@chain-registry/types": "^0.14.0", - "@commitlint/cli": "^17.0.0", - "@commitlint/config-conventional": "^17.0.0", - "@emotion/babel-plugin": "11.10.6", - "@nrwl/cypress": "15.8.5", - "@nrwl/eslint-plugin-nx": "15.7.2", - "@nrwl/jest": "15.8.5", - "@nrwl/js": "15.8.5", - "@nrwl/linter": "15.7.2", - "@nrwl/nx-cloud": "latest", - "@nrwl/react": "15.8.5", - "@nrwl/vite": "15.7.2", - "@nrwl/workspace": "15.7.2", - "@testing-library/react": "14.0.0", - "@theunderscorer/nx-semantic-release": "^2.0.1", - "@types/jest": "^29.4.0", - "@types/node": "18.14.2", - "@types/react": "18.0.28", - "@types/react-dom": "18.0.11", - "@types/react-router-dom": "5.3.3", - "@typescript-eslint/eslint-plugin": "^5.36.1", - "@typescript-eslint/parser": "^5.36.1", - "@vitejs/plugin-react": "^3.0.0", - "@vitest/coverage-c8": "~0.25.8", - "@vitest/ui": "^0.25.8", - "babel-jest": "^29.4.1", - "cypress": "^12.2.0", - "eslint": "~8.15.0", - "eslint-config-next": "13.1.1", - "eslint-config-prettier": "8.1.0", - "eslint-plugin-cypress": "^2.10.3", - "eslint-plugin-import": "2.27.5", - "eslint-plugin-jsx-a11y": "6.7.1", - "eslint-plugin-react": "7.32.2", - "eslint-plugin-react-hooks": "4.6.0", - "husky": "^8.0.0", - "jest": "^29.4.1", - "jest-environment-jsdom": "^29.4.1", - "jsdom": "~20.0.3", - "nx": "15.7.2", - "prettier": "^2.6.2", - "react-test-renderer": "18.2.0", - "ts-jest": "^29.0.5", - "ts-node": "10.9.1", - "typescript": "~4.9.5", - "vite": "^4.0.1", - "vite-plugin-eslint": "^1.8.1", - "vite-tsconfig-paths": "^4.0.2", - "vitest": "^0.25.8" - } -} \ No newline at end of file + "name": "cosmos-txs-tracer", + "version": "0.0.0", + "license": "MIT", + "scripts": { + "prepare": "husky install" + }, + "private": true, + "dependencies": { + "@babel/core": "^7.21.0", + "@chakra-ui/form-control": "^2.0.17", + "@chakra-ui/icon": "^3.0.15", + "@chakra-ui/layout": "^2.1.16", + "@chakra-ui/media-query": "^3.2.12", + "@chakra-ui/menu": "^2.1.9", + "@chakra-ui/react": "^2.5.1", + "@chakra-ui/spinner": "^2.0.12", + "@chakra-ui/system": "^2.5.1", + "@cosmjs/amino": "^0.30.1", + "@cosmjs/cosmwasm-stargate": "^0.30.1", + "@cosmjs/encoding": "^0.30.1", + "@cosmjs/math": "^0.30.1", + "@cosmjs/proto-signing": "^0.30.1", + "@cosmjs/stargate": "^0.30.1", + "@cosmjs/tendermint-rpc": "^0.30.1", + "@cosmos-kit/core": "^1.1.4", + "@cosmos-kit/keplr": "^0.33.4", + "@cosmos-kit/react": "^1.3.1", + "@emotion/react": "11.10.6", + "@emotion/server": "11.10.0", + "@emotion/styled": "11.10.6", + "@nrwl/next": "15.9.2", + "@nrwl/rollup": "15.9.2", + "@xstate/react": "^3.2.1", + "buffer": "^6.0.3", + "chain-registry": "^1.10.0", + "cosmjs-types": "^0.7.2", + "framer-motion": "^10.0.1", + "long": "^5.2.1", + "next": "^13.2.3", + "osmojs": "^15.2.0", + "react": "18.2.0", + "react-dom": "18.2.0", + "react-router-dom": "6.8.1", + "tslib": "^2.3.0", + "webpack": "^5.75.0", + "xstate": "^4.37.0", + "xstream": "^11.14.0" + }, + "devDependencies": { + "@babel/preset-react": "^7.14.5", + "@chain-registry/types": "^0.14.0", + "@commitlint/cli": "^17.0.0", + "@commitlint/config-conventional": "^17.0.0", + "@emotion/babel-plugin": "11.10.6", + "@nrwl/cypress": "15.9.2", + "@nrwl/eslint-plugin-nx": "15.9.2", + "@nrwl/jest": "15.9.2", + "@nrwl/js": "15.9.2", + "@nrwl/linter": "15.9.2", + "@nrwl/nx-cloud": "15.3.5", + "@nrwl/react": "15.9.2", + "@nrwl/vite": "15.9.2", + "@nrwl/web": "15.9.2", + "@nrwl/workspace": "15.9.2", + "@testing-library/react": "14.0.0", + "@theunderscorer/nx-semantic-release": "^2.0.1", + "@types/jest": "^29.4.0", + "@types/node": "18.14.2", + "@types/react": "18.0.28", + "@types/react-dom": "18.0.11", + "@types/react-router-dom": "5.3.3", + "@typescript-eslint/eslint-plugin": "^5.36.1", + "@typescript-eslint/parser": "^5.36.1", + "@vitejs/plugin-react": "^3.0.0", + "@vitest/coverage-c8": "~0.25.8", + "@vitest/ui": "^0.25.8", + "babel-jest": "^29.4.1", + "babel-preset-minify": "^0.5.2", + "cypress": "^12.2.0", + "eslint": "~8.15.0", + "eslint-config-next": "13.1.1", + "eslint-config-prettier": "8.1.0", + "eslint-plugin-cypress": "^2.10.3", + "eslint-plugin-import": "2.27.5", + "eslint-plugin-jsx-a11y": "6.7.1", + "eslint-plugin-react": "7.32.2", + "eslint-plugin-react-hooks": "4.6.0", + "husky": "^8.0.0", + "jest": "^29.4.1", + "jest-environment-jsdom": "^29.4.1", + "jsdom": "~20.0.3", + "nx": "15.9.2", + "prettier": "^2.6.2", + "react-test-renderer": "18.2.0", + "ts-jest": "^29.0.5", + "ts-node": "10.9.1", + "typescript": "~4.9.5", + "vite": "^4.0.1", + "vite-plugin-eslint": "^1.8.1", + "vite-tsconfig-paths": "^4.0.2", + "vitest": "^0.25.8" + } +} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 5f8dc72..4144c05 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -68,8 +68,11 @@ dependencies: specifier: 11.10.6 version: 11.10.6(@emotion/react@11.10.6)(@types/react@18.0.28)(react@18.2.0) '@nrwl/next': - specifier: ^15.8.5 - version: 15.8.5(@babel/core@7.21.0)(@types/node@18.14.2)(cypress@12.7.0)(eslint@8.15.0)(next@13.2.3)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5)(webpack@5.75.0) + specifier: 15.9.2 + version: 15.9.2(@babel/core@7.21.0)(@types/node@18.14.2)(eslint@8.15.0)(next@13.2.3)(nx@15.9.2)(typescript@4.9.5)(webpack@5.75.0) + '@nrwl/rollup': + specifier: 15.9.2 + version: 15.9.2(@babel/core@7.21.0)(nx@15.9.2)(ts-node@10.9.1)(typescript@4.9.5) '@xstate/react': specifier: ^3.2.1 version: 3.2.1(@types/react@18.0.28)(react@18.2.0)(xstate@4.37.0) @@ -133,38 +136,41 @@ devDependencies: specifier: 11.10.6 version: 11.10.6 '@nrwl/cypress': - specifier: 15.8.5 - version: 15.8.5(cypress@12.7.0)(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5) + specifier: 15.9.2 + version: 15.9.2(cypress@12.7.0)(eslint@8.15.0)(nx@15.9.2)(typescript@4.9.5) '@nrwl/eslint-plugin-nx': - specifier: 15.7.2 - version: 15.7.2(@typescript-eslint/parser@5.53.0)(eslint-config-prettier@8.1.0)(eslint@8.15.0)(nx@15.7.2)(typescript@4.9.5) + specifier: 15.9.2 + version: 15.9.2(@typescript-eslint/parser@5.53.0)(eslint-config-prettier@8.1.0)(eslint@8.15.0)(nx@15.9.2)(typescript@4.9.5) '@nrwl/jest': - specifier: 15.8.5 - version: 15.8.5(@types/node@18.14.2)(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(ts-node@10.9.1)(typescript@4.9.5) + specifier: 15.9.2 + version: 15.9.2(@types/node@18.14.2)(nx@15.9.2)(ts-node@10.9.1)(typescript@4.9.5) '@nrwl/js': - specifier: 15.8.5 - version: 15.8.5(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5) + specifier: 15.9.2 + version: 15.9.2(nx@15.9.2)(typescript@4.9.5) '@nrwl/linter': - specifier: 15.7.2 - version: 15.7.2(eslint@8.15.0)(nx@15.7.2)(typescript@4.9.5) + specifier: 15.9.2 + version: 15.9.2(eslint@8.15.0)(nx@15.9.2)(typescript@4.9.5) '@nrwl/nx-cloud': - specifier: latest + specifier: 15.3.5 version: 15.3.5 '@nrwl/react': - specifier: 15.8.5 - version: 15.8.5(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5) + specifier: 15.9.2 + version: 15.9.2(eslint@8.15.0)(nx@15.9.2)(typescript@4.9.5)(webpack@5.75.0) '@nrwl/vite': - specifier: 15.7.2 - version: 15.7.2(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5)(vite@4.1.4)(vitest@0.25.8) + specifier: 15.9.2 + version: 15.9.2(nx@15.9.2)(typescript@4.9.5)(vite@4.1.4)(vitest@0.25.8) + '@nrwl/web': + specifier: 15.9.2 + version: 15.9.2(nx@15.9.2)(typescript@4.9.5) '@nrwl/workspace': - specifier: 15.7.2 - version: 15.7.2(eslint@8.15.0)(prettier@2.8.4)(typescript@4.9.5) + specifier: 15.9.2 + version: 15.9.2 '@testing-library/react': specifier: 14.0.0 version: 14.0.0(react-dom@18.2.0)(react@18.2.0) '@theunderscorer/nx-semantic-release': specifier: ^2.0.1 - version: 2.0.1(nx@15.7.2)(typescript@4.9.5) + version: 2.0.1(nx@15.9.2)(typescript@4.9.5) '@types/jest': specifier: ^29.4.0 version: 29.4.0 @@ -191,13 +197,16 @@ devDependencies: version: 3.1.0(vite@4.1.4) '@vitest/coverage-c8': specifier: ~0.25.8 - version: 0.25.8(@vitest/ui@0.25.8)(jsdom@20.0.3)(less@4.1.3)(stylus@0.55.0) + version: 0.25.8(@vitest/ui@0.25.8)(jsdom@20.0.3) '@vitest/ui': specifier: ^0.25.8 version: 0.25.8 babel-jest: specifier: ^29.4.1 version: 29.4.3(@babel/core@7.21.0) + babel-preset-minify: + specifier: ^0.5.2 + version: 0.5.2 cypress: specifier: ^12.2.0 version: 12.7.0 @@ -238,8 +247,8 @@ devDependencies: specifier: ~20.0.3 version: 20.0.3 nx: - specifier: 15.7.2 - version: 15.7.2 + specifier: 15.9.2 + version: 15.9.2 prettier: specifier: ^2.6.2 version: 2.8.4 @@ -257,7 +266,7 @@ devDependencies: version: 4.9.5 vite: specifier: ^4.0.1 - version: 4.1.4(@types/node@18.14.2)(less@4.1.3)(stylus@0.55.0) + version: 4.1.4(@types/node@18.14.2) vite-plugin-eslint: specifier: ^1.8.1 version: 1.8.1(eslint@8.15.0)(vite@4.1.4) @@ -266,7 +275,7 @@ devDependencies: version: 4.0.5(typescript@4.9.5) vitest: specifier: ^0.25.8 - version: 0.25.8(@vitest/ui@0.25.8)(jsdom@20.0.3)(less@4.1.3)(stylus@0.55.0) + version: 0.25.8(@vitest/ui@0.25.8)(jsdom@20.0.3) packages: @@ -759,6 +768,7 @@ packages: dependencies: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 + dev: true /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.21.0): resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} @@ -818,6 +828,7 @@ packages: dependencies: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 + dev: true /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.21.0): resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} @@ -1164,7 +1175,6 @@ packages: dependencies: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - dev: false /@babel/plugin-transform-react-display-name@7.18.6(@babel/core@7.21.0): resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==} @@ -1514,6 +1524,7 @@ packages: /@bcoe/v8-coverage@0.2.3: resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} + dev: true /@chain-registry/keplr@1.8.0: resolution: {integrity: sha512-P1IyZihR/rZUBgFZm5DGs4LAVpMSJ7QfQ5YV1ofpMNeB0iXEEGC4BuuT8NonwgAyWGOw9/c8Z/cNN8f9m5nFkQ==} @@ -2872,6 +2883,7 @@ packages: resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==} engines: {node: '>=0.1.90'} requiresBuild: true + dev: true optional: true /@commitlint/cli@17.4.4: @@ -3568,6 +3580,7 @@ packages: tough-cookie: 2.5.0 tunnel-agent: 0.6.0 uuid: 8.3.2 + dev: true /@cypress/xvfb@1.2.4(supports-color@8.1.1): resolution: {integrity: sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==} @@ -3576,6 +3589,7 @@ packages: lodash.once: 4.1.1 transitivePeerDependencies: - supports-color + dev: true /@emotion/babel-plugin@11.10.6: resolution: {integrity: sha512-p2dAqtVrkhSa7xz1u/m9eHYdLi+en8NowrmXeF/dKtJpU8lCWli8RUAati7NcSl0afsBott48pdnANuD0wh9QQ==} @@ -4031,10 +4045,12 @@ packages: get-package-type: 0.1.0 js-yaml: 3.14.1 resolve-from: 5.0.0 + dev: true /@istanbuljs/schema@0.1.3: resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} engines: {node: '>=8'} + dev: true /@jest/console@28.1.3: resolution: {integrity: sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw==} @@ -4046,6 +4062,7 @@ packages: jest-message-util: 28.1.3 jest-util: 28.1.3 slash: 3.0.0 + dev: true /@jest/console@29.4.3: resolution: {integrity: sha512-W/o/34+wQuXlgqlPYTansOSiBnuxrTv61dEVkA6HNmpcgHLUjfaUbdqt6oVvOzaawwo9IdW9QOtMgQ1ScSZC4A==} @@ -4109,6 +4126,7 @@ packages: '@jest/types': 28.1.3 '@types/node': 18.14.2 jest-mock: 28.1.3 + dev: true /@jest/environment@29.4.3: resolution: {integrity: sha512-dq5S6408IxIa+lr54zeqce+QgI+CJT4nmmA+1yzFgtcsGK8c/EyiUb9XQOgz3BMKrRDfKseeOaxj2eO8LlD3lA==} @@ -4125,6 +4143,7 @@ packages: engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: jest-get-type: 28.0.2 + dev: true /@jest/expect-utils@29.4.3: resolution: {integrity: sha512-/6JWbkxHOP8EoS8jeeTd9dTfc9Uawi+43oLKHfp6zzux3U2hqOOVnV3ai4RpDYHOccL6g+5nrxpoc8DmJxtXVQ==} @@ -4141,6 +4160,7 @@ packages: jest-snapshot: 28.1.3 transitivePeerDependencies: - supports-color + dev: true /@jest/expect@29.4.3: resolution: {integrity: sha512-iktRU/YsxEtumI9zsPctYUk7ptpC+AVLLk1Ax3AsA4g1C+8OOnKDkIQBDHtD5hA/+VtgMd5AWI5gNlcAlt2vxQ==} @@ -4162,6 +4182,7 @@ packages: jest-message-util: 28.1.3 jest-mock: 28.1.3 jest-util: 28.1.3 + dev: true /@jest/fake-timers@29.4.3: resolution: {integrity: sha512-4Hote2MGcCTWSD2gwl0dwbCpBRHhE6olYEuTj8FMowdg3oQWNKr2YuxenPQYZ7+PfqPY1k98wKDU4Z+Hvd4Tiw==} @@ -4184,6 +4205,7 @@ packages: '@jest/types': 28.1.3 transitivePeerDependencies: - supports-color + dev: true /@jest/globals@29.4.3: resolution: {integrity: sha512-8BQ/5EzfOLG7AaMcDh7yFCbfRLtsc+09E1RQmRBI4D6QQk4m6NSK/MXo+3bJrBN0yU8A2/VIcqhvsOLFmziioA==} @@ -4233,6 +4255,7 @@ packages: v8-to-istanbul: 9.1.0 transitivePeerDependencies: - supports-color + dev: true /@jest/reporters@29.4.3: resolution: {integrity: sha512-sr2I7BmOjJhyqj9ANC6CTLsL4emMoka7HkQpcoMRlhCbQJjz2zsRzw0BDPiPyEFDXAbxKgGFYuQZiSJ1Y6YoTg==} @@ -4276,6 +4299,7 @@ packages: engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: '@sinclair/typebox': 0.24.51 + dev: true /@jest/schemas@29.4.3: resolution: {integrity: sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==} @@ -4291,6 +4315,7 @@ packages: '@jridgewell/trace-mapping': 0.3.17 callsites: 3.1.0 graceful-fs: 4.2.10 + dev: true /@jest/source-map@29.4.3: resolution: {integrity: sha512-qyt/mb6rLyd9j1jUts4EQncvS6Yy3PM9HghnNv86QBlV+zdL2inCdK1tuVlL+J+lpiw2BI67qXOrX3UurBqQ1w==} @@ -4309,6 +4334,7 @@ packages: '@jest/types': 28.1.3 '@types/istanbul-lib-coverage': 2.0.4 collect-v8-coverage: 1.0.1 + dev: true /@jest/test-result@28.1.3: resolution: {integrity: sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==} @@ -4318,6 +4344,7 @@ packages: '@jest/types': 28.1.3 '@types/istanbul-lib-coverage': 2.0.4 collect-v8-coverage: 1.0.1 + dev: true /@jest/test-result@29.4.3: resolution: {integrity: sha512-Oi4u9NfBolMq9MASPwuWTlC5WvmNRwI4S8YrQg5R5Gi47DYlBe3sh7ILTqi/LGrK1XUE4XY9KZcQJTH1WJCLLA==} @@ -4337,6 +4364,7 @@ packages: graceful-fs: 4.2.10 jest-haste-map: 28.1.3 slash: 3.0.0 + dev: true /@jest/test-sequencer@29.4.3: resolution: {integrity: sha512-yi/t2nES4GB4G0mjLc0RInCq/cNr9dNwJxcGg8sslajua5Kb4kmozAc+qPLzplhBgfw1vLItbjyHzUN92UXicw==} @@ -4369,6 +4397,7 @@ packages: write-file-atomic: 4.0.2 transitivePeerDependencies: - supports-color + dev: true /@jest/transform@29.4.3: resolution: {integrity: sha512-8u0+fBGWolDshsFgPQJESkDa72da/EVwvL+II0trN2DR66wMwiQ9/CihaGfHdlLGFzbBZwMykFtxuwFdZqlKwg==} @@ -4403,6 +4432,7 @@ packages: '@types/node': 18.14.2 '@types/yargs': 17.0.22 chalk: 4.1.2 + dev: true /@jest/types@29.4.3: resolution: {integrity: sha512-bPYfw8V65v17m2Od1cv44FH+SiKW7w2Xu7trhcdTLUmSv85rfKsP+qXSjO4KGJr4dtPSzl/gvslZBXctf1qGEA==} @@ -4444,7 +4474,6 @@ packages: dependencies: '@jridgewell/gen-mapping': 0.3.2 '@jridgewell/trace-mapping': 0.3.17 - dev: false /@jridgewell/sourcemap-codec@1.4.14: resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==} @@ -4592,10 +4621,6 @@ packages: - debug dev: false - /@leichtgewicht/ip-codec@2.0.4: - resolution: {integrity: sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==} - dev: false - /@next/env@13.2.3: resolution: {integrity: sha512-FN50r/E+b8wuqyRjmGaqvqNDuWBWYWQiigfZ50KnSFH0f+AMQQyaZl+Zm2+CIpKk0fL9QxhLxOpTVA3xFHgFow==} dev: false @@ -4745,38 +4770,30 @@ packages: '@nodelib/fs.scandir': 2.1.5 fastq: 1.15.0 - /@nrwl/cli@15.7.2: - resolution: {integrity: sha512-A/72FAW1e0ku8YB/PaCqN9BpVvciO83MS5F5bvX5PA8xCNqe1+iXp/5T2ASnN2lB9zR3fQJmvR7mHKTKQlqQQQ==} - dependencies: - nx: 15.7.2 - transitivePeerDependencies: - - '@swc-node/register' - - '@swc/core' - - debug - - /@nrwl/cli@15.8.5: - resolution: {integrity: sha512-voy16nUO1MxRMRqCpLlhDB9U4KyPfGHZABXtfMEIQk+W3alncatFMMSVvMQZmi8HXwubM8LxWSOnPtTtOCKBrQ==} + /@nrwl/cli@15.9.2: + resolution: {integrity: sha512-QoCmyrcGakHAYTJaNBbOerRQAmqJHMYGCdqtQidV+aP9p1Dy33XxDELfhd+IYmGqngutXuEWChNpWNhPloLnoA==} dependencies: - nx: 15.8.5 + nx: 15.9.2 transitivePeerDependencies: - '@swc-node/register' - '@swc/core' - debug - /@nrwl/cypress@15.8.5(cypress@12.7.0)(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5): - resolution: {integrity: sha512-y9+mLL5Yw8RRaCBkdmFG8br39rYUPF03P3kx2AI7KbCs0e1kfPe6E7TaPOgdtEeSTvitjE9YeamFlWfOEHXp0A==} + /@nrwl/cypress@15.9.2(cypress@12.7.0)(eslint@8.15.0)(nx@15.9.2)(typescript@4.9.5): + resolution: {integrity: sha512-spgcq2G6cBN0D6fcSmgeQ1gbbDZu2oyorJoCe/yQBbMD2X9YTwjeVK07vzmJDwWybVv1P2zdaYZms1DSYMQyaQ==} peerDependencies: cypress: '>= 3 < 13' peerDependenciesMeta: cypress: optional: true dependencies: - '@nrwl/devkit': 15.8.5(nx@15.7.2)(typescript@4.9.5) - '@nrwl/js': 15.8.5(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5) - '@nrwl/linter': 15.8.5(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5) - '@nrwl/workspace': 15.8.5(eslint@8.15.0)(prettier@2.8.4)(typescript@4.9.5) + '@nrwl/devkit': 15.9.2(nx@15.9.2) + '@nrwl/js': 15.9.2(nx@15.9.2)(typescript@4.9.5) + '@nrwl/linter': 15.9.2(eslint@8.15.0)(nx@15.9.2)(typescript@4.9.5) + '@nrwl/workspace': 15.9.2 '@phenomnomnominal/tsquery': 4.1.1(typescript@4.9.5) cypress: 12.7.0 + detect-port: 1.5.1 dotenv: 10.0.0 semver: 7.3.4 transitivePeerDependencies: @@ -4786,11 +4803,11 @@ packages: - debug - eslint - nx - - prettier - supports-color - typescript + dev: true - /@nrwl/devkit@15.7.2(nx@15.7.2)(typescript@4.9.5): + /@nrwl/devkit@15.7.2(nx@15.9.2)(typescript@4.9.5): resolution: {integrity: sha512-HMGi7L6w2g4IrYwhb04snD8Zr24Z/gzau5i9WUNkwzrjeR1xAm0Cc9WRre221zaeohtK11gyBt7BerT1tgkNwA==} peerDependencies: nx: '>= 14.1 <= 16' @@ -4798,45 +4815,27 @@ packages: '@phenomnomnominal/tsquery': 4.1.1(typescript@4.9.5) ejs: 3.1.8 ignore: 5.2.4 - nx: 15.7.2 + nx: 15.9.2 semver: 7.3.4 tslib: 2.5.0 transitivePeerDependencies: - typescript dev: true - /@nrwl/devkit@15.8.5(nx@15.7.2)(typescript@4.9.5): - resolution: {integrity: sha512-NgpD1I1BfFb6wRxB5i5PGP4hMyRhPsArCyENWWvY4gCn8tylAc7yjpQyiDiy2QnymL2PjWM8QeAeCOy1eF2xgw==} - peerDependencies: - nx: '>= 14.1 <= 16' - dependencies: - '@phenomnomnominal/tsquery': 4.1.1(typescript@4.9.5) - ejs: 3.1.8 - ignore: 5.2.4 - nx: 15.7.2 - semver: 7.3.4 - tmp: 0.2.1 - tslib: 2.5.0 - transitivePeerDependencies: - - typescript - - /@nrwl/devkit@15.8.5(nx@15.8.5)(typescript@4.9.5): - resolution: {integrity: sha512-NgpD1I1BfFb6wRxB5i5PGP4hMyRhPsArCyENWWvY4gCn8tylAc7yjpQyiDiy2QnymL2PjWM8QeAeCOy1eF2xgw==} + /@nrwl/devkit@15.9.2(nx@15.9.2): + resolution: {integrity: sha512-2DvTstVZb91m+d4wqUJMBHQ3elxyabdmFE6/3aXmtOGeDxTyXyDzf/1O6JvBBiL8K6XC3ZYchjtxUHgxl/NJ5A==} peerDependencies: nx: '>= 14.1 <= 16' dependencies: - '@phenomnomnominal/tsquery': 4.1.1(typescript@4.9.5) ejs: 3.1.8 ignore: 5.2.4 - nx: 15.8.5 + nx: 15.9.2 semver: 7.3.4 tmp: 0.2.1 tslib: 2.5.0 - transitivePeerDependencies: - - typescript - /@nrwl/eslint-plugin-nx@15.7.2(@typescript-eslint/parser@5.53.0)(eslint-config-prettier@8.1.0)(eslint@8.15.0)(nx@15.7.2)(typescript@4.9.5): - resolution: {integrity: sha512-+lMVkLa8eiGsqMx/Jwf3KKTWes9Ha3jhImiJHEEqaCYTMQaR1BbNT6m5hcYb/xwx8zvtkbrsa1khBsuAEQvezg==} + /@nrwl/eslint-plugin-nx@15.9.2(@typescript-eslint/parser@5.53.0)(eslint-config-prettier@8.1.0)(eslint@8.15.0)(nx@15.9.2)(typescript@4.9.5): + resolution: {integrity: sha512-WeR+/mjzteBz9401mZroyML7sgnxF32FjMBcmVjuG5a5Eji36ChXn8Vtzm3IhfAY3k2sFbANxYLSNQYf5JJyqw==} peerDependencies: '@typescript-eslint/parser': ^5.29.0 eslint-config-prettier: ^8.1.0 @@ -4844,7 +4843,7 @@ packages: eslint-config-prettier: optional: true dependencies: - '@nrwl/devkit': 15.7.2(nx@15.7.2)(typescript@4.9.5) + '@nrwl/devkit': 15.9.2(nx@15.9.2) '@typescript-eslint/parser': 5.53.0(eslint@8.15.0)(typescript@4.9.5) '@typescript-eslint/utils': 5.53.0(eslint@8.15.0)(typescript@4.9.5) chalk: 4.1.2 @@ -4858,13 +4857,13 @@ packages: - typescript dev: true - /@nrwl/jest@15.8.5(@types/node@18.14.2)(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(ts-node@10.9.1)(typescript@4.9.5): - resolution: {integrity: sha512-19je0KLYqQnjGvjt8CN4jBnGquRnNnRUnH948atIRjW0AyV1INeHxqtrYUJKaOx3m8snQCa01FqJvJjVjl1oAg==} + /@nrwl/jest@15.9.2(@types/node@18.14.2)(nx@15.9.2)(ts-node@10.9.1)(typescript@4.9.5): + resolution: {integrity: sha512-4KSGkxbTNpnHnTHkEGCWbndPTPJSBmScSU2kbYemKstq1hbW/IR3ESUm/K6KvkvGasHJKBhiSEMkbi8tYT/jhQ==} dependencies: '@jest/reporters': 28.1.1 '@jest/test-result': 28.1.1 - '@nrwl/devkit': 15.8.5(nx@15.7.2)(typescript@4.9.5) - '@nrwl/js': 15.8.5(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5) + '@nrwl/devkit': 15.9.2(nx@15.9.2) + '@nrwl/js': 15.9.2(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 @@ -4880,53 +4879,15 @@ packages: - '@swc/core' - '@types/node' - debug - - eslint - node-notifier - nx - - prettier - supports-color - ts-node - typescript - - /@nrwl/js@15.7.2(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5): - resolution: {integrity: sha512-3DR9le91BeFBJPFjZSuGRRk72aa0bJt7pskbSIGIumZ/lsuoWRgNP2Wzeikqwt3zA7MN1v9pumO4Dbs0hSa4Sg==} - dependencies: - '@babel/core': 7.21.0 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.21.0) - '@babel/plugin-proposal-decorators': 7.21.0(@babel/core@7.21.0) - '@babel/plugin-transform-runtime': 7.21.0(@babel/core@7.21.0) - '@babel/preset-env': 7.20.2(@babel/core@7.21.0) - '@babel/preset-typescript': 7.21.0(@babel/core@7.21.0) - '@babel/runtime': 7.21.0 - '@nrwl/devkit': 15.7.2(nx@15.7.2)(typescript@4.9.5) - '@nrwl/linter': 15.7.2(eslint@8.15.0)(nx@15.7.2)(typescript@4.9.5) - '@nrwl/workspace': 15.7.2(eslint@8.15.0)(prettier@2.8.4)(typescript@4.9.5) - babel-plugin-const-enum: 1.2.0(@babel/core@7.21.0) - babel-plugin-macros: 2.8.0 - babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.21.0) - chalk: 4.1.2 - fast-glob: 3.2.7 - fs-extra: 11.1.0 - ignore: 5.2.4 - js-tokens: 4.0.0 - minimatch: 3.0.5 - source-map-support: 0.5.19 - tree-kill: 1.2.2 - tslib: 2.5.0 - transitivePeerDependencies: - - '@babel/traverse' - - '@swc-node/register' - - '@swc/core' - - debug - - eslint - - nx - - prettier - - supports-color - - typescript dev: true - /@nrwl/js@15.8.5(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5): - resolution: {integrity: sha512-G9CADL++MQCAgiPTUuWs2YIGrhDKU92dVb39e37p/2WH75vEnMoYykW7nCHItGCGVa726INYBPjStqL6GxH8XQ==} + /@nrwl/js@15.9.2(nx@15.9.2)(typescript@4.9.5): + resolution: {integrity: sha512-ioYnV9N02/6kTSGzo/GlX0BCFLe1rhaYVxxza/ciUtI33sej8GTe33jm69Y3t1dwxk7K1aZ1g6LPOYA5L4SYJw==} dependencies: '@babel/core': 7.21.0 '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.21.0) @@ -4935,8 +4896,8 @@ packages: '@babel/preset-env': 7.20.2(@babel/core@7.21.0) '@babel/preset-typescript': 7.21.0(@babel/core@7.21.0) '@babel/runtime': 7.21.0 - '@nrwl/devkit': 15.8.5(nx@15.7.2)(typescript@4.9.5) - '@nrwl/workspace': 15.8.5(eslint@8.15.0)(prettier@2.8.4)(typescript@4.9.5) + '@nrwl/devkit': 15.9.2(nx@15.9.2) + '@nrwl/workspace': 15.9.2 '@phenomnomnominal/tsquery': 4.1.1(typescript@4.9.5) babel-plugin-const-enum: 1.2.0(@babel/core@7.21.0) babel-plugin-macros: 2.8.0 @@ -4955,40 +4916,20 @@ packages: - '@swc-node/register' - '@swc/core' - debug - - eslint - nx - - prettier - supports-color - typescript - /@nrwl/linter@15.7.2(eslint@8.15.0)(nx@15.7.2)(typescript@4.9.5): - resolution: {integrity: sha512-6l0jHvTJBWnFGNJ1LJCldaxNO+p13QOD5g8W0pN9pfubVloU/lYCdSEvUrMVDqCjd34mPBzTZU7/N9ga745mnA==} + /@nrwl/linter@15.9.2(eslint@8.15.0)(nx@15.9.2)(typescript@4.9.5): + resolution: {integrity: sha512-/kUSwf8s1Q4k+jQI4Ibhh0rXRokrhppG1Y1Yrg3aMB7H0mAEIb4lNOzTN01lJ4kC1WxL5QWRqj45xG6MPE2Zgg==} peerDependencies: eslint: ^8.0.0 peerDependenciesMeta: eslint: optional: true dependencies: - '@nrwl/devkit': 15.7.2(nx@15.7.2)(typescript@4.9.5) - '@phenomnomnominal/tsquery': 4.1.1(typescript@4.9.5) - eslint: 8.15.0 - tmp: 0.2.1 - tslib: 2.5.0 - transitivePeerDependencies: - - nx - - typescript - dev: true - - /@nrwl/linter@15.8.5(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5): - resolution: {integrity: sha512-EJxIAME87JaE1Iao9S9/yfWdoC3IvKsstjGVQssVZmAoWaDVhW3c/EYDRkrk2c9SFLD+tascvxDV5OpXXRVhSA==} - peerDependencies: - eslint: ^8.0.0 - peerDependenciesMeta: - eslint: - optional: true - dependencies: - '@nrwl/devkit': 15.8.5(nx@15.7.2)(typescript@4.9.5) - '@nrwl/js': 15.8.5(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5) + '@nrwl/devkit': 15.9.2(nx@15.9.2) + '@nrwl/js': 15.9.2(nx@15.9.2)(typescript@4.9.5) '@phenomnomnominal/tsquery': 4.1.1(typescript@4.9.5) eslint: 8.15.0 tmp: 0.2.1 @@ -4999,65 +4940,50 @@ packages: - '@swc/core' - debug - nx - - prettier - supports-color - typescript - /@nrwl/next@15.8.5(@babel/core@7.21.0)(@types/node@18.14.2)(cypress@12.7.0)(eslint@8.15.0)(next@13.2.3)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5)(webpack@5.75.0): - resolution: {integrity: sha512-Ch9gHgQfZTloC/gPqkMPmBW6Ec486Ux6IU3bt7RzsN0I+y6WUzmDOVJLg44GQP01R3xBrUyR++Y0+w6HPrx3DQ==} + /@nrwl/next@15.9.2(@babel/core@7.21.0)(@types/node@18.14.2)(eslint@8.15.0)(next@13.2.3)(nx@15.9.2)(typescript@4.9.5)(webpack@5.75.0): + resolution: {integrity: sha512-Mz6xkVNC8mZ+uRBvv/z2Ie7usfOzapcK/sblLM+pgGLVeOkbW3tfy8W9PhdIdiwxwmJUJF2JU2y+m3rt6Jg5dw==} peerDependencies: next: ^13.0.0 dependencies: '@babel/plugin-proposal-decorators': 7.21.0(@babel/core@7.21.0) - '@nrwl/cypress': 15.8.5(cypress@12.7.0)(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5) - '@nrwl/devkit': 15.8.5(nx@15.7.2)(typescript@4.9.5) - '@nrwl/jest': 15.8.5(@types/node@18.14.2)(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(ts-node@10.9.1)(typescript@4.9.5) - '@nrwl/js': 15.8.5(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5) - '@nrwl/linter': 15.8.5(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5) - '@nrwl/react': 15.8.5(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5) - '@nrwl/webpack': 15.8.5(@babel/core@7.21.0)(@types/node@18.14.2)(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5) - '@nrwl/workspace': 15.8.5(eslint@8.15.0)(prettier@2.8.4)(typescript@4.9.5) + '@nrwl/devkit': 15.9.2(nx@15.9.2) + '@nrwl/js': 15.9.2(nx@15.9.2)(typescript@4.9.5) + '@nrwl/linter': 15.9.2(eslint@8.15.0)(nx@15.9.2)(typescript@4.9.5) + '@nrwl/react': 15.9.2(eslint@8.15.0)(nx@15.9.2)(typescript@4.9.5)(webpack@5.75.0) + '@nrwl/workspace': 15.9.2 '@svgr/webpack': 6.5.1 chalk: 4.1.2 + copy-webpack-plugin: 10.2.4(webpack@5.75.0) dotenv: 10.0.0 + express: 4.18.2 fs-extra: 11.1.0 + http-proxy-middleware: 2.0.6 ignore: 5.2.4 next: 13.2.3(@babel/core@7.21.0)(react-dom@18.2.0)(react@18.2.0) semver: 7.3.4 ts-node: 10.9.1(@types/node@18.14.2)(typescript@4.9.5) tsconfig-paths: 4.1.2 + tsconfig-paths-webpack-plugin: 4.0.0 url-loader: 4.1.1(webpack@5.75.0) webpack-merge: 5.8.0 transitivePeerDependencies: - '@babel/core' - '@babel/traverse' - - '@parcel/css' - '@swc-node/register' - '@swc/core' - '@swc/wasm' + - '@types/express' - '@types/node' - - bufferutil - - clean-css - - csso - - cypress - debug - - esbuild - eslint - - fibers - file-loader - - html-webpack-plugin - - node-notifier - - node-sass - nx - - prettier - - sass-embedded - supports-color - typescript - - uglify-js - - utf-8-validate - - vue-template-compiler - webpack - - webpack-cli dev: false /@nrwl/nx-cloud@15.3.5: @@ -5076,159 +5002,89 @@ packages: - debug dev: true - /@nrwl/nx-darwin-arm64@15.7.2: - resolution: {integrity: sha512-F82exjuqkAkElSTxEcTFeLMhHpbGiccfTQh2VjXMS+ONldxM+Kd7atJjtUG8wKNXfg0lxxjjAdnzLy3iBuN/HQ==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - optional: true - - /@nrwl/nx-darwin-arm64@15.8.5: - resolution: {integrity: sha512-/8yXbh1J3k85MAW/A6cDiPeEnbt66SE9BPnM2IPlGoZrXakQvAXEn+gsjQlvnP3q2EaEyv7e5+GA+8d+p6mT5A==} + /@nrwl/nx-darwin-arm64@15.9.2: + resolution: {integrity: sha512-Yv+OVsQt3C/hmWOC+YhJZQlsyph5w1BHfbp4jyCvV1ZXBbb8NdvwxgDHPWXxKPTc1EXuB7aEX3qzxM3/OWEUJg==} engines: {node: '>= 10'} cpu: [arm64] os: [darwin] requiresBuild: true optional: true - /@nrwl/nx-darwin-x64@15.7.2: - resolution: {integrity: sha512-MNT7Bxz6yhoVLCgGpR0NtVkj20SER1CbrCaY7tmsKVNY9iA/EOZhz9qa3LeA1KZ4lw8Gpi2vD42mOngn7Mwr7w==} - engines: {node: '>= 10'} - cpu: [x64] - os: [darwin] - requiresBuild: true - optional: true - - /@nrwl/nx-darwin-x64@15.8.5: - resolution: {integrity: sha512-zEVoi0d+YChLrQMypoGFwu73t3YiD8UkXSozMtUEa2mg/se4e7jh+15tB6Te+Oq5aL0JKwQpr027GE4YtAmpLw==} + /@nrwl/nx-darwin-x64@15.9.2: + resolution: {integrity: sha512-qHfdluHlPzV0UHOwj1ZJ+qNEhzfLGiBuy1cOth4BSzDlvMnkuqBWoprfaXoztzYcus2NSILY1/7b3Jw4DAWmMw==} engines: {node: '>= 10'} cpu: [x64] os: [darwin] requiresBuild: true optional: true - /@nrwl/nx-linux-arm-gnueabihf@15.7.2: - resolution: {integrity: sha512-QGyPkYnZ9LnUnuCzrP50bwsMJ9n6r8K2bNC1sQQwioijY+4MHNL+bMTOGWc8+lYBP7Ju3gpTqozGV3FQVkaM2w==} - engines: {node: '>= 10'} - cpu: [arm] - os: [linux] - requiresBuild: true - optional: true - - /@nrwl/nx-linux-arm-gnueabihf@15.8.5: - resolution: {integrity: sha512-4C5wN0C7gQD6/lC9+UKUsB6mbHvowKhlaO529GIgtzrCLmfEh/LJ/CybnnKGpFEB/8Y5GpCa2uTWyA1XcPDzUw==} + /@nrwl/nx-linux-arm-gnueabihf@15.9.2: + resolution: {integrity: sha512-0GzwbablosnYnnJDCJvAeZv8LlelSrNwUnGhe43saeoZdAew35Ay1E34zBrg/GCGTASuz+knEEYFM+gDD9Mc6A==} engines: {node: '>= 10'} cpu: [arm] os: [linux] requiresBuild: true optional: true - /@nrwl/nx-linux-arm64-gnu@15.7.2: - resolution: {integrity: sha512-HqufFVIvuunfChEFGkIhsLhhQjWLTFcCH2aQBSNesHpm6AhFVRGyokNu+PT6NNobr+BTrqJMocBqNQR1uvSyRQ==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [linux] - requiresBuild: true - optional: true - - /@nrwl/nx-linux-arm64-gnu@15.8.5: - resolution: {integrity: sha512-SMQ+oIsyK75JiKeSMprmb8VXce6MLdfcS5GWWOihpoDWfUC9FoQHAu4X1OtxHbVTmJfoEOInJKAhPxXAi5obdw==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [linux] - requiresBuild: true - optional: true - - /@nrwl/nx-linux-arm64-musl@15.7.2: - resolution: {integrity: sha512-9B8q6I/OVyQuYe+Yg2wNyxza/CsbvejIUsrK3QGGWUwHlkklqOSmUOHyTrcyMHUSped6CWPyKdIywngYOQzltQ==} + /@nrwl/nx-linux-arm64-gnu@15.9.2: + resolution: {integrity: sha512-3mFIY7iUTPG45hSIRaM2DmraCy8W6hNoArAGRrTgYw40BIJHtLrW+Rt7DLyvVXaYCvrKugWOKtxC+jG7kpIZVA==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] requiresBuild: true optional: true - /@nrwl/nx-linux-arm64-musl@15.8.5: - resolution: {integrity: sha512-GVENjltZ17aJ6KOCibdBtLXQcGY5lpBqKolB9+rIYJvTWuV1k/uHOkYJDG7Vl70Rj46rC8K0Jp6BCpJHCv1ksQ==} + /@nrwl/nx-linux-arm64-musl@15.9.2: + resolution: {integrity: sha512-FNBnXEtockwxZa4I3NqggrJp0YIbNokJvt/clrICP+ijOacdUDkv8mJedavobkFsRsNq9gzCbRbUScKymrOLrg==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] requiresBuild: true optional: true - /@nrwl/nx-linux-x64-gnu@15.7.2: - resolution: {integrity: sha512-8/6WtQn4derYKUWu5SxWWM+1dGihSZXMhDW9l/sXOr/qbMZu3XBmM2XZSguw/+p9gEVHcMmN0+D+Cai+q6/vDQ==} - engines: {node: '>= 10'} - cpu: [x64] - os: [linux] - requiresBuild: true - optional: true - - /@nrwl/nx-linux-x64-gnu@15.8.5: - resolution: {integrity: sha512-AW8YjhZv3c+LRUoLvHLx4BZaDakQbPCPx70+c/uQyDkQP/ckYJc0gRjoZukolcI6+AvNcBhkI559RL9W4qb9iw==} - engines: {node: '>= 10'} - cpu: [x64] - os: [linux] - requiresBuild: true - optional: true - - /@nrwl/nx-linux-x64-musl@15.7.2: - resolution: {integrity: sha512-c5SbqYZZBeBHhH5E30xwb4cHzCMVa/GQMCyTpZgsS/AHAPHbdkv+pO6bxxALvLPTyimcub7V+xbLCL7rgALzyw==} + /@nrwl/nx-linux-x64-gnu@15.9.2: + resolution: {integrity: sha512-gHWsP5lbe4FNQCa1Q/VLxIuik+BqAOcSzyPjdUa4gCDcbxPa8xiE57PgXB5E1XUzOWNnDTlXa/Ll07/TIuKuog==} engines: {node: '>= 10'} cpu: [x64] os: [linux] requiresBuild: true optional: true - /@nrwl/nx-linux-x64-musl@15.8.5: - resolution: {integrity: sha512-m4Iy/pbzH0LTsADq/X+74nfVzm2Tt0zorOXXy/uQN4ozL/JNGVpwvxdOFxZ7e3RBXDX4u6awUzSE52Z2d2f0uA==} + /@nrwl/nx-linux-x64-musl@15.9.2: + resolution: {integrity: sha512-EaFUukCbmoHsYECX2AS4pxXH933yesBFVvBgD38DkoFDxDoJMVt6JqYwm+d5R7S4R2P9U3l++aurljQTRq567Q==} engines: {node: '>= 10'} cpu: [x64] os: [linux] requiresBuild: true optional: true - /@nrwl/nx-win32-arm64-msvc@15.7.2: - resolution: {integrity: sha512-gWD/+gSO3XBma8PHX1Dp86fM6EcntHFfa7n/BISwDFkZ19MfV/gK6HbO847fkD6I34/IcDM/z1PsFwoIpTeoow==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [win32] - requiresBuild: true - optional: true - - /@nrwl/nx-win32-arm64-msvc@15.8.5: - resolution: {integrity: sha512-4AT1PHo5At8AXvgE5XlQbimE0THeSji6J3XZ1UTqq7n3L26QicNdnZcaHGyL1ukMtXRIwT/yed+xu1PFkXF4QA==} + /@nrwl/nx-win32-arm64-msvc@15.9.2: + resolution: {integrity: sha512-PGAe7QMr51ivx1X3avvs8daNlvv1wGo3OFrobjlu5rSyjC1Y3qHwT9+wdlwzNZ93FIqWOq09s+rE5gfZRfpdAg==} engines: {node: '>= 10'} cpu: [arm64] os: [win32] requiresBuild: true optional: true - /@nrwl/nx-win32-x64-msvc@15.7.2: - resolution: {integrity: sha512-ARE4qGPgk+e+pSm0uPhHan5UCRtwNYc5ddVNS88NFrVoDTPm5MxYLGdvLnshWWio/Bx526FcwUMSCBWSW8HIFw==} - engines: {node: '>= 10'} - cpu: [x64] - os: [win32] - requiresBuild: true - optional: true - - /@nrwl/nx-win32-x64-msvc@15.8.5: - resolution: {integrity: sha512-53vzsQErvN4OeF/qBgfPg6OZ3smX4V8Lza59bwql9aAjjlMe1Ff9Su0BgAqlhVfSiYGxAirfHljgA6aWFqpCHQ==} + /@nrwl/nx-win32-x64-msvc@15.9.2: + resolution: {integrity: sha512-Q8onNzhuAZ0l9DNkm8D4Z1AEIzJr8JiT4L2fVBLYrV/R75C2HS3q7lzvfo6oqMY6mXge1cFPcrTtg3YXBQaSWA==} engines: {node: '>= 10'} cpu: [x64] os: [win32] requiresBuild: true optional: true - /@nrwl/react@15.8.5(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5): - resolution: {integrity: sha512-D/veRYJ4dZ1JQtJ8GnZ2tkVNVuox4bbRAQm6MH+xor1Z8kcIq6SZtFp03T5IPgcVNXAJjjh1tMhnMcHe5hZkmg==} + /@nrwl/react@15.9.2(eslint@8.15.0)(nx@15.9.2)(typescript@4.9.5)(webpack@5.75.0): + resolution: {integrity: sha512-C/rrlCtPHuMO3Wtrl32ABUgMLf3+CNcC4cTTamEvcOemO2JxB3yqLfn1MH2aS05t+HoFrf/3wbxhLCJbgLdMjA==} dependencies: - '@nrwl/devkit': 15.8.5(nx@15.7.2)(typescript@4.9.5) - '@nrwl/js': 15.8.5(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5) - '@nrwl/linter': 15.8.5(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5) - '@nrwl/workspace': 15.8.5(eslint@8.15.0)(prettier@2.8.4)(typescript@4.9.5) + '@nrwl/devkit': 15.9.2(nx@15.9.2) + '@nrwl/js': 15.9.2(nx@15.9.2)(typescript@4.9.5) + '@nrwl/linter': 15.9.2(eslint@8.15.0)(nx@15.9.2)(typescript@4.9.5) + '@nrwl/workspace': 15.9.2 '@phenomnomnominal/tsquery': 4.1.1(typescript@4.9.5) + '@svgr/webpack': 6.5.1 chalk: 4.1.2 + file-loader: 6.2.0(webpack@5.75.0) minimatch: 3.0.5 transitivePeerDependencies: - '@babel/traverse' @@ -5237,177 +5093,106 @@ packages: - debug - eslint - nx - - prettier - supports-color - typescript + - webpack - /@nrwl/tao@15.7.2: - resolution: {integrity: sha512-srx9heMIt/QIyuqfewiVYbRpFcD/2pHkTkrEEUKspPd25kzAL2adcAITQKVCHI7/VS2sPdDR67pVsGQPZFBMRQ==} - hasBin: true - dependencies: - nx: 15.7.2 + /@nrwl/rollup@15.9.2(@babel/core@7.21.0)(nx@15.9.2)(ts-node@10.9.1)(typescript@4.9.5): + resolution: {integrity: sha512-uflxV9bevV76fcke5zIuwK1efPaiAZp0JOl1MNZ0pJgJIPt02ct7+r8TfG6torGaVElfOoq4owNgNATFoc+Lwg==} + dependencies: + '@nrwl/devkit': 15.9.2(nx@15.9.2) + '@nrwl/js': 15.9.2(nx@15.9.2)(typescript@4.9.5) + '@nrwl/workspace': 15.9.2 + '@rollup/plugin-babel': 5.3.1(@babel/core@7.21.0)(rollup@2.79.1) + '@rollup/plugin-commonjs': 20.0.0(rollup@2.79.1) + '@rollup/plugin-image': 2.1.1(rollup@2.79.1) + '@rollup/plugin-json': 4.1.0(rollup@2.79.1) + '@rollup/plugin-node-resolve': 13.3.0(rollup@2.79.1) + autoprefixer: 10.4.13(postcss@8.4.21) + babel-plugin-transform-async-to-promises: 0.8.18 + chalk: 4.1.2 + dotenv: 10.0.0 + postcss: 8.4.21 + rollup: 2.79.1 + rollup-plugin-copy: 3.4.0 + rollup-plugin-peer-deps-external: 2.2.4(rollup@2.79.1) + rollup-plugin-postcss: 4.0.2(postcss@8.4.21)(ts-node@10.9.1) + rollup-plugin-typescript2: 0.34.1(rollup@2.79.1)(typescript@4.9.5) + rxjs: 6.6.7 + tslib: 2.5.0 transitivePeerDependencies: + - '@babel/core' + - '@babel/traverse' - '@swc-node/register' - '@swc/core' + - '@types/babel__core' - debug + - nx + - supports-color + - ts-node + - typescript + dev: false - /@nrwl/tao@15.8.5: - resolution: {integrity: sha512-pb/hUprOOv2vgvbevGz9hiu8LLOtK7KKuBe4JLSXrFxfHEQjMFsK/2aymnts0ZQrA83QlIG2Mr0tuSKj6/iWvg==} + /@nrwl/tao@15.9.2: + resolution: {integrity: sha512-+LqNC37w9c6q6Ukdpf0z0tt1PQFNi4gwhHpJvkYQiKRETHjyrrlyqTNEPEyA7PI62RuYC6VrpVw2gzI7ufqZEA==} hasBin: true dependencies: - nx: 15.8.5 + nx: 15.9.2 transitivePeerDependencies: - '@swc-node/register' - '@swc/core' - debug - /@nrwl/vite@15.7.2(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5)(vite@4.1.4)(vitest@0.25.8): - resolution: {integrity: sha512-8vuXwQUosEnohVF1PTs/AilRyQC4ZxpWj2pzXZX0thynqsoSl/nar0JiQA9FUnYU2yAZCX5QWqb3pWVGftI5lQ==} + /@nrwl/vite@15.9.2(nx@15.9.2)(typescript@4.9.5)(vite@4.1.4)(vitest@0.25.8): + resolution: {integrity: sha512-ojItxNjG8scg2zDZuFmls9eAkqjOQupKwRAuhr8iDPbDGl2ifjoVdmeUyuw0ICv8p5W0ERGtgCorEx7U8L9nmQ==} peerDependencies: vite: ^4.0.1 - vitest: ^0.25.8 + vitest: '>=0.25.8 <1.0.0' dependencies: - '@nrwl/devkit': 15.7.2(nx@15.7.2)(typescript@4.9.5) - '@nrwl/js': 15.7.2(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5) - '@nrwl/workspace': 15.7.2(eslint@8.15.0)(prettier@2.8.4)(typescript@4.9.5) + '@nrwl/devkit': 15.9.2(nx@15.9.2) + '@nrwl/js': 15.9.2(nx@15.9.2)(typescript@4.9.5) + '@nrwl/workspace': 15.9.2 '@phenomnomnominal/tsquery': 4.1.1(typescript@4.9.5) '@swc/helpers': 0.4.14 dotenv: 10.0.0 enquirer: 2.3.6 - vite: 4.1.4(@types/node@18.14.2)(less@4.1.3)(stylus@0.55.0) - vitest: 0.25.8(@vitest/ui@0.25.8)(jsdom@20.0.3)(less@4.1.3)(stylus@0.55.0) + vite: 4.1.4(@types/node@18.14.2) + vitest: 0.25.8(@vitest/ui@0.25.8)(jsdom@20.0.3) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' - '@swc/core' - debug - - eslint - nx - - prettier - supports-color - typescript dev: true - /@nrwl/webpack@15.8.5(@babel/core@7.21.0)(@types/node@18.14.2)(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5): - resolution: {integrity: sha512-oN0ZCK6Bak8w5YOpyBxQRNxGwNbq31XneRvKPb9gSs71eJZtqLr5wwANfOOHe4m43CgDayp+nVOCQMNhsdxNFg==} + /@nrwl/web@15.9.2(nx@15.9.2)(typescript@4.9.5): + resolution: {integrity: sha512-MzuJExQjLFKntgVP/tXu2m3tNWLUfdZTiJPNA+Kb4fssAPgSkyGmGBNFF8rsb+t6UgYouLj5yeVJXvmf68jJLg==} dependencies: - '@nrwl/devkit': 15.8.5(nx@15.7.2)(typescript@4.9.5) - '@nrwl/js': 15.8.5(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5) - '@nrwl/workspace': 15.8.5(eslint@8.15.0)(prettier@2.8.4)(typescript@4.9.5) - autoprefixer: 10.4.13(postcss@8.4.21) - babel-loader: 9.1.2(@babel/core@7.21.0)(webpack@5.75.0) + '@nrwl/devkit': 15.9.2(nx@15.9.2) + '@nrwl/js': 15.9.2(nx@15.9.2)(typescript@4.9.5) + '@nrwl/workspace': 15.9.2 chalk: 4.1.2 chokidar: 3.5.3 - copy-webpack-plugin: 10.2.4(webpack@5.75.0) - css-loader: 6.7.3(webpack@5.75.0) - css-minimizer-webpack-plugin: 3.4.1(webpack@5.75.0) - dotenv: 10.0.0 - file-loader: 6.2.0(webpack@5.75.0) - fork-ts-checker-webpack-plugin: 7.2.13(typescript@4.9.5)(webpack@5.75.0) + http-server: 14.1.1 ignore: 5.2.4 - less: 4.1.3 - less-loader: 11.1.0(less@4.1.3)(webpack@5.75.0) - license-webpack-plugin: 4.0.2(webpack@5.75.0) - loader-utils: 2.0.4 - mini-css-extract-plugin: 2.4.7(webpack@5.75.0) - parse5: 4.0.0 - postcss: 8.4.21 - postcss-import: 14.1.0(postcss@8.4.21) - postcss-loader: 6.2.1(postcss@8.4.21)(webpack@5.75.0) - rxjs: 6.6.7 - sass: 1.58.3 - sass-loader: 12.6.0(sass@1.58.3)(webpack@5.75.0) - source-map-loader: 3.0.2(webpack@5.75.0) - style-loader: 3.3.1(webpack@5.75.0) - stylus: 0.55.0 - stylus-loader: 7.1.0(stylus@0.55.0)(webpack@5.75.0) - terser-webpack-plugin: 5.3.6(webpack@5.75.0) - ts-loader: 9.4.2(typescript@4.9.5)(webpack@5.75.0) - ts-node: 10.9.1(@types/node@18.14.2)(typescript@4.9.5) - tsconfig-paths: 4.1.2 - tsconfig-paths-webpack-plugin: 4.0.0 tslib: 2.5.0 - webpack: 5.75.0 - webpack-dev-server: 4.11.1(webpack@5.75.0) - webpack-node-externals: 3.0.0 - webpack-subresource-integrity: 5.1.0(webpack@5.75.0) transitivePeerDependencies: - - '@babel/core' - '@babel/traverse' - - '@parcel/css' - '@swc-node/register' - '@swc/core' - - '@swc/wasm' - - '@types/node' - - bufferutil - - clean-css - - csso - debug - - esbuild - - eslint - - fibers - - html-webpack-plugin - - node-sass - nx - - prettier - - sass-embedded - supports-color - typescript - - uglify-js - - utf-8-validate - - vue-template-compiler - - webpack-cli - dev: false - - /@nrwl/workspace@15.7.2(eslint@8.15.0)(prettier@2.8.4)(typescript@4.9.5): - resolution: {integrity: sha512-b1XwQs+6qFFGBhkIQHgxz6nUmVbzNgjeYusBVPcZjR3rDKooEjc//72P4H34FbpCbf9GPfCj7s2ZtlDXn9+dFw==} - peerDependencies: - prettier: ^2.6.2 - peerDependenciesMeta: - prettier: - optional: true - dependencies: - '@nrwl/devkit': 15.7.2(nx@15.7.2)(typescript@4.9.5) - '@nrwl/linter': 15.7.2(eslint@8.15.0)(nx@15.7.2)(typescript@4.9.5) - '@parcel/watcher': 2.0.4 - chalk: 4.1.2 - chokidar: 3.5.3 - cli-cursor: 3.1.0 - cli-spinners: 2.6.1 - dotenv: 10.0.0 - figures: 3.2.0 - flat: 5.0.2 - glob: 7.1.4 - ignore: 5.2.4 - minimatch: 3.0.5 - npm-run-path: 4.0.1 - nx: 15.7.2 - open: 8.4.2 - prettier: 2.8.4 - rxjs: 6.6.7 - semver: 7.3.4 - tmp: 0.2.1 - tslib: 2.5.0 - yargs: 17.7.1 - yargs-parser: 21.1.1 - transitivePeerDependencies: - - '@swc-node/register' - - '@swc/core' - - debug - - eslint - - typescript dev: true - /@nrwl/workspace@15.8.5(eslint@8.15.0)(prettier@2.8.4)(typescript@4.9.5): - resolution: {integrity: sha512-+BGJDbATbwpk+3FkdBzdIziN/XKku55SEGg3uyH+JnK0sjmHvvS7mvPiYLRy91tOyF4QXnnWL6PuT+Z9KK8POQ==} - peerDependencies: - prettier: ^2.6.2 - peerDependenciesMeta: - prettier: - optional: true + /@nrwl/workspace@15.9.2: + resolution: {integrity: sha512-4e3p1EtJKvvZfH5ghLT3PtPfdr21WfN1LjctMaFAaqwb7jMos0jQIZlLotDPvc9BD8zzyljniE6BijDSZOWncg==} dependencies: - '@nrwl/devkit': 15.8.5(nx@15.8.5)(typescript@4.9.5) - '@nrwl/linter': 15.8.5(eslint@8.15.0)(nx@15.7.2)(prettier@2.8.4)(typescript@4.9.5) + '@nrwl/devkit': 15.9.2(nx@15.9.2) '@parcel/watcher': 2.0.4 chalk: 4.1.2 chokidar: 3.5.3 @@ -5420,23 +5205,17 @@ packages: ignore: 5.2.4 minimatch: 3.0.5 npm-run-path: 4.0.1 - nx: 15.8.5 + nx: 15.9.2 open: 8.4.2 - prettier: 2.8.4 rxjs: 6.6.7 - semver: 7.3.4 tmp: 0.2.1 tslib: 2.5.0 yargs: 17.7.1 yargs-parser: 21.1.1 transitivePeerDependencies: - - '@babel/traverse' - '@swc-node/register' - '@swc/core' - debug - - eslint - - supports-color - - typescript /@octokit/auth-token@3.0.3: resolution: {integrity: sha512-/aFM2M4HVDBT/jjDBa84sJniv1t9Gm/rLkalaz9htOm+L+8JMj1k9w0CkUdcxNyNxZPlTxKPVko+m1VlM58ZVA==} @@ -5668,16 +5447,95 @@ packages: engines: {node: '>=14'} dev: false - /@rollup/pluginutils@4.2.1: - resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==} + /@rollup/plugin-babel@5.3.1(@babel/core@7.21.0)(rollup@2.79.1): + resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==} + engines: {node: '>= 10.0.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@types/babel__core': ^7.1.9 + rollup: ^1.20.0||^2.0.0 + peerDependenciesMeta: + '@types/babel__core': + optional: true + dependencies: + '@babel/core': 7.21.0 + '@babel/helper-module-imports': 7.18.6 + '@rollup/pluginutils': 3.1.0(rollup@2.79.1) + rollup: 2.79.1 + dev: false + + /@rollup/plugin-commonjs@20.0.0(rollup@2.79.1): + resolution: {integrity: sha512-5K0g5W2Ol8hAcTHqcTBHiA7M58tfmYi1o9KxeJuuRNpGaTa5iLjcyemBitCBcKXaHamOBBEH2dGom6v6Unmqjg==} engines: {node: '>= 8.0.0'} + peerDependencies: + rollup: ^2.38.3 dependencies: + '@rollup/pluginutils': 3.1.0(rollup@2.79.1) + commondir: 1.0.1 estree-walker: 2.0.2 - picomatch: 2.3.1 - dev: true - - /@rushstack/eslint-patch@1.2.0: - resolution: {integrity: sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==} + glob: 7.2.3 + is-reference: 1.2.1 + magic-string: 0.25.9 + resolve: 1.22.1 + rollup: 2.79.1 + dev: false + + /@rollup/plugin-image@2.1.1(rollup@2.79.1): + resolution: {integrity: sha512-AgP4U85zuQJdUopLUCM+hTf45RepgXeTb8EJsleExVy99dIoYpt3ZlDYJdKmAc2KLkNntCDg6BPJvgJU3uGF+g==} + engines: {node: '>= 8.0.0'} + peerDependencies: + rollup: ^1.20.0 || ^2.0.0 + dependencies: + '@rollup/pluginutils': 3.1.0(rollup@2.79.1) + mini-svg-data-uri: 1.4.4 + rollup: 2.79.1 + dev: false + + /@rollup/plugin-json@4.1.0(rollup@2.79.1): + resolution: {integrity: sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw==} + peerDependencies: + rollup: ^1.20.0 || ^2.0.0 + dependencies: + '@rollup/pluginutils': 3.1.0(rollup@2.79.1) + rollup: 2.79.1 + dev: false + + /@rollup/plugin-node-resolve@13.3.0(rollup@2.79.1): + resolution: {integrity: sha512-Lus8rbUo1eEcnS4yTFKLZrVumLPY+YayBdWXgFSHYhTT2iJbMhoaaBL3xl5NCdeRytErGr8tZ0L71BMRmnlwSw==} + engines: {node: '>= 10.0.0'} + peerDependencies: + rollup: ^2.42.0 + dependencies: + '@rollup/pluginutils': 3.1.0(rollup@2.79.1) + '@types/resolve': 1.17.1 + deepmerge: 4.3.0 + is-builtin-module: 3.2.1 + is-module: 1.0.0 + resolve: 1.22.1 + rollup: 2.79.1 + dev: false + + /@rollup/pluginutils@3.1.0(rollup@2.79.1): + resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} + engines: {node: '>= 8.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0 + dependencies: + '@types/estree': 0.0.39 + estree-walker: 1.0.1 + picomatch: 2.3.1 + rollup: 2.79.1 + dev: false + + /@rollup/pluginutils@4.2.1: + resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==} + engines: {node: '>= 8.0.0'} + dependencies: + estree-walker: 2.0.2 + picomatch: 2.3.1 + + /@rushstack/eslint-patch@1.2.0: + resolution: {integrity: sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==} dev: true /@semantic-release/changelog@6.0.2(semantic-release@20.1.0): @@ -5825,6 +5683,7 @@ packages: /@sinclair/typebox@0.24.51: resolution: {integrity: sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==} + dev: true /@sinclair/typebox@0.25.24: resolution: {integrity: sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==} @@ -5834,6 +5693,7 @@ packages: resolution: {integrity: sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==} dependencies: type-detect: 4.0.8 + dev: true /@sinonjs/commons@2.0.0: resolution: {integrity: sha512-uLa0j859mMrg2slwQYdO/AkrOfmH+X6LTVmNTS9CqexuE2IvVORIkSpJLqePAbEnKJ77aMmCwr1NUZ57120Xcg==} @@ -5851,6 +5711,7 @@ packages: resolution: {integrity: sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw==} dependencies: '@sinonjs/commons': 1.8.6 + dev: true /@stablelib/aead@1.0.1: resolution: {integrity: sha512-q39ik6sxGHewqtO0nP4BuSe3db5G1fEJE8ukvngS2gLkBXyy6E7pLubhbYgnkDFv6V8cWaxcE4Xn0t6LWcJkyg==} @@ -5975,7 +5836,6 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.0 - dev: false /@svgr/babel-plugin-remove-jsx-attribute@6.5.0(@babel/core@7.21.0): resolution: {integrity: sha512-8zYdkym7qNyfXpWvu4yq46k41pyNM9SOstoWhKlm+IfdCE1DdnRKeMUPsWIEO/DEkaWxJ8T9esNdG3QwQ93jBA==} @@ -5984,7 +5844,6 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.0 - dev: false /@svgr/babel-plugin-remove-jsx-empty-expression@6.5.0(@babel/core@7.21.0): resolution: {integrity: sha512-NFdxMq3xA42Kb1UbzCVxplUc0iqSyM9X8kopImvFnB+uSDdzIHOdbs1op8ofAvVRtbg4oZiyRl3fTYeKcOe9Iw==} @@ -5993,7 +5852,6 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.0 - dev: false /@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.21.0): resolution: {integrity: sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg==} @@ -6002,7 +5860,6 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.0 - dev: false /@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.21.0): resolution: {integrity: sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw==} @@ -6011,7 +5868,6 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.0 - dev: false /@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.21.0): resolution: {integrity: sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA==} @@ -6020,7 +5876,6 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.0 - dev: false /@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.21.0): resolution: {integrity: sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg==} @@ -6029,7 +5884,6 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.0 - dev: false /@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.21.0): resolution: {integrity: sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ==} @@ -6038,7 +5892,6 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.0 - dev: false /@svgr/babel-preset@6.5.1(@babel/core@7.21.0): resolution: {integrity: sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw==} @@ -6055,7 +5908,6 @@ packages: '@svgr/babel-plugin-svg-em-dimensions': 6.5.1(@babel/core@7.21.0) '@svgr/babel-plugin-transform-react-native-svg': 6.5.1(@babel/core@7.21.0) '@svgr/babel-plugin-transform-svg-component': 6.5.1(@babel/core@7.21.0) - dev: false /@svgr/core@6.5.1: resolution: {integrity: sha512-/xdLSWxK5QkqG524ONSjvg3V/FkNyCv538OIBdQqPNaAta3AsXj/Bd2FbvR87yMbXO2hFSWiAe/Q6IkVPDw+mw==} @@ -6068,7 +5920,6 @@ packages: cosmiconfig: 7.1.0 transitivePeerDependencies: - supports-color - dev: false /@svgr/hast-util-to-babel-ast@6.5.1: resolution: {integrity: sha512-1hnUxxjd83EAxbL4a0JDJoD3Dao3hmjvyvyEV8PzWmLK3B9m9NPlW7GKjFyoWE8nM7HnXzPcmmSyOW8yOddSXw==} @@ -6076,7 +5927,6 @@ packages: dependencies: '@babel/types': 7.21.2 entities: 4.4.0 - dev: false /@svgr/plugin-jsx@6.5.1(@svgr/core@6.5.1): resolution: {integrity: sha512-+UdQxI3jgtSjCykNSlEMuy1jSRQlGC7pqBCPvkG/2dATdWo082zHTTK3uhnAju2/6XpE6B5mZ3z4Z8Ns01S8Gw==} @@ -6091,7 +5941,6 @@ packages: svg-parser: 2.0.4 transitivePeerDependencies: - supports-color - dev: false /@svgr/plugin-svgo@6.5.1(@svgr/core@6.5.1): resolution: {integrity: sha512-omvZKf8ixP9z6GWgwbtmP9qQMPX4ODXi+wzbVZgomNFsUIlHA1sf4fThdwTWSsZGgvGAG6yE+b/F5gWUkcZ/iQ==} @@ -6103,7 +5952,6 @@ packages: cosmiconfig: 7.1.0 deepmerge: 4.3.0 svgo: 2.8.0 - dev: false /@svgr/webpack@6.5.1: resolution: {integrity: sha512-cQ/AsnBkXPkEK8cLbv4Dm7JGXq2XrumKnL1dRpJD9rIO2fTIlJI9a1uCciYG1F2aUsox/hJQyNGbt3soDxSRkA==} @@ -6119,7 +5967,6 @@ packages: '@svgr/plugin-svgo': 6.5.1(@svgr/core@6.5.1) transitivePeerDependencies: - supports-color - dev: false /@swc/helpers@0.4.14: resolution: {integrity: sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==} @@ -6154,11 +6001,11 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: true - /@theunderscorer/nx-semantic-release@2.0.1(nx@15.7.2)(typescript@4.9.5): + /@theunderscorer/nx-semantic-release@2.0.1(nx@15.9.2)(typescript@4.9.5): resolution: {integrity: sha512-zvy9ISClJ02W+bwQFCh8jOykPFN325Jf4kUpPJpbbLL0m6ns1urdPmA/wsL/etlJh5JeEl0UXcJf2fTvOOsCxw==} engines: {node: '>=16.0.0'} dependencies: - '@nrwl/devkit': 15.7.2(nx@15.7.2)(typescript@4.9.5) + '@nrwl/devkit': 15.7.2(nx@15.9.2)(typescript@4.9.5) '@semantic-release/changelog': 6.0.2(semantic-release@20.1.0) '@semantic-release/exec': 6.0.3(semantic-release@20.1.0) '@semantic-release/git': 10.0.1(semantic-release@20.1.0) @@ -6184,7 +6031,6 @@ packages: /@trysound/sax@0.2.0: resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} engines: {node: '>=10.13.0'} - dev: false /@tsconfig/node10@1.0.9: resolution: {integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==} @@ -6210,35 +6056,26 @@ packages: '@types/babel__generator': 7.6.4 '@types/babel__template': 7.4.1 '@types/babel__traverse': 7.18.3 + dev: true /@types/babel__generator@7.6.4: resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==} dependencies: '@babel/types': 7.21.2 + dev: true /@types/babel__template@7.4.1: resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==} dependencies: '@babel/parser': 7.21.2 '@babel/types': 7.21.2 + dev: true /@types/babel__traverse@7.18.3: resolution: {integrity: sha512-1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w==} dependencies: '@babel/types': 7.21.2 - - /@types/body-parser@1.19.2: - resolution: {integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==} - dependencies: - '@types/connect': 3.4.35 - '@types/node': 18.14.2 - dev: false - - /@types/bonjour@3.5.10: - resolution: {integrity: sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==} - dependencies: - '@types/node': 18.14.2 - dev: false + dev: true /@types/chai-subset@1.3.3: resolution: {integrity: sha512-frBecisrNGz+F4T6bcc+NLeolfiojh5FxW2klu669+8BARtyQv2C/GkNW6FUodVe4BroGMP/wER/YDGc7rEllw==} @@ -6250,25 +6087,11 @@ packages: resolution: {integrity: sha512-KnRanxnpfpjUTqTCXslZSEdLfXExwgNxYPdiO2WGUj8+HDjFi8R3k5RVKPeSCzLjCcshCAtVO2QBbVuAV4kTnw==} dev: true - /@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': 18.14.2 - dev: false - - /@types/connect@3.4.35: - resolution: {integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==} - dependencies: - '@types/node': 18.14.2 - dev: false - /@types/eslint-scope@3.7.4: resolution: {integrity: sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==} dependencies: '@types/eslint': 8.21.1 '@types/estree': 1.0.0 - dev: false /@types/eslint@8.21.1: resolution: {integrity: sha512-rc9K8ZpVjNcLs8Fp0dkozd5Pt2Apk1glO4Vgz8ix1u6yFByxfqo5Yavpy65o+93TAe24jr7v+eSBtFLvOQtCRQ==} @@ -6276,34 +6099,34 @@ packages: '@types/estree': 1.0.0 '@types/json-schema': 7.0.11 + /@types/estree@0.0.39: + resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==} + dev: false + /@types/estree@0.0.51: resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==} - dev: false /@types/estree@1.0.0: resolution: {integrity: sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==} - /@types/express-serve-static-core@4.17.33: - resolution: {integrity: sha512-TPBqmR/HRYI3eC2E5hmiivIzv+bidAfXofM+sbonAGvyDhySGw9/PQZFt2BLOrjUUR++4eJVpx6KnLQK1Fk9tA==} + /@types/fs-extra@8.1.2: + resolution: {integrity: sha512-SvSrYXfWSc7R4eqnOzbQF4TZmfpNSM9FrSWLU3EUnWBuyZqNBOrv1B1JA3byUDPUl9z4Ab3jeZG2eDdySlgNMg==} dependencies: '@types/node': 18.14.2 - '@types/qs': 6.9.7 - '@types/range-parser': 1.2.4 dev: false - /@types/express@4.17.17: - resolution: {integrity: sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==} + /@types/glob@7.2.0: + resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} dependencies: - '@types/body-parser': 1.19.2 - '@types/express-serve-static-core': 4.17.33 - '@types/qs': 6.9.7 - '@types/serve-static': 1.15.1 + '@types/minimatch': 5.1.2 + '@types/node': 18.14.2 dev: false /@types/graceful-fs@4.1.6: resolution: {integrity: sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==} dependencies: '@types/node': 18.14.2 + dev: true /@types/history@4.7.11: resolution: {integrity: sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==} @@ -6317,16 +6140,19 @@ packages: /@types/istanbul-lib-coverage@2.0.4: resolution: {integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==} + dev: true /@types/istanbul-lib-report@3.0.0: resolution: {integrity: sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==} dependencies: '@types/istanbul-lib-coverage': 2.0.4 + dev: true /@types/istanbul-reports@3.0.1: resolution: {integrity: sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==} dependencies: '@types/istanbul-lib-report': 3.0.0 + dev: true /@types/jest@29.4.0: resolution: {integrity: sha512-VaywcGQ9tPorCX/Jkkni7RWGFfI11whqzs8dvxF41P17Z+z872thvEvlIbznjPJ02kl1HMX3LmLOonsj2n7HeQ==} @@ -6364,8 +6190,8 @@ packages: resolution: {integrity: sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA==} dev: false - /@types/mime@3.0.1: - resolution: {integrity: sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==} + /@types/minimatch@5.1.2: + resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==} dev: false /@types/minimist@1.2.2: @@ -6378,6 +6204,7 @@ packages: /@types/node@14.18.37: resolution: {integrity: sha512-7GgtHCs/QZrBrDzgIJnQtuSvhFSwhyYSI2uafSwZoNt1iOGhEN5fwNrQMjtONyHm9+/LoA4453jH0CMYcr06Pg==} + dev: true /@types/node@18.14.2: resolution: {integrity: sha512-1uEQxww3DaghA0RxqHx0O0ppVlo43pJhepY51OxuQIKHpjbnYLA7vcdwioNPzIqmC2u3I/dmylcqjlh0e7AyUA==} @@ -6391,18 +6218,11 @@ packages: /@types/prettier@2.7.2: resolution: {integrity: sha512-KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg==} + dev: true /@types/prop-types@15.7.5: resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==} - /@types/qs@6.9.7: - resolution: {integrity: sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==} - dev: false - - /@types/range-parser@1.2.4: - resolution: {integrity: sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==} - dev: false - /@types/react-dom@18.0.11: resolution: {integrity: sha512-O38bPbI2CWtgw/OoQoY+BRelw7uysmXbWvw3nLWO21H1HSh+GOlqPuXshJfjmpNlKiiSDG9cc1JZAaMmVdcTlw==} dependencies: @@ -6437,8 +6257,15 @@ packages: '@types/scheduler': 0.16.2 csstype: 3.1.1 + /@types/resolve@1.17.1: + resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==} + dependencies: + '@types/node': 18.14.2 + dev: false + /@types/retry@0.12.0: resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==} + dev: true /@types/scheduler@0.16.2: resolution: {integrity: sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==} @@ -6447,57 +6274,38 @@ packages: resolution: {integrity: sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==} dev: true - /@types/serve-index@1.9.1: - resolution: {integrity: sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==} - dependencies: - '@types/express': 4.17.17 - dev: false - - /@types/serve-static@1.15.1: - resolution: {integrity: sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ==} - dependencies: - '@types/mime': 3.0.1 - '@types/node': 18.14.2 - dev: false - /@types/sinonjs__fake-timers@8.1.1: resolution: {integrity: sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==} + dev: true /@types/sizzle@2.3.3: resolution: {integrity: sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ==} - - /@types/sockjs@0.3.33: - resolution: {integrity: sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==} - dependencies: - '@types/node': 18.14.2 - dev: false + dev: true /@types/stack-utils@2.0.1: resolution: {integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==} + dev: true /@types/tough-cookie@4.0.2: resolution: {integrity: sha512-Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw==} dev: true - /@types/ws@8.5.4: - resolution: {integrity: sha512-zdQDHKUgcX/zBc4GrwsE/7dVdAD8JR4EuiAXiiUhhfyIJXXb2+PrGshFyeXWQPMmmZ2XxgaqclgpIC7eTXc1mg==} - dependencies: - '@types/node': 18.14.2 - dev: false - /@types/yargs-parser@21.0.0: resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==} + dev: true /@types/yargs@17.0.22: resolution: {integrity: sha512-pet5WJ9U8yPVRhkwuEIp5ktAeAqRZOq4UdAyWLWzxbtpyXnzbtLdKiXAjJzi/KLmPGS9wk86lUFWZFN6sISo4g==} dependencies: '@types/yargs-parser': 21.0.0 + dev: true /@types/yauzl@2.10.0: resolution: {integrity: sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==} requiresBuild: true dependencies: '@types/node': 18.14.2 + dev: true optional: true /@typescript-eslint/eslint-plugin@5.53.0(@typescript-eslint/parser@5.53.0)(eslint@8.15.0)(typescript@4.9.5): @@ -6641,16 +6449,16 @@ packages: '@babel/plugin-transform-react-jsx-source': 7.19.6(@babel/core@7.21.0) magic-string: 0.27.0 react-refresh: 0.14.0 - vite: 4.1.4(@types/node@18.14.2)(less@4.1.3)(stylus@0.55.0) + vite: 4.1.4(@types/node@18.14.2) transitivePeerDependencies: - supports-color dev: true - /@vitest/coverage-c8@0.25.8(@vitest/ui@0.25.8)(jsdom@20.0.3)(less@4.1.3)(stylus@0.55.0): + /@vitest/coverage-c8@0.25.8(@vitest/ui@0.25.8)(jsdom@20.0.3): resolution: {integrity: sha512-fWgzQoK2KNzTTNnDcLCyibfO9/pbcpPOMtZ9Yvq/Eggpi2X8lewx/OcKZkO5ba5q9dl6+BBn6d5hTcS1709rZw==} dependencies: c8: 7.13.0 - vitest: 0.25.8(@vitest/ui@0.25.8)(jsdom@20.0.3)(less@4.1.3)(stylus@0.55.0) + vitest: 0.25.8(@vitest/ui@0.25.8)(jsdom@20.0.3) transitivePeerDependencies: - '@edge-runtime/vm' - '@vitest/browser' @@ -6924,19 +6732,15 @@ packages: dependencies: '@webassemblyjs/helper-numbers': 1.11.1 '@webassemblyjs/helper-wasm-bytecode': 1.11.1 - dev: false /@webassemblyjs/floating-point-hex-parser@1.11.1: resolution: {integrity: sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==} - dev: false /@webassemblyjs/helper-api-error@1.11.1: resolution: {integrity: sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==} - dev: false /@webassemblyjs/helper-buffer@1.11.1: resolution: {integrity: sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==} - dev: false /@webassemblyjs/helper-numbers@1.11.1: resolution: {integrity: sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==} @@ -6944,11 +6748,9 @@ packages: '@webassemblyjs/floating-point-hex-parser': 1.11.1 '@webassemblyjs/helper-api-error': 1.11.1 '@xtuc/long': 4.2.2 - dev: false /@webassemblyjs/helper-wasm-bytecode@1.11.1: resolution: {integrity: sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==} - dev: false /@webassemblyjs/helper-wasm-section@1.11.1: resolution: {integrity: sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==} @@ -6957,23 +6759,19 @@ packages: '@webassemblyjs/helper-buffer': 1.11.1 '@webassemblyjs/helper-wasm-bytecode': 1.11.1 '@webassemblyjs/wasm-gen': 1.11.1 - dev: false /@webassemblyjs/ieee754@1.11.1: resolution: {integrity: sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==} dependencies: '@xtuc/ieee754': 1.2.0 - dev: false /@webassemblyjs/leb128@1.11.1: resolution: {integrity: sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==} dependencies: '@xtuc/long': 4.2.2 - dev: false /@webassemblyjs/utf8@1.11.1: resolution: {integrity: sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==} - dev: false /@webassemblyjs/wasm-edit@1.11.1: resolution: {integrity: sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==} @@ -6986,7 +6784,6 @@ packages: '@webassemblyjs/wasm-opt': 1.11.1 '@webassemblyjs/wasm-parser': 1.11.1 '@webassemblyjs/wast-printer': 1.11.1 - dev: false /@webassemblyjs/wasm-gen@1.11.1: resolution: {integrity: sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==} @@ -6996,7 +6793,6 @@ packages: '@webassemblyjs/ieee754': 1.11.1 '@webassemblyjs/leb128': 1.11.1 '@webassemblyjs/utf8': 1.11.1 - dev: false /@webassemblyjs/wasm-opt@1.11.1: resolution: {integrity: sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==} @@ -7005,7 +6801,6 @@ packages: '@webassemblyjs/helper-buffer': 1.11.1 '@webassemblyjs/wasm-gen': 1.11.1 '@webassemblyjs/wasm-parser': 1.11.1 - dev: false /@webassemblyjs/wasm-parser@1.11.1: resolution: {integrity: sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==} @@ -7016,14 +6811,12 @@ packages: '@webassemblyjs/ieee754': 1.11.1 '@webassemblyjs/leb128': 1.11.1 '@webassemblyjs/utf8': 1.11.1 - dev: false /@webassemblyjs/wast-printer@1.11.1: resolution: {integrity: sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==} dependencies: '@webassemblyjs/ast': 1.11.1 '@xtuc/long': 4.2.2 - dev: false /@xstate/react@3.2.1(@types/react@18.0.28)(react@18.2.0)(xstate@4.37.0): resolution: {integrity: sha512-L/mqYRxyBWVdIdSaXBHacfvS8NKn3sTKbPb31aRADbE9spsJ1p+tXil0GVQHPlzrmjGeozquLrxuYGiXsFNU7g==} @@ -7047,11 +6840,9 @@ packages: /@xtuc/ieee754@1.2.0: resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==} - dev: false /@xtuc/long@4.2.2: resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} - dev: false /@yarnpkg/lockfile@1.1.0: resolution: {integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==} @@ -7087,6 +6878,7 @@ packages: /abab@2.0.6: resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==} + dev: true /accepts@1.3.8: resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} @@ -7109,7 +6901,6 @@ packages: acorn: ^8 dependencies: acorn: 8.8.2 - dev: false /acorn-jsx@5.3.2(acorn@8.8.2): resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} @@ -7127,6 +6918,11 @@ packages: engines: {node: '>=0.4.0'} hasBin: true + /address@1.2.2: + resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==} + engines: {node: '>= 10.0.0'} + dev: true + /agent-base@6.0.2: resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} engines: {node: '>= 6.0.0'} @@ -7142,6 +6938,7 @@ packages: dependencies: clean-stack: 2.2.0 indent-string: 4.0.0 + dev: true /aggregate-error@4.0.1: resolution: {integrity: sha512-0poP0T7el6Vq3rstR8Mn4V/IQrpBLO6POkUSrN7RhyY+GF/InCFShQzsQ39T25gkHhLgSLByyAz+Kjb+c2L98w==} @@ -7168,7 +6965,6 @@ packages: ajv: ^6.9.1 dependencies: ajv: 6.12.6 - dev: false /ajv-keywords@5.1.0(ajv@8.12.0): resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==} @@ -7209,6 +7005,7 @@ packages: engines: {node: '>=8'} dependencies: type-fest: 0.21.3 + dev: true /ansi-escapes@5.0.0: resolution: {integrity: sha512-5GFMVX8HqE/TB+FuBJGuO5XG0WrsA6ptUqoODaT/n9mmUaZFkqnBueB4leqGBCmrUHnCnC4PCZTCd0E7QQ83bA==} @@ -7217,12 +7014,6 @@ packages: type-fest: 1.4.0 dev: true - /ansi-html-community@0.0.8: - resolution: {integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==} - engines: {'0': node >= 0.8.0} - hasBin: true - dev: false - /ansi-regex@5.0.1: resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} engines: {node: '>=8'} @@ -7242,6 +7033,7 @@ packages: /ansi-styles@5.2.0: resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} engines: {node: '>=10'} + dev: true /ansicolors@0.3.2: resolution: {integrity: sha512-QXu7BPrP29VllRxH8GwB7x5iX5qWKAAMLqKQGWTeLWVlNHNOpVMJ91dsxQAIWXpjuW5wqvxu3Jd/nRjrJ+0pqg==} @@ -7256,6 +7048,7 @@ packages: /arch@2.2.0: resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==} + dev: true /arg@4.1.3: resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} @@ -7289,10 +7082,6 @@ packages: resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} dev: false - /array-flatten@2.1.2: - resolution: {integrity: sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==} - dev: false - /array-ify@1.0.0: resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==} dev: true @@ -7311,7 +7100,6 @@ packages: /array-union@2.1.0: resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} engines: {node: '>=8'} - dev: true /array-union@3.0.1: resolution: {integrity: sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==} @@ -7357,10 +7145,12 @@ packages: resolution: {integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==} dependencies: safer-buffer: 2.1.2 + dev: true /assert-plus@1.0.0: resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==} engines: {node: '>=0.8'} + dev: true /assertion-error@1.1.0: resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==} @@ -7372,6 +7162,13 @@ packages: /astral-regex@2.0.0: resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} engines: {node: '>=8'} + dev: true + + /async@2.6.4: + resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==} + dependencies: + lodash: 4.17.21 + dev: true /async@3.2.4: resolution: {integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==} @@ -7382,11 +7179,7 @@ packages: /at-least-node@1.0.0: resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==} engines: {node: '>= 4.0.0'} - - /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: resolution: {integrity: sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==} @@ -7416,9 +7209,11 @@ packages: /aws-sign2@0.7.0: resolution: {integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==} + dev: true /aws4@1.12.0: resolution: {integrity: sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==} + dev: true /axe-core@4.6.3: resolution: {integrity: sha512-/BQzOX780JhsxDnPpH4ZiyrJAzcd8AfzFPkv+89veFSr1rcMjuq2JDCwypKaPeB6ljHp9KjXhPpjgCvQlWYuqg==} @@ -7464,6 +7259,34 @@ packages: deep-equal: 2.2.0 dev: true + /babel-helper-evaluate-path@0.5.0: + resolution: {integrity: sha512-mUh0UhS607bGh5wUMAQfOpt2JX2ThXMtppHRdRU1kL7ZLRWIXxoV2UIV1r2cAeeNeU1M5SB5/RSUgUxrK8yOkA==} + dev: true + + /babel-helper-flip-expressions@0.4.3: + resolution: {integrity: sha512-rSrkRW4YQ2ETCWww9gbsWk4N0x1BOtln349Tk0dlCS90oT68WMLyGR7WvaMp3eAnsVrCqdUtC19lo1avyGPejA==} + dev: true + + /babel-helper-is-nodes-equiv@0.0.1: + resolution: {integrity: sha512-ri/nsMFVRqXn7IyT5qW4/hIAGQxuYUFHa3qsxmPtbk6spZQcYlyDogfVpNm2XYOslH/ULS4VEJGUqQX5u7ACQw==} + dev: true + + /babel-helper-is-void-0@0.4.3: + resolution: {integrity: sha512-07rBV0xPRM3TM5NVJEOQEkECX3qnHDjaIbFvWYPv+T1ajpUiVLiqTfC+MmiZxY5KOL/Ec08vJdJD9kZiP9UkUg==} + dev: true + + /babel-helper-mark-eval-scopes@0.4.3: + resolution: {integrity: sha512-+d/mXPP33bhgHkdVOiPkmYoeXJ+rXRWi7OdhwpyseIqOS8CmzHQXHUp/+/Qr8baXsT0kjGpMHHofHs6C3cskdA==} + dev: true + + /babel-helper-remove-or-void@0.4.3: + resolution: {integrity: sha512-eYNceYtcGKpifHDir62gHJadVXdg9fAhuZEXiRQnJJ4Yi4oUTpqpNY//1pM4nVyjjDMPYaC2xSf0I+9IqVzwdA==} + dev: true + + /babel-helper-to-multiple-sequence-expressions@0.5.0: + resolution: {integrity: sha512-m2CvfDW4+1qfDdsrtf4dwOslQC3yhbgyBFptncp4wvtdrDHqueW7slsYv4gArie056phvQFhT2nRcGS4bnm6mA==} + dev: true + /babel-jest@28.1.3(@babel/core@7.21.0): resolution: {integrity: sha512-epUaPOEWMk3cWX0M/sPvCHHCe9fMFAa/9hXEgKP8nFfNl/jlGkE9ucq9NqkZGXLDduCJYS0UvSlPUwC0S+rH6Q==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} @@ -7480,6 +7303,7 @@ packages: slash: 3.0.0 transitivePeerDependencies: - supports-color + dev: true /babel-jest@29.4.3(@babel/core@7.21.0): resolution: {integrity: sha512-o45Wyn32svZE+LnMVWv/Z4x0SwtLbh4FyGcYtR20kIWd+rdrDZ9Fzq8Ml3MYLD+mZvEdzCjZsCnYZ2jpJyQ+Nw==} @@ -7499,19 +7323,6 @@ packages: - supports-color dev: true - /babel-loader@9.1.2(@babel/core@7.21.0)(webpack@5.75.0): - resolution: {integrity: sha512-mN14niXW43tddohGl8HPu5yfQq70iUThvFL/4QzESA7GcZoC0eVOhvWdQ8+3UlSjaDE9MVtsW9mxDY07W7VpVA==} - engines: {node: '>= 14.15.0'} - peerDependencies: - '@babel/core': ^7.12.0 - webpack: '>=5' - dependencies: - '@babel/core': 7.21.0 - find-cache-dir: 3.3.2 - schema-utils: 4.0.0 - webpack: 5.75.0 - dev: false - /babel-plugin-const-enum@1.2.0(@babel/core@7.21.0): resolution: {integrity: sha512-o1m/6iyyFnp9MRsK1dHF3bneqyf3AlM2q3A/YbgQr2pCat6B6XJVDv2TXqzfY2RYUi4mak6WAksSBPlyYGx9dg==} peerDependencies: @@ -7535,6 +7346,7 @@ packages: test-exclude: 6.0.0 transitivePeerDependencies: - supports-color + dev: true /babel-plugin-jest-hoist@28.1.3: resolution: {integrity: sha512-Ys3tUKAmfnkRUpPdpa98eYrAR0nV+sSFUZZEGuQ2EbFd1y4SOLtD5QDNHAq+bb9a+bbXvYQC4b+ID/THIMcU6Q==} @@ -7544,6 +7356,7 @@ packages: '@babel/types': 7.21.2 '@types/babel__core': 7.20.0 '@types/babel__traverse': 7.18.3 + dev: true /babel-plugin-jest-hoist@29.4.3: resolution: {integrity: sha512-mB6q2q3oahKphy5V7CpnNqZOCkxxZ9aokf1eh82Dy3jQmg4xvM1tGrh5y6BQUJh4a3Pj9+eLfwvAZ7VNKg7H8Q==} @@ -7570,6 +7383,71 @@ packages: cosmiconfig: 7.1.0 resolve: 1.22.1 + /babel-plugin-minify-builtins@0.5.0: + resolution: {integrity: sha512-wpqbN7Ov5hsNwGdzuzvFcjgRlzbIeVv1gMIlICbPj0xkexnfoIDe7q+AZHMkQmAE/F9R5jkrB6TLfTegImlXag==} + dev: true + + /babel-plugin-minify-constant-folding@0.5.0: + resolution: {integrity: sha512-Vj97CTn/lE9hR1D+jKUeHfNy+m1baNiJ1wJvoGyOBUx7F7kJqDZxr9nCHjO/Ad+irbR3HzR6jABpSSA29QsrXQ==} + dependencies: + babel-helper-evaluate-path: 0.5.0 + dev: true + + /babel-plugin-minify-dead-code-elimination@0.5.2: + resolution: {integrity: sha512-krq9Lwi0QIzyAlcNBXTL4usqUvevB4BzktdEsb8srcXC1AaYqRJiAQw6vdKdJSaXbz6snBvziGr6ch/aoRCfpA==} + dependencies: + babel-helper-evaluate-path: 0.5.0 + babel-helper-mark-eval-scopes: 0.4.3 + babel-helper-remove-or-void: 0.4.3 + lodash: 4.17.21 + dev: true + + /babel-plugin-minify-flip-comparisons@0.4.3: + resolution: {integrity: sha512-8hNwgLVeJzpeLVOVArag2DfTkbKodzOHU7+gAZ8mGBFGPQHK6uXVpg3jh5I/F6gfi5Q5usWU2OKcstn1YbAV7A==} + dependencies: + babel-helper-is-void-0: 0.4.3 + dev: true + + /babel-plugin-minify-guarded-expressions@0.4.4: + resolution: {integrity: sha512-RMv0tM72YuPPfLT9QLr3ix9nwUIq+sHT6z8Iu3sLbqldzC1Dls8DPCywzUIzkTx9Zh1hWX4q/m9BPoPed9GOfA==} + dependencies: + babel-helper-evaluate-path: 0.5.0 + babel-helper-flip-expressions: 0.4.3 + dev: true + + /babel-plugin-minify-infinity@0.4.3: + resolution: {integrity: sha512-X0ictxCk8y+NvIf+bZ1HJPbVZKMlPku3lgYxPmIp62Dp8wdtbMLSekczty3MzvUOlrk5xzWYpBpQprXUjDRyMA==} + dev: true + + /babel-plugin-minify-mangle-names@0.5.1: + resolution: {integrity: sha512-8KMichAOae2FHlipjNDTo2wz97MdEb2Q0jrn4NIRXzHH7SJ3c5TaNNBkeTHbk9WUsMnqpNUx949ugM9NFWewzw==} + dependencies: + babel-helper-mark-eval-scopes: 0.4.3 + dev: true + + /babel-plugin-minify-numeric-literals@0.4.3: + resolution: {integrity: sha512-5D54hvs9YVuCknfWywq0eaYDt7qYxlNwCqW9Ipm/kYeS9gYhJd0Rr/Pm2WhHKJ8DC6aIlDdqSBODSthabLSX3A==} + dev: true + + /babel-plugin-minify-replace@0.5.0: + resolution: {integrity: sha512-aXZiaqWDNUbyNNNpWs/8NyST+oU7QTpK7J9zFEFSA0eOmtUNMU3fczlTTTlnCxHmq/jYNFEmkkSG3DDBtW3Y4Q==} + dev: true + + /babel-plugin-minify-simplify@0.5.1: + resolution: {integrity: sha512-OSYDSnoCxP2cYDMk9gxNAed6uJDiDz65zgL6h8d3tm8qXIagWGMLWhqysT6DY3Vs7Fgq7YUDcjOomhVUb+xX6A==} + dependencies: + babel-helper-evaluate-path: 0.5.0 + babel-helper-flip-expressions: 0.4.3 + babel-helper-is-nodes-equiv: 0.0.1 + babel-helper-to-multiple-sequence-expressions: 0.5.0 + dev: true + + /babel-plugin-minify-type-constructors@0.4.3: + resolution: {integrity: sha512-4ADB0irJ/6BeXWHubjCJmrPbzhxDgjphBMjIjxCc25n4NGJ00NsYqwYt+F/OvE9RXx8KaSW7cJvp+iZX436tnQ==} + dependencies: + babel-helper-is-void-0: 0.4.3 + dev: true + /babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.21.0): resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} peerDependencies: @@ -7603,6 +7481,54 @@ packages: transitivePeerDependencies: - supports-color + /babel-plugin-transform-async-to-promises@0.8.18: + resolution: {integrity: sha512-WpOrF76nUHijnNn10eBGOHZmXQC8JYRME9rOLxStOga7Av2VO53ehVFvVNImMksVtQuL2/7ZNxEgxnx7oo/3Hw==} + dev: false + + /babel-plugin-transform-inline-consecutive-adds@0.4.3: + resolution: {integrity: sha512-8D104wbzzI5RlxeVPYeQb9QsUyepiH1rAO5hpPpQ6NPRgQLpIVwkS/Nbx944pm4K8Z+rx7CgjPsFACz/VCBN0Q==} + dev: true + + /babel-plugin-transform-member-expression-literals@6.9.4: + resolution: {integrity: sha512-Xq9/Rarpj+bjOZSl1nBbZYETsNEDDJSrb6Plb1sS3/36FukWFLLRysgecva5KZECjUJTrJoQqjJgtWToaflk5Q==} + dev: true + + /babel-plugin-transform-merge-sibling-variables@6.9.5: + resolution: {integrity: sha512-xj/KrWi6/uP+DrD844h66Qh2cZN++iugEIgH8QcIxhmZZPNP6VpOE9b4gP2FFW39xDAY43kCmYMM6U0QNKN8fw==} + dev: true + + /babel-plugin-transform-minify-booleans@6.9.4: + resolution: {integrity: sha512-9pW9ePng6DZpzGPalcrULuhSCcauGAbn8AeU3bE34HcDkGm8Ldt0ysjGkyb64f0K3T5ilV4mriayOVv5fg0ASA==} + dev: true + + /babel-plugin-transform-property-literals@6.9.4: + resolution: {integrity: sha512-Pf8JHTjTPxecqVyL6KSwD/hxGpoTZjiEgV7nCx0KFQsJYM0nuuoCajbg09KRmZWeZbJ5NGTySABYv8b/hY1eEA==} + dependencies: + esutils: 2.0.3 + dev: true + + /babel-plugin-transform-regexp-constructors@0.4.3: + resolution: {integrity: sha512-JjymDyEyRNhAoNFp09y/xGwYVYzT2nWTGrBrWaL6eCg2m+B24qH2jR0AA8V8GzKJTgC8NW6joJmc6nabvWBD/g==} + dev: true + + /babel-plugin-transform-remove-console@6.9.4: + resolution: {integrity: sha512-88blrUrMX3SPiGkT1GnvVY8E/7A+k6oj3MNvUtTIxJflFzXTw1bHkuJ/y039ouhFMp2prRn5cQGzokViYi1dsg==} + dev: true + + /babel-plugin-transform-remove-debugger@6.9.4: + resolution: {integrity: sha512-Kd+eTBYlXfwoFzisburVwrngsrz4xh9I0ppoJnU/qlLysxVBRgI4Pj+dk3X8F5tDiehp3hhP8oarRMT9v2Z3lw==} + dev: true + + /babel-plugin-transform-remove-undefined@0.5.0: + resolution: {integrity: sha512-+M7fJYFaEE/M9CXa0/IRkDbiV3wRELzA1kKQFCJ4ifhrzLKn/9VCCgj9OFmYWwBd8IB48YdgPkHYtbYq+4vtHQ==} + dependencies: + babel-helper-evaluate-path: 0.5.0 + dev: true + + /babel-plugin-transform-simplify-comparison-operators@6.9.4: + resolution: {integrity: sha512-GLInxhGAQWJ9YIdjwF6dAFlmh4U+kN8pL6Big7nkDzHoZcaDQOtBm28atEhQJq6m9GpAovbiGEShKqXv4BSp0A==} + dev: true + /babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.21.0): resolution: {integrity: sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==} peerDependencies: @@ -7615,6 +7541,10 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 + /babel-plugin-transform-undefined-to-void@6.9.4: + resolution: {integrity: sha512-D2UbwxawEY1xVc9svYAUZQM2xarwSNXue2qDIx6CeV2EuMGaes/0su78zlIDIAgE7BvnMw4UpmSo9fDy+znghg==} + dev: true + /babel-preset-current-node-syntax@1.0.1(@babel/core@7.21.0): resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} peerDependencies: @@ -7633,6 +7563,7 @@ packages: '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.21.0) '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.0) '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.21.0) + dev: true /babel-preset-jest@28.1.3(@babel/core@7.21.0): resolution: {integrity: sha512-L+fupJvlWAHbQfn74coNX3zf60LXMJsezNvvx8eIh7iOR1luJ1poxYgQk1F8PYtNq/6QODDHCqsSnTFSWC491A==} @@ -7643,6 +7574,7 @@ packages: '@babel/core': 7.21.0 babel-plugin-jest-hoist: 28.1.3 babel-preset-current-node-syntax: 1.0.1(@babel/core@7.21.0) + dev: true /babel-preset-jest@29.4.3(@babel/core@7.21.0): resolution: {integrity: sha512-gWx6COtSuma6n9bw+8/F+2PCXrIgxV/D1TJFnp6OyBK2cxPWg0K9p/sriNYeifKjpUkMViWQ09DSWtzJQRETsw==} @@ -7655,6 +7587,34 @@ packages: babel-preset-current-node-syntax: 1.0.1(@babel/core@7.21.0) dev: true + /babel-preset-minify@0.5.2: + resolution: {integrity: sha512-v4GL+kk0TfovbRIKZnC3HPbu2cAGmPAby7BsOmuPdMJfHV+4FVdsGXTH/OOGQRKYdjemBuL1+MsE6mobobhe9w==} + dependencies: + babel-plugin-minify-builtins: 0.5.0 + babel-plugin-minify-constant-folding: 0.5.0 + babel-plugin-minify-dead-code-elimination: 0.5.2 + babel-plugin-minify-flip-comparisons: 0.4.3 + babel-plugin-minify-guarded-expressions: 0.4.4 + babel-plugin-minify-infinity: 0.4.3 + babel-plugin-minify-mangle-names: 0.5.1 + babel-plugin-minify-numeric-literals: 0.4.3 + babel-plugin-minify-replace: 0.5.0 + babel-plugin-minify-simplify: 0.5.1 + babel-plugin-minify-type-constructors: 0.4.3 + babel-plugin-transform-inline-consecutive-adds: 0.4.3 + babel-plugin-transform-member-expression-literals: 6.9.4 + babel-plugin-transform-merge-sibling-variables: 6.9.5 + babel-plugin-transform-minify-booleans: 6.9.4 + babel-plugin-transform-property-literals: 6.9.4 + babel-plugin-transform-regexp-constructors: 0.4.3 + babel-plugin-transform-remove-console: 6.9.4 + babel-plugin-transform-remove-debugger: 6.9.4 + babel-plugin-transform-remove-undefined: 0.5.0 + babel-plugin-transform-simplify-comparison-operators: 6.9.4 + babel-plugin-transform-undefined-to-void: 6.9.4 + lodash: 4.17.21 + dev: true + /balanced-match@1.0.2: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} @@ -7667,14 +7627,18 @@ packages: /base64-js@1.5.1: resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} - /batch@0.6.1: - resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==} - dev: false - - /bcrypt-pbkdf@1.0.2: - resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==} + /basic-auth@2.0.1: + resolution: {integrity: sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==} + engines: {node: '>= 0.8'} + dependencies: + safe-buffer: 5.1.2 + dev: true + + /bcrypt-pbkdf@1.0.2: + resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==} dependencies: tweetnacl: 0.14.5 + dev: true /bech32@1.1.4: resolution: {integrity: sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ==} @@ -7691,7 +7655,6 @@ packages: /big.js@5.2.2: resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==} - dev: false /binary-extensions@2.2.0: resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} @@ -7731,9 +7694,11 @@ packages: /blob-util@2.0.2: resolution: {integrity: sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==} + dev: true /bluebird@3.7.2: resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==} + dev: true /bn.js@4.12.0: resolution: {integrity: sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==} @@ -7763,18 +7728,8 @@ packages: - supports-color dev: false - /bonjour-service@1.1.0: - resolution: {integrity: sha512-LVRinRB3k1/K0XzZ2p58COnWvkQknIY6sf0zF2rpErvcJXpMBttEPQSxK+HEXSS9VmpZlDoDnQWv8ftJT20B0Q==} - dependencies: - array-flatten: 2.1.2 - dns-equal: 1.0.0 - fast-deep-equal: 3.1.3 - multicast-dns: 7.2.5 - dev: false - /boolbase@1.0.0: resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} - dev: false /bottleneck@2.19.5: resolution: {integrity: sha512-VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw==} @@ -7844,9 +7799,11 @@ packages: resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} dependencies: node-int64: 0.4.0 + dev: true /buffer-crc32@0.2.13: resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} + dev: true /buffer-from@0.1.2: resolution: {integrity: sha512-RiWIenusJsmI2KcvqQABB83tLxCByE3upSP8QU3rJDMVFGPWLvPQJt/O1Su9moRWeH7d+Q2HYb68f6+v+tw2vg==} @@ -7875,9 +7832,9 @@ packages: ieee754: 1.2.1 dev: false - /bytes@3.0.0: - resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==} - engines: {node: '>= 0.8'} + /builtin-modules@3.3.0: + resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} + engines: {node: '>=6'} dev: false /bytes@3.1.2: @@ -7907,6 +7864,7 @@ packages: /cachedir@2.3.0: resolution: {integrity: sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==} engines: {node: '>=6'} + dev: true /call-bind@1.0.2: resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} @@ -7930,6 +7888,7 @@ packages: /camelcase@5.3.1: resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} engines: {node: '>=6'} + dev: true /camelcase@6.3.0: resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} @@ -7957,6 +7916,7 @@ packages: /caseless@0.12.0: resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==} + dev: true /chai@4.3.7: resolution: {integrity: sha512-HLnAzZ2iupm25PlN0xFreAlBA5zaBSv3og0DdeGA4Ar6h6rJ3A0rolRUKJhSF2V10GZKDgWF/VmAEsNWjCRB+A==} @@ -8037,6 +7997,7 @@ packages: /char-regex@1.0.2: resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} engines: {node: '>=10'} + dev: true /charenc@0.0.2: resolution: {integrity: sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==} @@ -8048,6 +8009,7 @@ packages: /check-more-types@2.24.0: resolution: {integrity: sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==} engines: {node: '>= 0.8.0'} + dev: true /chokidar@3.5.3: resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} @@ -8071,11 +8033,11 @@ packages: /chrome-trace-event@1.0.3: resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==} engines: {node: '>=6.0'} - dev: false /ci-info@3.8.0: resolution: {integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==} engines: {node: '>=8'} + dev: true /cipher-base@1.0.4: resolution: {integrity: sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==} @@ -8086,10 +8048,12 @@ packages: /cjs-module-lexer@1.2.2: resolution: {integrity: sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==} + dev: true /clean-stack@2.2.0: resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} engines: {node: '>=6'} + dev: true /clean-stack@4.2.0: resolution: {integrity: sha512-LYv6XPxoyODi36Dp976riBtSY27VmFo+MKqEU9QCCWyTrdEPDog+RWA7xQWHi6Vbp61j5c4cdzzX1NidnwtUWg==} @@ -8115,6 +8079,7 @@ packages: string-width: 4.2.3 optionalDependencies: '@colors/colors': 1.5.0 + dev: true /cli-truncate@2.1.0: resolution: {integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==} @@ -8122,6 +8087,7 @@ packages: dependencies: slice-ansi: 3.0.0 string-width: 4.2.3 + dev: true /client-only@0.0.1: resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} @@ -8154,9 +8120,11 @@ packages: /co@4.6.0: resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==} engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} + dev: true /collect-v8-coverage@1.0.1: resolution: {integrity: sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==} + dev: true /color-convert@1.9.3: resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} @@ -8183,8 +8151,13 @@ packages: resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==} dev: false + /colorette@1.4.0: + resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==} + dev: false + /colorette@2.0.19: resolution: {integrity: sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==} + dev: true /combined-stream@1.0.8: resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} @@ -8194,20 +8167,20 @@ packages: /commander@2.20.3: resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} - dev: false /commander@5.1.0: resolution: {integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==} engines: {node: '>= 6'} + dev: true /commander@7.2.0: resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} engines: {node: '>= 10'} - dev: false /common-tags@1.8.2: resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==} engines: {node: '>=4.0.0'} + dev: true /commondir@1.0.1: resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} @@ -8220,28 +8193,6 @@ packages: dot-prop: 5.3.0 dev: true - /compressible@2.0.18: - resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==} - engines: {node: '>= 0.6'} - dependencies: - mime-db: 1.52.0 - dev: false - - /compression@1.7.4: - resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==} - engines: {node: '>= 0.8.0'} - dependencies: - accepts: 1.3.8 - bytes: 3.0.0 - compressible: 2.0.18 - debug: 2.6.9 - on-headers: 1.0.2 - safe-buffer: 5.1.2 - vary: 1.1.2 - transitivePeerDependencies: - - supports-color - dev: false - /compute-scroll-into-view@1.0.20: resolution: {integrity: sha512-UCB0ioiyj8CRjtrvaceBLqqhZCVP+1B8+NWQhmdsm0VXOJtobBCf1dBQmebCCo34qZmUwZfIH2MZLqNHazrfjg==} dev: false @@ -8249,6 +8200,12 @@ packages: /concat-map@0.0.1: resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + /concat-with-sourcemaps@1.1.0: + resolution: {integrity: sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==} + dependencies: + source-map: 0.6.1 + dev: false + /config-chain@1.1.13: resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==} dependencies: @@ -8260,11 +8217,6 @@ packages: resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==} dev: true - /connect-history-api-fallback@2.0.0: - resolution: {integrity: sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==} - engines: {node: '>=0.8'} - dev: false - /content-disposition@0.5.4: resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} engines: {node: '>= 0.6'} @@ -8347,11 +8299,6 @@ packages: engines: {node: '>= 0.6'} dev: false - /copy-anything@2.0.6: - resolution: {integrity: sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==} - dependencies: - is-what: 3.14.1 - /copy-to-clipboard@3.3.3: resolution: {integrity: sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==} dependencies: @@ -8381,6 +8328,11 @@ packages: /core-util-is@1.0.2: resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==} + /corser@2.0.1: + resolution: {integrity: sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==} + engines: {node: '>= 0.4.0'} + dev: true + /cosmiconfig-typescript-loader@4.3.0(@types/node@18.14.2)(cosmiconfig@8.1.0)(ts-node@10.9.1)(typescript@4.9.5): resolution: {integrity: sha512-NTxV1MFfZDLPiBMjxbHRwSh5LaLcPMwNdCutmnHJCKoVnlvldPWlllonKwrsRJ5pYZBIBGRWWU2tfvzxgeSW5Q==} engines: {node: '>=12', npm: '>=6'} @@ -8500,51 +8452,6 @@ packages: postcss: 8.4.21 dev: false - /css-loader@6.7.3(webpack@5.75.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.21) - postcss: 8.4.21 - postcss-modules-extract-imports: 3.0.0(postcss@8.4.21) - postcss-modules-local-by-default: 4.0.0(postcss@8.4.21) - postcss-modules-scope: 3.0.0(postcss@8.4.21) - postcss-modules-values: 4.0.0(postcss@8.4.21) - postcss-value-parser: 4.2.0 - semver: 7.3.8 - webpack: 5.75.0 - dev: false - - /css-minimizer-webpack-plugin@3.4.1(webpack@5.75.0): - resolution: {integrity: sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==} - engines: {node: '>= 12.13.0'} - peerDependencies: - '@parcel/css': '*' - clean-css: '*' - csso: '*' - esbuild: '*' - webpack: ^5.0.0 - peerDependenciesMeta: - '@parcel/css': - optional: true - clean-css: - optional: true - csso: - optional: true - esbuild: - optional: true - dependencies: - cssnano: 5.1.15(postcss@8.4.21) - jest-worker: 27.5.1 - postcss: 8.4.21 - schema-utils: 4.0.0 - serialize-javascript: 6.0.0 - source-map: 0.6.1 - webpack: 5.75.0 - dev: false - /css-select@4.3.0: resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==} dependencies: @@ -8553,7 +8460,6 @@ packages: domhandler: 4.3.1 domutils: 2.8.0 nth-check: 2.1.1 - dev: false /css-tree@1.1.3: resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==} @@ -8561,19 +8467,10 @@ packages: dependencies: mdn-data: 2.0.14 source-map: 0.6.1 - dev: false /css-what@6.1.0: resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} engines: {node: '>= 6'} - dev: false - - /css@3.0.0: - resolution: {integrity: sha512-DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ==} - dependencies: - inherits: 2.0.4 - source-map: 0.6.1 - source-map-resolve: 0.6.0 /cssesc@3.0.0: resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} @@ -8645,7 +8542,6 @@ packages: engines: {node: '>=8.0.0'} dependencies: css-tree: 1.1.3 - dev: false /cssom@0.3.8: resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==} @@ -8717,6 +8613,7 @@ packages: tmp: 0.2.1 untildify: 4.0.0 yauzl: 2.10.0 + dev: true /damerau-levenshtein@1.0.8: resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} @@ -8732,6 +8629,7 @@ packages: engines: {node: '>=0.10'} dependencies: assert-plus: 1.0.0 + dev: true /data-urls@3.0.2: resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==} @@ -8748,6 +8646,7 @@ packages: /dayjs@1.11.7: resolution: {integrity: sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==} + dev: true /debug@2.6.9: resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} @@ -8760,16 +8659,6 @@ packages: ms: 2.0.0 dev: false - /debug@3.1.0: - resolution: {integrity: sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - dependencies: - ms: 2.0.0 - /debug@3.2.7(supports-color@8.1.1): resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} peerDependencies: @@ -8780,6 +8669,7 @@ packages: dependencies: ms: 2.1.2 supports-color: 8.1.1 + dev: true /debug@4.3.4(supports-color@8.1.1): resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} @@ -8818,9 +8708,11 @@ packages: /decode-uri-component@0.2.2: resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==} engines: {node: '>=0.10'} + dev: false /dedent@0.7.0: resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==} + dev: true /deep-eql@4.1.3: resolution: {integrity: sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==} @@ -8862,13 +8754,6 @@ packages: resolution: {integrity: sha512-z2wJZXrmeHdvYJp/Ux55wIjqo81G5Bp4c+oELTW+7ar6SogWHajt5a9gO3s3IDaGSAXjDk0vlQKN3rms8ab3og==} engines: {node: '>=0.10.0'} - /default-gateway@6.0.3: - resolution: {integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==} - engines: {node: '>= 10'} - dependencies: - execa: 5.1.1 - dev: false - /define-lazy-prop@2.0.0: resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} engines: {node: '>=8'} @@ -8903,11 +8788,6 @@ packages: resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} engines: {node: '>=0.4.0'} - /depd@1.1.2: - resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==} - engines: {node: '>= 0.6'} - dev: false - /depd@2.0.0: resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} engines: {node: '>= 0.8'} @@ -8929,18 +8809,26 @@ packages: /detect-newline@3.1.0: resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==} engines: {node: '>=8'} + dev: true /detect-node-es@1.1.0: resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==} dev: false - /detect-node@2.1.0: - resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==} - dev: false + /detect-port@1.5.1: + resolution: {integrity: sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==} + hasBin: true + dependencies: + address: 1.2.2 + debug: 4.3.4(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color + dev: true /diff-sequences@28.1.1: resolution: {integrity: sha512-FU0iFaH/E23a+a718l8Qa/19bF9p06kgE0KipMOMadwa3SjnaElKzPaUC0vnibs6/B/9ni97s61mcejk8W1fQw==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dev: true /diff-sequences@29.4.3: resolution: {integrity: sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==} @@ -8962,17 +8850,6 @@ packages: dependencies: path-type: 4.0.0 - /dns-equal@1.0.0: - resolution: {integrity: sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==} - dev: false - - /dns-packet@5.4.0: - resolution: {integrity: sha512-EgqGeaBB8hLiHLZtp/IbaDQTL8pZ0+IvwzSHA6d7VyMDM+B9hgddEMa9xjK5oYnw0ci0JQ6g2XCD7/f6cafU6g==} - engines: {node: '>=6'} - dependencies: - '@leichtgewicht/ip-codec': 2.0.4 - dev: false - /doctrine@2.1.0: resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} engines: {node: '>=0.10.0'} @@ -9003,11 +8880,9 @@ packages: domelementtype: 2.3.0 domhandler: 4.3.1 entities: 2.2.0 - dev: false /domelementtype@2.3.0: resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} - dev: false /domexception@4.0.0: resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==} @@ -9021,7 +8896,6 @@ packages: engines: {node: '>= 4'} dependencies: domelementtype: 2.3.0 - dev: false /domutils@2.8.0: resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==} @@ -9029,7 +8903,6 @@ packages: dom-serializer: 1.4.1 domelementtype: 2.3.0 domhandler: 4.3.1 - dev: false /dot-prop@5.3.0: resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} @@ -9064,6 +8937,7 @@ packages: dependencies: jsbn: 0.1.1 safer-buffer: 2.1.2 + dev: true /ee-first@1.1.1: resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} @@ -9094,6 +8968,7 @@ packages: /emittery@0.10.2: resolution: {integrity: sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==} engines: {node: '>=12'} + dev: true /emittery@0.13.1: resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} @@ -9110,7 +8985,6 @@ packages: /emojis-list@3.0.0: resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==} engines: {node: '>= 4'} - dev: false /encodeurl@1.0.2: resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} @@ -9137,7 +9011,6 @@ packages: /entities@2.2.0: resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} - dev: false /entities@4.4.0: resolution: {integrity: sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==} @@ -9151,14 +9024,6 @@ packages: java-properties: 1.0.2 dev: true - /errno@0.1.8: - resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==} - hasBin: true - requiresBuild: true - dependencies: - prr: 1.0.1 - optional: true - /error-ex@1.3.2: resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} dependencies: @@ -9219,7 +9084,6 @@ packages: /es-module-lexer@0.9.3: resolution: {integrity: sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==} - dev: false /es-set-tostringtag@2.0.1: resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==} @@ -9290,6 +9154,7 @@ packages: /escape-string-regexp@2.0.0: resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==} engines: {node: '>=8'} + dev: true /escape-string-regexp@4.0.0: resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} @@ -9614,9 +9479,16 @@ packages: resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} engines: {node: '>=4.0'} + /estree-walker@0.6.1: + resolution: {integrity: sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==} + dev: false + + /estree-walker@1.0.1: + resolution: {integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==} + dev: false + /estree-walker@2.0.2: resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} - dev: true /esutils@2.0.3: resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} @@ -9629,15 +9501,14 @@ packages: /eventemitter2@6.4.7: resolution: {integrity: sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg==} + dev: true /eventemitter3@4.0.7: resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} - dev: false /events@3.3.0: resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} engines: {node: '>=0.8.x'} - dev: false /execa@4.1.0: resolution: {integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==} @@ -9652,6 +9523,7 @@ packages: onetime: 5.1.2 signal-exit: 3.0.7 strip-final-newline: 2.0.0 + dev: true /execa@5.1.1: resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} @@ -9666,6 +9538,7 @@ packages: onetime: 5.1.2 signal-exit: 3.0.7 strip-final-newline: 2.0.0 + dev: true /execa@6.1.0: resolution: {integrity: sha512-QVWlX2e50heYJcCPG0iWtf8r0xjEYfz/OYLGDYH+IyjWezzPNxz63qNFOu0l4YftGWuizFVZHHs8PrLU5p2IDA==} @@ -9687,10 +9560,12 @@ packages: engines: {node: '>=4'} dependencies: pify: 2.3.0 + dev: true /exit@0.1.2: resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==} engines: {node: '>= 0.8.0'} + dev: true /expect@28.1.3: resolution: {integrity: sha512-eEh0xn8HlsuOBxFgIss+2mX85VAS4Qy3OSkjV7rlBWljtA4oWH37glVGyOZSZvErDT/yBywZdPGwCXuTvSG85g==} @@ -9701,6 +9576,7 @@ packages: jest-matcher-utils: 28.1.3 jest-message-util: 28.1.3 jest-util: 28.1.3 + dev: true /expect@29.4.3: resolution: {integrity: sha512-uC05+Q7eXECFpgDrHdXA4k2rpMyStAYPItEDLyQDo5Ta7fVkJnNA/4zh/OIVkVVNZ1oOK1PipQoyNjuZ6sz6Dg==} @@ -9754,6 +9630,7 @@ packages: /extend@3.0.2: resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} + dev: true /extract-zip@2.0.1(supports-color@8.1.1): resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==} @@ -9767,10 +9644,12 @@ packages: '@types/yauzl': 2.10.0 transitivePeerDependencies: - supports-color + dev: true /extsprintf@1.3.0: resolution: {integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==} engines: {'0': node >=0.6.0} + dev: true /fast-deep-equal@3.1.1: resolution: {integrity: sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA==} @@ -9821,22 +9700,17 @@ packages: dependencies: reusify: 1.0.4 - /faye-websocket@0.11.4: - resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==} - engines: {node: '>=0.8.0'} - dependencies: - websocket-driver: 0.7.4 - dev: false - /fb-watchman@2.0.2: resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} dependencies: bser: 2.1.1 + dev: true /fd-slicer@1.1.0: resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==} dependencies: pend: 1.2.0 + dev: true /figures@2.0.0: resolution: {integrity: sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==} @@ -9874,7 +9748,6 @@ packages: loader-utils: 2.0.4 schema-utils: 3.1.1 webpack: 5.75.0 - dev: false /file-uri-to-path@1.0.0: resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==} @@ -10005,33 +9878,7 @@ packages: /forever-agent@0.6.1: resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==} - - /fork-ts-checker-webpack-plugin@7.2.13(typescript@4.9.5)(webpack@5.75.0): - resolution: {integrity: sha512-fR3WRkOb4bQdWB/y7ssDUlVdrclvwtyCUIHCfivAoYxq9dF7XfrDKbMdZIfwJ7hxIAqkYSGeU7lLJE6xrxIBdg==} - engines: {node: '>=12.13.0', yarn: '>=1.0.0'} - peerDependencies: - typescript: '>3.6.0' - vue-template-compiler: '*' - webpack: ^5.11.0 - peerDependenciesMeta: - vue-template-compiler: - optional: true - dependencies: - '@babel/code-frame': 7.18.6 - chalk: 4.1.2 - chokidar: 3.5.3 - cosmiconfig: 7.1.0 - deepmerge: 4.3.0 - fs-extra: 10.1.0 - memfs: 3.4.13 - minimatch: 3.1.2 - node-abort-controller: 3.1.1 - schema-utils: 3.1.1 - semver: 7.3.8 - tapable: 2.2.1 - typescript: 4.9.5 - webpack: 5.75.0 - dev: false + dev: true /form-data@2.3.3: resolution: {integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==} @@ -10040,6 +9887,7 @@ packages: asynckit: 0.4.0 combined-stream: 1.0.8 mime-types: 2.1.35 + dev: true /form-data@4.0.0: resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} @@ -10121,6 +9969,15 @@ packages: jsonfile: 6.1.0 universalify: 2.0.0 + /fs-extra@8.1.0: + resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} + engines: {node: '>=6 <7 || >=8'} + dependencies: + graceful-fs: 4.2.10 + jsonfile: 4.0.0 + universalify: 0.1.2 + dev: false + /fs-extra@9.1.0: resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} engines: {node: '>=10'} @@ -10129,6 +9986,7 @@ packages: graceful-fs: 4.2.10 jsonfile: 6.1.0 universalify: 2.0.0 + dev: true /fs-minipass@2.1.0: resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} @@ -10137,10 +9995,6 @@ packages: minipass: 3.3.6 dev: true - /fs-monkey@1.0.3: - resolution: {integrity: sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==} - dev: false - /fs.realpath@1.0.0: resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} @@ -10171,6 +10025,12 @@ packages: resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} dev: true + /generic-names@4.0.0: + resolution: {integrity: sha512-ySFolZQfw9FoDb3ed9d80Cm9f0+r7qj+HJkWjeD9RBfpxEVTlVhol+gvaQB/78WbwYfbnNh8nWHHBSlg072y6A==} + dependencies: + loader-utils: 3.2.1 + dev: false + /gensync@1.0.0-beta.2: resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} engines: {node: '>=6.9.0'} @@ -10197,16 +10057,19 @@ packages: /get-package-type@0.1.0: resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} engines: {node: '>=8.0.0'} + dev: true /get-stream@5.2.0: resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} engines: {node: '>=8'} dependencies: pump: 3.0.0 + dev: true /get-stream@6.0.1: resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} engines: {node: '>=10'} + dev: true /get-symbol-description@1.0.0: resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} @@ -10224,11 +10087,13 @@ packages: resolution: {integrity: sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==} dependencies: async: 3.2.4 + dev: true /getpass@0.1.7: resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==} dependencies: assert-plus: 1.0.0 + dev: true /git-log-parser@1.2.0: resolution: {integrity: sha512-rnCVNfkTL8tdNryFuaY0fYiBWEBcgF748O6ZI61rslBvr2o7U65c2/6npCRqH40vuAhtgtDiqLTJjBVdrejCzA==} @@ -10267,7 +10132,6 @@ packages: /glob-to-regexp@0.4.1: resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} - dev: false /glob@7.1.4: resolution: {integrity: sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==} @@ -10323,6 +10187,7 @@ packages: engines: {node: '>=10'} dependencies: ini: 2.0.0 + dev: true /globals@11.12.0: resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} @@ -10344,6 +10209,20 @@ packages: resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==} dev: true + /globby@10.0.1: + resolution: {integrity: sha512-sSs4inE1FB2YQiymcmTv6NWENryABjUNPeWhOvmn4SjtKybglsyPZxFB3U1/+L1bYi0rNZDqCLlHyLYDl1Pq5A==} + engines: {node: '>=8'} + dependencies: + '@types/glob': 7.2.0 + array-union: 2.1.0 + dir-glob: 3.0.1 + fast-glob: 3.2.12 + glob: 7.2.3 + ignore: 5.2.4 + merge2: 1.4.1 + slash: 3.0.0 + dev: false + /globby@11.1.0: resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} engines: {node: '>=10'} @@ -10403,10 +10282,6 @@ packages: unicode-trie: 2.0.0 dev: false - /handle-thing@2.0.1: - resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==} - dev: false - /handlebars@4.7.7: resolution: {integrity: sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==} engines: {node: '>=0.4.7'} @@ -10427,6 +10302,7 @@ packages: /harmony-reflect@1.6.2: resolution: {integrity: sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==} + dev: true /has-bigints@1.0.2: resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} @@ -10486,7 +10362,6 @@ packages: /he@1.2.0: resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} hasBin: true - dev: false /hmac-drbg@1.0.1: resolution: {integrity: sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==} @@ -10525,15 +10400,6 @@ packages: lru-cache: 7.18.3 dev: true - /hpack.js@2.1.6: - resolution: {integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==} - dependencies: - inherits: 2.0.4 - obuf: 1.1.2 - readable-stream: 2.3.8 - wbuf: 1.7.3 - dev: false - /html-encoding-sniffer@3.0.0: resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==} engines: {node: '>=12'} @@ -10541,12 +10407,9 @@ packages: whatwg-encoding: 2.0.0 dev: true - /html-entities@2.3.3: - resolution: {integrity: sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==} - dev: false - /html-escaper@2.0.2: resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} + dev: true /html-tokenize@2.0.1: resolution: {integrity: sha512-QY6S+hZ0f5m1WT8WffYN+Hg+xm/w5I8XeUcAq/ZYP5wVC8xbKi4Whhru3FtrAebD5EhBW8rmFzkDI6eCAuFe2w==} @@ -10559,20 +10422,6 @@ packages: through2: 0.4.2 dev: false - /http-deceiver@1.2.7: - resolution: {integrity: sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==} - dev: false - - /http-errors@1.6.3: - resolution: {integrity: sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==} - engines: {node: '>= 0.6'} - dependencies: - depd: 1.1.2 - inherits: 2.0.3 - setprototypeof: 1.1.0 - statuses: 1.5.0 - dev: false - /http-errors@2.0.0: resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} engines: {node: '>= 0.8'} @@ -10584,10 +10433,6 @@ packages: toidentifier: 1.0.1 dev: false - /http-parser-js@0.5.8: - resolution: {integrity: sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==} - dev: false - /http-proxy-agent@5.0.0: resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==} engines: {node: '>= 6'} @@ -10599,7 +10444,7 @@ packages: - supports-color dev: true - /http-proxy-middleware@2.0.6(@types/express@4.17.17): + /http-proxy-middleware@2.0.6: resolution: {integrity: sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==} engines: {node: '>=12.0.0'} peerDependencies: @@ -10608,7 +10453,6 @@ packages: '@types/express': optional: true dependencies: - '@types/express': 4.17.17 '@types/http-proxy': 1.17.10 http-proxy: 1.18.1 is-glob: 4.0.3 @@ -10627,15 +10471,38 @@ packages: requires-port: 1.0.0 transitivePeerDependencies: - debug - dev: false - /http-signature@1.3.6: - resolution: {integrity: sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==} - engines: {node: '>=0.10'} - dependencies: + /http-server@14.1.1: + resolution: {integrity: sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==} + engines: {node: '>=12'} + hasBin: true + dependencies: + basic-auth: 2.0.1 + chalk: 4.1.2 + corser: 2.0.1 + he: 1.2.0 + html-encoding-sniffer: 3.0.0 + http-proxy: 1.18.1 + mime: 1.6.0 + minimist: 1.2.8 + opener: 1.5.2 + portfinder: 1.0.32 + secure-compare: 3.0.1 + union: 0.5.0 + url-join: 4.0.1 + transitivePeerDependencies: + - debug + - supports-color + dev: true + + /http-signature@1.3.6: + resolution: {integrity: sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==} + engines: {node: '>=0.10'} + dependencies: assert-plus: 1.0.0 jsprim: 2.0.2 sshpk: 1.17.0 + dev: true /https-proxy-agent@5.0.1: resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} @@ -10650,10 +10517,12 @@ packages: /human-signals@1.1.1: resolution: {integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==} engines: {node: '>=8.12.0'} + dev: true /human-signals@2.1.0: resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} engines: {node: '>=10.17.0'} + dev: true /human-signals@3.0.1: resolution: {integrity: sha512-rQLskxnM/5OCldHo+wNXbpVgDn5A17CUoKX+7Sokwaknlq7CdSnphy0W39GU8dw59XiCXmFXDg4fRuckQRKewQ==} @@ -10678,6 +10547,11 @@ packages: engines: {node: '>=0.10.0'} dependencies: safer-buffer: 2.1.2 + dev: true + + /icss-replace-symbols@1.1.0: + resolution: {integrity: sha512-chIaY3Vh2mh2Q3RGXttaDIzeiPvaVXJ+C4DAh/w3c37SKZ/U6PGMmuicR2EQQp9bKG8zLMCl7I+PtIoOOPp8Gg==} + dev: false /icss-utils@5.1.0(postcss@8.4.21): resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} @@ -10693,6 +10567,7 @@ packages: engines: {node: '>=4'} dependencies: harmony-reflect: 1.6.2 + dev: true /ieee754@1.2.1: resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} @@ -10701,15 +10576,11 @@ packages: resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==} engines: {node: '>= 4'} - /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 - - /immutable@4.2.4: - resolution: {integrity: sha512-WDxL3Hheb1JkRN3sQkyujNlL/xRjAo3rJtaU5xeufUauG66JdMr32bLj4gF+vWl84DIA3Zxw7tiAjneYzRRw+w==} + /import-cwd@3.0.0: + resolution: {integrity: sha512-4pnzH16plW+hgvRECbDWpQl3cqtvSofHWh44met7ESfZ8UZOWWddm8hEyDTqREJ9RbYHY8gi8DqmaelApoOGMg==} + engines: {node: '>=8'} + dependencies: + import-from: 3.0.0 dev: false /import-fresh@3.3.0: @@ -10719,6 +10590,13 @@ packages: parent-module: 1.0.1 resolve-from: 4.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: false + /import-from@4.0.0: resolution: {integrity: sha512-P9J71vT5nLlDeV8FHs5nNxaLbrpfAV5cF5srvbZfpwpcJoM/xZR3hiv+q+SAnuSmuGbXMWud063iIMx/V/EWZQ==} engines: {node: '>=12.2'} @@ -10740,6 +10618,7 @@ packages: /indent-string@4.0.0: resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} engines: {node: '>=8'} + dev: true /indent-string@5.0.0: resolution: {integrity: sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==} @@ -10752,10 +10631,6 @@ packages: once: 1.4.0 wrappy: 1.0.2 - /inherits@2.0.3: - resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==} - dev: false - /inherits@2.0.4: resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} @@ -10766,6 +10641,7 @@ packages: /ini@2.0.0: resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==} engines: {node: '>=10'} + dev: true /internal-slot@1.0.5: resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==} @@ -10795,11 +10671,6 @@ packages: engines: {node: '>= 0.10'} dev: false - /ipaddr.js@2.0.1: - resolution: {integrity: sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==} - engines: {node: '>= 10'} - dev: false - /is-arguments@1.1.1: resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} engines: {node: '>= 0.4'} @@ -10843,6 +10714,13 @@ packages: resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==} dev: false + /is-builtin-module@3.2.1: + resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==} + engines: {node: '>=6'} + dependencies: + builtin-modules: 3.3.0 + dev: false + /is-callable@1.2.7: resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} engines: {node: '>= 0.4'} @@ -10853,6 +10731,7 @@ packages: hasBin: true dependencies: ci-info: 3.8.0 + dev: true /is-core-module@2.11.0: resolution: {integrity: sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==} @@ -10882,6 +10761,7 @@ packages: /is-generator-fn@2.1.0: resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==} engines: {node: '>=6'} + dev: true /is-glob@4.0.3: resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} @@ -10895,11 +10775,16 @@ packages: dependencies: global-dirs: 3.0.1 is-path-inside: 3.0.3 + dev: true /is-map@2.0.2: resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==} dev: true + /is-module@1.0.0: + resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==} + dev: false + /is-negative-zero@2.0.2: resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} engines: {node: '>= 0.4'} @@ -10929,6 +10814,7 @@ packages: /is-path-inside@3.0.3: resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} engines: {node: '>=8'} + dev: true /is-plain-obj@1.1.0: resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} @@ -10952,6 +10838,11 @@ packages: isobject: 3.0.1 dev: false + /is-plain-object@3.0.1: + resolution: {integrity: sha512-Xnpx182SBMrr/aBik8y+GuR4U1L9FqMSojwDQwPMmxyC6bvEqly9UBCxhauBF5vNh2gwWJNX6oDV7O+OM4z34g==} + engines: {node: '>=0.10.0'} + dev: false + /is-plain-object@5.0.0: resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} engines: {node: '>=0.10.0'} @@ -10961,6 +10852,12 @@ packages: resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} dev: true + /is-reference@1.2.1: + resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==} + dependencies: + '@types/estree': 1.0.0 + dev: false + /is-regex@1.1.4: resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} engines: {node: '>= 0.4'} @@ -10982,6 +10879,7 @@ packages: /is-stream@2.0.1: resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} engines: {node: '>=8'} + dev: true /is-stream@3.0.0: resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} @@ -11022,6 +10920,7 @@ packages: /is-typedarray@1.0.0: resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} + dev: true /is-unicode-supported@0.1.0: resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} @@ -11049,9 +10948,6 @@ packages: get-intrinsic: 1.2.0 dev: true - /is-what@3.14.1: - resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==} - /is-wsl@2.2.0: resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} engines: {node: '>=8'} @@ -11087,6 +10983,7 @@ packages: /isstream@0.1.2: resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==} + dev: true /issue-parser@6.0.0: resolution: {integrity: sha512-zKa/Dxq2lGsBIXQ7CUZWTHfvxPC2ej0KfO7fIPqLlHB9J2hJ7rGhZ5rilhuufylr4RXYPzJUeFjKxz305OsNlA==} @@ -11102,6 +10999,7 @@ packages: /istanbul-lib-coverage@3.2.0: resolution: {integrity: sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==} engines: {node: '>=8'} + dev: true /istanbul-lib-instrument@5.2.1: resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} @@ -11114,6 +11012,7 @@ packages: semver: 6.3.0 transitivePeerDependencies: - supports-color + dev: true /istanbul-lib-report@3.0.0: resolution: {integrity: sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==} @@ -11122,6 +11021,7 @@ packages: istanbul-lib-coverage: 3.2.0 make-dir: 3.1.0 supports-color: 7.2.0 + dev: true /istanbul-lib-source-maps@4.0.1: resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==} @@ -11132,6 +11032,7 @@ packages: source-map: 0.6.1 transitivePeerDependencies: - supports-color + dev: true /istanbul-reports@3.1.5: resolution: {integrity: sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==} @@ -11139,6 +11040,7 @@ packages: dependencies: html-escaper: 2.0.2 istanbul-lib-report: 3.0.0 + dev: true /jake@10.8.5: resolution: {integrity: sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==} @@ -11188,6 +11090,7 @@ packages: stack-utils: 2.0.6 transitivePeerDependencies: - supports-color + dev: true /jest-circus@29.4.3: resolution: {integrity: sha512-Vw/bVvcexmdJ7MLmgdT3ZjkJ3LKu8IlpefYokxiqoZy6OCQ2VAm6Vk3t/qHiAGUXbdbJKJWnc8gH3ypTbB/OBw==} @@ -11282,6 +11185,7 @@ packages: ts-node: 10.9.1(@types/node@18.14.2)(typescript@4.9.5) transitivePeerDependencies: - supports-color + dev: true /jest-config@29.4.3(@types/node@18.14.2)(ts-node@10.9.1): resolution: {integrity: sha512-eCIpqhGnIjdUCXGtLhz4gdDoxKSWXKjzNcc5r+0S1GKOp2fwOipx5mRcwa9GB/ArsxJ1jlj2lmlD9bZAsBxaWQ==} @@ -11331,6 +11235,7 @@ packages: diff-sequences: 28.1.1 jest-get-type: 28.0.2 pretty-format: 28.1.3 + dev: true /jest-diff@29.4.3: resolution: {integrity: sha512-YB+ocenx7FZ3T5O9lMVMeLYV4265socJKtkwgk/6YUz/VsEzYDkiMuMhWzZmxm3wDRQvayJu/PjkjjSkjoHsCA==} @@ -11347,6 +11252,7 @@ packages: engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: detect-newline: 3.1.0 + dev: true /jest-docblock@29.4.3: resolution: {integrity: sha512-fzdTftThczeSD9nZ3fzA/4KkHtnmllawWrXO69vtI+L9WjEIuXWs4AmyME7lN5hU7dB0sHhuPfcKofRsUb/2Fg==} @@ -11364,6 +11270,7 @@ packages: jest-get-type: 28.0.2 jest-util: 28.1.3 pretty-format: 28.1.3 + dev: true /jest-each@29.4.3: resolution: {integrity: sha512-1ElHNAnKcbJb/b+L+7j0/w7bDvljw4gTv1wL9fYOczeJrbTbkMGQ5iQPFJ3eFQH19VPTx1IyfePdqSpePKss7Q==} @@ -11409,6 +11316,7 @@ packages: '@types/node': 18.14.2 jest-mock: 28.1.3 jest-util: 28.1.3 + dev: true /jest-environment-node@29.4.3: resolution: {integrity: sha512-gAiEnSKF104fsGDXNkwk49jD/0N0Bqu2K9+aMQXA6avzsA9H3Fiv1PW2D+gzbOSR705bWd2wJZRFEFpV0tXISg==} @@ -11425,6 +11333,7 @@ packages: /jest-get-type@28.0.2: resolution: {integrity: sha512-ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dev: true /jest-get-type@29.4.3: resolution: {integrity: sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==} @@ -11448,6 +11357,7 @@ packages: walker: 1.0.8 optionalDependencies: fsevents: 2.3.2 + dev: true /jest-haste-map@29.4.3: resolution: {integrity: sha512-eZIgAS8tvm5IZMtKlR8Y+feEOMfo2pSQkmNbufdbMzMSn9nitgGxF1waM/+LbryO3OkMcKS98SUb+j/cQxp/vQ==} @@ -11474,6 +11384,7 @@ packages: dependencies: jest-get-type: 28.0.2 pretty-format: 28.1.3 + dev: true /jest-leak-detector@29.4.3: resolution: {integrity: sha512-9yw4VC1v2NspMMeV3daQ1yXPNxMgCzwq9BocCwYrRgXe4uaEJPAN0ZK37nFBhcy3cUwEVstFecFLaTHpF7NiGA==} @@ -11491,6 +11402,7 @@ packages: jest-diff: 28.1.3 jest-get-type: 28.0.2 pretty-format: 28.1.3 + dev: true /jest-matcher-utils@29.4.3: resolution: {integrity: sha512-TTciiXEONycZ03h6R6pYiZlSkvYgT0l8aa49z/DLSGYjex4orMUcafuLXYyyEDWB1RKglq00jzwY00Ei7yFNVg==} @@ -11515,6 +11427,7 @@ packages: pretty-format: 28.1.3 slash: 3.0.0 stack-utils: 2.0.6 + dev: true /jest-message-util@29.4.3: resolution: {integrity: sha512-1Y8Zd4ZCN7o/QnWdMmT76If8LuDv23Z1DRovBj/vcSFNlGCJGoO8D1nJDw1AdyAGUk0myDLFGN5RbNeJyCRGCw==} @@ -11537,6 +11450,7 @@ packages: dependencies: '@jest/types': 28.1.3 '@types/node': 18.14.2 + dev: true /jest-mock@29.4.3: resolution: {integrity: sha512-LjFgMg+xed9BdkPMyIJh+r3KeHt1klXPJYBULXVVAkbTaaKjPX1o1uVCAZADMEp/kOxGTwy/Ot8XbvgItOrHEg==} @@ -11557,6 +11471,7 @@ packages: optional: true dependencies: jest-resolve: 28.1.1 + dev: true /jest-pnp-resolver@1.2.3(jest-resolve@28.1.3): resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} @@ -11568,6 +11483,7 @@ packages: optional: true dependencies: jest-resolve: 28.1.3 + dev: true /jest-pnp-resolver@1.2.3(jest-resolve@29.4.3): resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} @@ -11584,6 +11500,7 @@ packages: /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} + dev: true /jest-regex-util@29.4.3: resolution: {integrity: sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==} @@ -11613,6 +11530,7 @@ packages: resolve: 1.22.1 resolve.exports: 1.1.0 slash: 3.0.0 + dev: true /jest-resolve@28.1.3: resolution: {integrity: sha512-Z1W3tTjE6QaNI90qo/BJpfnvpxtaFTFw5CDgwpyE/Kz8U/06N1Hjf4ia9quUhCh39qIGWF1ZuxFiBiJQwSEYKQ==} @@ -11627,6 +11545,7 @@ packages: resolve: 1.22.1 resolve.exports: 1.1.0 slash: 3.0.0 + dev: true /jest-resolve@29.4.3: resolution: {integrity: sha512-GPokE1tzguRyT7dkxBim4wSx6E45S3bOQ7ZdKEG+Qj0Oac9+6AwJPCk0TZh5Vu0xzeX4afpb+eDmgbmZFFwpOw==} @@ -11670,6 +11589,7 @@ packages: source-map-support: 0.5.13 transitivePeerDependencies: - supports-color + dev: true /jest-runner@29.4.3: resolution: {integrity: sha512-GWPTEiGmtHZv1KKeWlTX9SIFuK19uLXlRQU43ceOQ2hIfA5yPEJC7AMkvFKpdCHx6pNEdOD+2+8zbniEi3v3gA==} @@ -11728,6 +11648,7 @@ packages: strip-bom: 4.0.0 transitivePeerDependencies: - supports-color + dev: true /jest-runtime@29.4.3: resolution: {integrity: sha512-F5bHvxSH+LvLV24vVB3L8K467dt3y3dio6V3W89dUz9nzvTpqd/HcT9zfYKL2aZPvD63vQFgLvaUX/UpUhrP6Q==} @@ -11788,6 +11709,7 @@ packages: semver: 7.3.8 transitivePeerDependencies: - supports-color + dev: true /jest-snapshot@29.4.3: resolution: {integrity: sha512-NGlsqL0jLPDW91dz304QTM/SNO99lpcSYYAjNiX0Ou+sSGgkanKBcSjCfp/pqmiiO1nQaOyLp6XQddAzRcx3Xw==} @@ -11831,6 +11753,7 @@ packages: ci-info: 3.8.0 graceful-fs: 4.2.10 picomatch: 2.3.1 + dev: true /jest-util@28.1.3: resolution: {integrity: sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==} @@ -11842,6 +11765,7 @@ packages: ci-info: 3.8.0 graceful-fs: 4.2.10 picomatch: 2.3.1 + dev: true /jest-util@29.4.3: resolution: {integrity: sha512-ToSGORAz4SSSoqxDSylWX8JzkOQR7zoBtNRsA7e+1WUX5F8jrOwaNpuh1YfJHJKDHXLHmObv5eOjejUd+/Ws+Q==} @@ -11865,6 +11789,7 @@ packages: jest-get-type: 28.0.2 leven: 3.1.0 pretty-format: 28.1.3 + dev: true /jest-validate@29.4.3: resolution: {integrity: sha512-J3u5v7aPQoXPzaar6GndAVhdQcZr/3osWSgTeKg5v574I9ybX/dTyH0AJFb5XgXIB7faVhf+rS7t4p3lL9qFaw==} @@ -11890,6 +11815,7 @@ packages: emittery: 0.10.2 jest-util: 28.1.3 string-length: 4.0.2 + dev: true /jest-watcher@29.4.3: resolution: {integrity: sha512-zwlXH3DN3iksoIZNk73etl1HzKyi5FuQdYLnkQKm5BW4n8HpoG59xSwpVdFrnh60iRRaRBGw0gcymIxjJENPcA==} @@ -11912,7 +11838,6 @@ packages: '@types/node': 18.14.2 merge-stream: 2.0.0 supports-color: 8.1.1 - dev: false /jest-worker@28.1.3: resolution: {integrity: sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==} @@ -11921,6 +11846,7 @@ packages: '@types/node': 18.14.2 merge-stream: 2.0.0 supports-color: 8.1.1 + dev: true /jest-worker@29.4.3: resolution: {integrity: sha512-GLHN/GTAAMEy5BFdvpUfzr9Dr80zQqBrh0fz1mtRMe05hqP45+HfQltu7oTBfduD0UeZs09d+maFtFYAXFWvAA==} @@ -12018,6 +11944,7 @@ packages: /jsbn@0.1.1: resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==} + dev: true /jsdom@20.0.3: resolution: {integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==} @@ -12084,12 +12011,14 @@ packages: /json-schema@0.4.0: resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==} + dev: true /json-stable-stringify-without-jsonify@1.0.1: resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} /json-stringify-safe@5.0.1: resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==} + dev: true /json5@1.0.2: resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} @@ -12106,6 +12035,12 @@ packages: /jsonc-parser@3.2.0: resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==} + /jsonfile@4.0.0: + resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} + optionalDependencies: + graceful-fs: 4.2.10 + dev: false + /jsonfile@6.1.0: resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} dependencies: @@ -12126,6 +12061,7 @@ packages: extsprintf: 1.3.0 json-schema: 0.4.0 verror: 1.10.0 + dev: true /jsx-ast-utils@3.3.3: resolution: {integrity: sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==} @@ -12148,11 +12084,6 @@ packages: engines: {node: '>=6'} dev: true - /klona@2.0.6: - resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==} - engines: {node: '>= 8'} - dev: false - /language-subtag-registry@0.3.22: resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==} dev: true @@ -12166,41 +12097,12 @@ packages: /lazy-ass@1.6.0: resolution: {integrity: sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==} engines: {node: '> 0.8'} - - /less-loader@11.1.0(less@4.1.3)(webpack@5.75.0): - resolution: {integrity: sha512-C+uDBV7kS7W5fJlUjq5mPBeBVhYpTIm5gB09APT9o3n/ILeaXVsiSFTbZpTJCJwQ/Crczfn3DmfQFwxYusWFug==} - engines: {node: '>= 14.15.0'} - peerDependencies: - less: ^3.5.0 || ^4.0.0 - webpack: ^5.0.0 - dependencies: - klona: 2.0.6 - less: 4.1.3 - webpack: 5.75.0 - dev: false - - /less@4.1.3: - resolution: {integrity: sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA==} - engines: {node: '>=6'} - hasBin: true - dependencies: - copy-anything: 2.0.6 - parse-node-version: 1.0.1 - tslib: 2.5.0 - optionalDependencies: - errno: 0.1.8 - graceful-fs: 4.2.10 - image-size: 0.5.5 - make-dir: 2.1.0 - mime: 1.6.0 - needle: 3.2.0 - source-map: 0.6.1 - transitivePeerDependencies: - - supports-color + dev: true /leven@3.1.0: resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} engines: {node: '>=6'} + dev: true /levn@0.3.0: resolution: {integrity: sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==} @@ -12227,20 +12129,6 @@ packages: resolution: {integrity: sha512-WPfJ7sS53I2s4iM58QxY3Inb83/6mjlYgcmZs7DJsvDlnmVUwNinBCi5vBT43P6bHRy01O4zsMU2CoVR6xJ40A==} dev: false - /license-webpack-plugin@4.0.2(webpack@5.75.0): - resolution: {integrity: sha512-771TFWFD70G1wLTC4oU2Cw4qvtmNrIw+wRvBtn+okgHl7slJVi7zfNcdmqDL72BojM30VNJ2UHylr1o77U37Jw==} - peerDependencies: - webpack: '*' - peerDependenciesMeta: - webpack: - optional: true - webpack-sources: - optional: true - dependencies: - webpack: 5.75.0 - webpack-sources: 3.2.3 - dev: false - /lilconfig@2.1.0: resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} engines: {node: '>=10'} @@ -12271,6 +12159,7 @@ packages: rxjs: 7.8.0 through: 2.3.8 wrap-ansi: 7.0.0 + dev: true /load-json-file@4.0.0: resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==} @@ -12285,7 +12174,6 @@ packages: /loader-runner@4.3.0: resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==} engines: {node: '>=6.11.5'} - dev: false /loader-utils@2.0.4: resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==} @@ -12294,6 +12182,10 @@ packages: big.js: 5.2.2 emojis-list: 3.0.0 json5: 2.2.3 + + /loader-utils@3.2.1: + resolution: {integrity: sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==} + engines: {node: '>= 12.13.0'} dev: false /local-pkg@0.4.3: @@ -12334,7 +12226,6 @@ packages: /lodash.camelcase@4.3.0: resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==} - dev: true /lodash.capitalize@4.2.1: resolution: {integrity: sha512-kZzYOKspf8XVX5AvmQF94gQW0lejFVgb80G85bU4ZWzoJ6C03PQg3coYAUpSTpQWelrZELd3XWgHzw4Ck5kaIw==} @@ -12382,6 +12273,7 @@ packages: /lodash.once@4.1.1: resolution: {integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==} + dev: true /lodash.snakecase@4.1.1: resolution: {integrity: sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==} @@ -12420,6 +12312,7 @@ packages: cli-cursor: 3.1.0 slice-ansi: 4.0.0 wrap-ansi: 6.2.0 + dev: true /long@4.0.0: resolution: {integrity: sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==} @@ -12461,6 +12354,12 @@ packages: hasBin: true dev: true + /magic-string@0.25.9: + resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==} + dependencies: + sourcemap-codec: 1.4.8 + dev: false + /magic-string@0.27.0: resolution: {integrity: sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==} engines: {node: '>=12'} @@ -12468,15 +12367,6 @@ packages: '@jridgewell/sourcemap-codec': 1.4.14 dev: true - /make-dir@2.1.0: - resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} - engines: {node: '>=6'} - requiresBuild: true - dependencies: - pify: 4.0.1 - semver: 5.7.1 - optional: true - /make-dir@3.1.0: resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} engines: {node: '>=8'} @@ -12490,6 +12380,7 @@ packages: resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==} dependencies: tmpl: 1.0.5 + dev: true /map-obj@1.0.1: resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} @@ -12540,20 +12431,12 @@ packages: /mdn-data@2.0.14: resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==} - dev: false /media-typer@0.3.0: resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} engines: {node: '>= 0.6'} dev: false - /memfs@3.4.13: - resolution: {integrity: sha512-omTM41g3Skpvx5dSYeZIbXKcXoAVc/AoMNwn9TKx++L/gaen/+4TTttmu8ZSch5vfVJ8uJvGbroTsIlslRg6lg==} - engines: {node: '>= 4.0.0'} - dependencies: - fs-monkey: 1.0.3 - dev: false - /memoize-one@6.0.0: resolution: {integrity: sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==} dev: false @@ -12633,14 +12516,9 @@ packages: engines: {node: '>=4'} dev: true - /mini-css-extract-plugin@2.4.7(webpack@5.75.0): - resolution: {integrity: sha512-euWmddf0sk9Nv1O0gfeeUAvAkoSlWncNLF77C0TP2+WoPvy8mAHKOzMajcCz2dzvyt3CNgxb1obIEVFIRxaipg==} - engines: {node: '>= 12.13.0'} - peerDependencies: - webpack: ^5.0.0 - dependencies: - schema-utils: 4.0.0 - webpack: 5.75.0 + /mini-svg-data-uri@1.4.4: + resolution: {integrity: sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==} + hasBin: true dev: false /minimalistic-assert@1.0.1: @@ -12705,10 +12583,18 @@ packages: resolution: {integrity: sha512-fL9KxsQz9BJB2KGPMHFrReioywkiomBiuaLk6EuChijK0BsJsIKJXdVomR+/bPj5mvbFD6wM0CM3bZio9g7OHA==} dev: false + /mkdirp@0.5.6: + resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} + hasBin: true + dependencies: + minimist: 1.2.8 + dev: true + /mkdirp@1.0.4: resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} engines: {node: '>=10'} hasBin: true + dev: true /mocha@10.2.0: resolution: {integrity: sha512-IDY7fl/BecMwFHzoqF2sg/SHHANeBoMMXFlS9r0OXKDssYE1M5O43wUY/9BVPeIvfH2zmEbBfseqN9gBQZzXkg==} @@ -12750,6 +12636,7 @@ packages: /ms@2.0.0: resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} + dev: false /ms@2.1.2: resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} @@ -12758,14 +12645,6 @@ packages: resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} dev: false - /multicast-dns@7.2.5: - resolution: {integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==} - hasBin: true - dependencies: - dns-packet: 5.4.0 - thunky: 1.1.0 - dev: false - /multiformats@9.9.0: resolution: {integrity: sha512-HoMUjhH9T8DDBNT+6xzkrd9ga/XiBI4xLr58LJACwK6G3HTOPeMz4nB4KJs33L2BelrIJa7P0VuNaVF3hMYfjg==} dev: false @@ -12799,19 +12678,6 @@ packages: /natural-compare@1.4.0: resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} - /needle@3.2.0: - resolution: {integrity: sha512-oUvzXnyLiVyVGoianLijF9O/RecZUf7TkBfimjGrLM4eQhXyeJwM6GeAWccwfQ9aa4gMCZKqhAOuLaMIcQxajQ==} - engines: {node: '>= 4.4.x'} - hasBin: true - requiresBuild: true - dependencies: - 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: resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} engines: {node: '>= 0.6'} @@ -12871,10 +12737,6 @@ packages: - babel-plugin-macros dev: false - /node-abort-controller@3.1.1: - resolution: {integrity: sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==} - dev: false - /node-addon-api@3.2.1: resolution: {integrity: sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==} @@ -12896,17 +12758,13 @@ packages: whatwg-url: 5.0.0 dev: true - /node-forge@1.3.1: - resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==} - engines: {node: '>= 6.13.0'} - dev: false - /node-gyp-build@4.6.0: resolution: {integrity: sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ==} hasBin: true /node-int64@0.4.0: resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} + dev: true /node-machine-id@1.1.12: resolution: {integrity: sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==} @@ -13044,75 +12902,13 @@ packages: resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} dependencies: boolbase: 1.0.0 - dev: false /nwsapi@2.2.2: resolution: {integrity: sha512-90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw==} dev: true - /nx@15.7.2: - resolution: {integrity: sha512-VRb+CZCji3G4ikdMAGoh6TeU9Q6n5atRwqRSFhUX63er8zhlMvWHLskPMZC4q/81edo/E7RhbmEVUD5MB0JoeA==} - hasBin: true - requiresBuild: true - peerDependencies: - '@swc-node/register': ^1.4.2 - '@swc/core': ^1.2.173 - peerDependenciesMeta: - '@swc-node/register': - optional: true - '@swc/core': - optional: true - dependencies: - '@nrwl/cli': 15.7.2 - '@nrwl/tao': 15.7.2 - '@parcel/watcher': 2.0.4 - '@yarnpkg/lockfile': 1.1.0 - '@yarnpkg/parsers': 3.0.0-rc.39 - '@zkochan/js-yaml': 0.0.6 - axios: 1.3.4 - chalk: 4.1.2 - cli-cursor: 3.1.0 - cli-spinners: 2.6.1 - cliui: 7.0.4 - dotenv: 10.0.0 - enquirer: 2.3.6 - fast-glob: 3.2.7 - figures: 3.2.0 - flat: 5.0.2 - fs-extra: 11.1.0 - glob: 7.1.4 - ignore: 5.2.4 - js-yaml: 4.1.0 - jsonc-parser: 3.2.0 - lines-and-columns: 2.0.3 - minimatch: 3.0.5 - npm-run-path: 4.0.1 - open: 8.4.2 - semver: 7.3.4 - string-width: 4.2.3 - strong-log-transformer: 2.1.0 - tar-stream: 2.2.0 - tmp: 0.2.1 - tsconfig-paths: 4.1.2 - tslib: 2.5.0 - v8-compile-cache: 2.3.0 - yargs: 17.7.1 - yargs-parser: 21.1.1 - optionalDependencies: - '@nrwl/nx-darwin-arm64': 15.7.2 - '@nrwl/nx-darwin-x64': 15.7.2 - '@nrwl/nx-linux-arm-gnueabihf': 15.7.2 - '@nrwl/nx-linux-arm64-gnu': 15.7.2 - '@nrwl/nx-linux-arm64-musl': 15.7.2 - '@nrwl/nx-linux-x64-gnu': 15.7.2 - '@nrwl/nx-linux-x64-musl': 15.7.2 - '@nrwl/nx-win32-arm64-msvc': 15.7.2 - '@nrwl/nx-win32-x64-msvc': 15.7.2 - transitivePeerDependencies: - - debug - - /nx@15.8.5: - resolution: {integrity: sha512-1c6Y3rPSzzlqQVJPo33Ej0HY/3t9ykeaPs074HpYxXH0+GU1BSIv/9EfXKQGvmBzjs5yAx6asGIv+H3QDrFt3A==} + /nx@15.9.2: + resolution: {integrity: sha512-wtcs+wsuplSckvgk+bV+/XuGlo+sVWzSG0RpgWBjQYeqA3QsVFEAPVY66Z5cSoukDbTV77ddcAjEw+Rz8oOR1A==} hasBin: true requiresBuild: true peerDependencies: @@ -13124,8 +12920,8 @@ packages: '@swc/core': optional: true dependencies: - '@nrwl/cli': 15.8.5 - '@nrwl/tao': 15.8.5 + '@nrwl/cli': 15.9.2 + '@nrwl/tao': 15.9.2 '@parcel/watcher': 2.0.4 '@yarnpkg/lockfile': 1.1.0 '@yarnpkg/parsers': 3.0.0-rc.39 @@ -13160,15 +12956,15 @@ packages: yargs: 17.7.1 yargs-parser: 21.1.1 optionalDependencies: - '@nrwl/nx-darwin-arm64': 15.8.5 - '@nrwl/nx-darwin-x64': 15.8.5 - '@nrwl/nx-linux-arm-gnueabihf': 15.8.5 - '@nrwl/nx-linux-arm64-gnu': 15.8.5 - '@nrwl/nx-linux-arm64-musl': 15.8.5 - '@nrwl/nx-linux-x64-gnu': 15.8.5 - '@nrwl/nx-linux-x64-musl': 15.8.5 - '@nrwl/nx-win32-arm64-msvc': 15.8.5 - '@nrwl/nx-win32-x64-msvc': 15.8.5 + '@nrwl/nx-darwin-arm64': 15.9.2 + '@nrwl/nx-darwin-x64': 15.9.2 + '@nrwl/nx-linux-arm-gnueabihf': 15.9.2 + '@nrwl/nx-linux-arm64-gnu': 15.9.2 + '@nrwl/nx-linux-arm64-musl': 15.9.2 + '@nrwl/nx-linux-x64-gnu': 15.9.2 + '@nrwl/nx-linux-x64-musl': 15.9.2 + '@nrwl/nx-win32-arm64-msvc': 15.9.2 + '@nrwl/nx-win32-x64-msvc': 15.9.2 transitivePeerDependencies: - debug @@ -13239,10 +13035,6 @@ packages: es-abstract: 1.21.1 dev: true - /obuf@1.1.2: - resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==} - dev: false - /on-exit-leak-free@0.2.0: resolution: {integrity: sha512-dqaz3u44QbRXQooZLTUKU41ZrzYrcvLISVgbrzbyCMxpmSLJvZ3ZamIJIZ29P6OhZIkNIQKosdeM6t1LYbA9hg==} dev: false @@ -13254,11 +13046,6 @@ packages: ee-first: 1.1.1 dev: false - /on-headers@1.0.2: - resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==} - engines: {node: '>= 0.8'} - dev: false - /once@1.4.0: resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} dependencies: @@ -13285,6 +13072,11 @@ packages: is-docker: 2.2.1 is-wsl: 2.2.0 + /opener@1.5.2: + resolution: {integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==} + hasBin: true + dev: true + /optionator@0.8.3: resolution: {integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==} engines: {node: '>= 0.8.0'} @@ -13327,6 +13119,7 @@ packages: /ospath@1.2.2: resolution: {integrity: sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==} + dev: true /p-each-series@3.0.0: resolution: {integrity: sha512-lastgtAdoH9YaLyDa5i5z64q+kzOcQHsQ5SsZJD3q0VEyI8mq872S3geuNbRUQLVAE9siMfgKrpj7MloKFHruw==} @@ -13340,6 +13133,11 @@ packages: p-map: 2.1.0 dev: true + /p-finally@1.0.0: + resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==} + engines: {node: '>=4'} + dev: false + /p-is-promise@3.0.0: resolution: {integrity: sha512-Wo8VsW4IRQSKVXsJCn7TomUaVtyfjVDn3nUP7kE967BQk0CwFpdbZs0X0uk5sW9mkBa9eNM7hCMaG93WUAwxYQ==} engines: {node: '>=8'} @@ -13407,6 +13205,15 @@ packages: engines: {node: '>=10'} dependencies: aggregate-error: 3.1.0 + dev: true + + /p-queue@6.6.2: + resolution: {integrity: sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==} + engines: {node: '>=8'} + dependencies: + eventemitter3: 4.0.7 + p-timeout: 3.2.0 + dev: false /p-reduce@2.1.0: resolution: {integrity: sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==} @@ -13424,6 +13231,14 @@ packages: dependencies: '@types/retry': 0.12.0 retry: 0.13.1 + dev: true + + /p-timeout@3.2.0: + resolution: {integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==} + engines: {node: '>=8'} + dependencies: + p-finally: 1.0.0 + dev: false /p-try@1.0.0: resolution: {integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==} @@ -13469,14 +13284,6 @@ packages: json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 - /parse-node-version@1.0.1: - resolution: {integrity: sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==} - engines: {node: '>= 0.10'} - - /parse5@4.0.0: - resolution: {integrity: sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==} - dev: false - /parse5@7.1.2: resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==} dependencies: @@ -13542,9 +13349,11 @@ packages: /pend@1.2.0: resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==} + dev: true /performance-now@2.1.0: resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==} + dev: true /picocolors@1.0.0: resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} @@ -13556,16 +13365,17 @@ packages: /pify@2.3.0: resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} engines: {node: '>=0.10.0'} + dev: true /pify@3.0.0: resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==} engines: {node: '>=4'} dev: true - /pify@4.0.1: - resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} - engines: {node: '>=6'} - optional: true + /pify@5.0.0: + resolution: {integrity: sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==} + engines: {node: '>=10'} + dev: false /pino-abstract-transport@0.5.0: resolution: {integrity: sha512-+KAgmVeqXYbTtU2FScx1XS3kNyfZ5TrXY07V96QnUSFqo2gAqlvmaxH67Lj7SWazqsMabf+58ctdTcBgnOLUOQ==} @@ -13598,6 +13408,7 @@ packages: /pirates@4.0.5: resolution: {integrity: sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==} engines: {node: '>= 6'} + dev: true /pkg-conf@2.1.0: resolution: {integrity: sha512-C+VUP+8jis7EsQZIhDYmS5qlNtjv2yP4SNtjXK9AP1ZcTRlnSfuumaTnRfYZnYgUUYVIKqL0fRvmUGDV2fmp6g==} @@ -13613,6 +13424,17 @@ packages: dependencies: find-up: 4.1.0 + /portfinder@1.0.32: + resolution: {integrity: sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==} + engines: {node: '>= 0.12.0'} + dependencies: + async: 2.6.4 + debug: 3.2.7(supports-color@8.1.1) + mkdirp: 0.5.6 + transitivePeerDependencies: + - supports-color + dev: true + /postcss-calc@8.2.4(postcss@8.4.21): resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==} peerDependencies: @@ -13683,30 +13505,22 @@ packages: postcss: 8.4.21 dev: false - /postcss-import@14.1.0(postcss@8.4.21): - resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==} - engines: {node: '>=10.0.0'} - peerDependencies: - postcss: ^8.0.0 - dependencies: - postcss: 8.4.21 - postcss-value-parser: 4.2.0 - read-cache: 1.0.0 - resolve: 1.22.1 - dev: false - - /postcss-loader@6.2.1(postcss@8.4.21)(webpack@5.75.0): - resolution: {integrity: sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==} - engines: {node: '>= 12.13.0'} + /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: - postcss: ^7.0.0 || ^8.0.1 - webpack: ^5.0.0 + postcss: '>=8.0.9' + ts-node: '>=9.0.0' + peerDependenciesMeta: + postcss: + optional: true + ts-node: + optional: true dependencies: - cosmiconfig: 7.1.0 - klona: 2.0.6 + lilconfig: 2.1.0 postcss: 8.4.21 - semver: 7.3.8 - webpack: 5.75.0 + ts-node: 10.9.1(@types/node@18.14.2)(typescript@4.9.5) + yaml: 1.10.2 dev: false /postcss-merge-longhand@5.1.7(postcss@8.4.21): @@ -13818,6 +13632,22 @@ packages: postcss: 8.4.21 dev: false + /postcss-modules@4.3.1(postcss@8.4.21): + resolution: {integrity: sha512-ItUhSUxBBdNamkT3KzIZwYNNRFKmkJrofvC2nWab3CPKhYBQ1f27XXh1PAPE27Psx58jeelPsxWB/+og+KEH0Q==} + peerDependencies: + postcss: ^8.0.0 + dependencies: + generic-names: 4.0.0 + icss-replace-symbols: 1.1.0 + lodash.camelcase: 4.3.0 + postcss: 8.4.21 + postcss-modules-extract-imports: 3.0.0(postcss@8.4.21) + postcss-modules-local-by-default: 4.0.0(postcss@8.4.21) + postcss-modules-scope: 3.0.0(postcss@8.4.21) + postcss-modules-values: 4.0.0(postcss@8.4.21) + string-hash: 1.1.3 + dev: false + /postcss-normalize-charset@5.1.0(postcss@8.4.21): resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==} engines: {node: ^10 || ^12 || >=14.0} @@ -14004,10 +13834,12 @@ packages: resolution: {integrity: sha512-vIS4Rlc2FNh0BySk3Wkd6xmwxB0FpOndW5fisM5H8hsZSxU2VWVB5CWIkIjWvrHjIhxk2g3bfMKM87zNTrZddw==} engines: {node: '>=10.13.0'} hasBin: true + dev: true /pretty-bytes@5.6.0: resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==} engines: {node: '>=6'} + dev: true /pretty-format@27.5.1: resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==} @@ -14026,6 +13858,7 @@ packages: ansi-regex: 5.0.1 ansi-styles: 5.2.0 react-is: 18.2.0 + dev: true /pretty-format@29.4.3: resolution: {integrity: sha512-cvpcHTc42lcsvOOAzd3XuNWTcvk1Jmnzqeu+WsOuiPmxUJTnkbAcFNsRKvEpBEUFVUgy/GTZLulZDcDEi+CIlA==} @@ -14043,6 +13876,11 @@ packages: resolution: {integrity: sha512-du4wfLyj4yCZq1VupnVSZmRsPJsNuxoDQFdCFHLaYiEbFBD7QE0a+I4D7hOxrVnh78QE/YipFAj9lXHiXocV+Q==} dev: false + /promise.series@0.2.0: + resolution: {integrity: sha512-VWQJyU2bcDTgZw8kpfBpB/ejZASlCrzwz5f2hjb/zlujOEB4oeiAhHygAWq8ubsX2GVkD4kCU5V2dwOTaCY5EQ==} + engines: {node: '>=0.12'} + dev: false + /prompts@2.4.2: resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} engines: {node: '>= 6'} @@ -14092,22 +13930,21 @@ packages: /proxy-from-env@1.0.0: resolution: {integrity: sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==} + dev: true /proxy-from-env@1.1.0: resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} - /prr@1.0.1: - resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==} - optional: true - /psl@1.9.0: resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==} + dev: true /pump@3.0.0: resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} dependencies: end-of-stream: 1.4.4 once: 1.4.0 + dev: true /punycode@2.3.0: resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==} @@ -14131,13 +13968,13 @@ packages: engines: {node: '>=0.6'} dependencies: side-channel: 1.0.4 + dev: true /qs@6.11.0: resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==} engines: {node: '>=0.6'} dependencies: side-channel: 1.0.4 - dev: false /query-string@7.1.1: resolution: {integrity: sha512-MplouLRDHBZSG9z7fpuAAcI7aAYjDLhtsiVZsevsfaHWDS2IDdORKbSd1kWUA+V4zyva/HZoSfpwnYMMQDhb0w==} @@ -14169,7 +14006,6 @@ packages: resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} dependencies: safe-buffer: 5.2.1 - dev: false /range-parser@1.2.1: resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} @@ -14254,6 +14090,7 @@ packages: /react-is@18.2.0: resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==} + dev: true /react-refresh@0.14.0: resolution: {integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==} @@ -14408,12 +14245,6 @@ packages: dependencies: loose-envify: 1.4.0 - /read-cache@1.0.0: - resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} - dependencies: - pify: 2.3.0 - dev: false - /read-pkg-up@7.0.1: resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} engines: {node: '>=8'} @@ -14571,6 +14402,7 @@ packages: resolution: {integrity: sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==} dependencies: throttleit: 1.0.0 + dev: true /require-directory@2.1.1: resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} @@ -14608,6 +14440,7 @@ packages: /resolve.exports@1.1.0: resolution: {integrity: sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==} engines: {node: '>=10'} + dev: true /resolve.exports@2.0.0: resolution: {integrity: sha512-6K/gDlqgQscOlg9fSRpWstA8sYe8rbELsSTNpx+3kTrsVCzvSl0zIvRErM7fdl9ERWDsKnrLnwB+Ne89918XOg==} @@ -14641,6 +14474,7 @@ packages: /retry@0.13.1: resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==} engines: {node: '>= 4'} + dev: true /reusify@1.0.4: resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} @@ -14648,6 +14482,7 @@ packages: /rfdc@1.3.0: resolution: {integrity: sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==} + dev: true /rimraf@3.0.2: resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} @@ -14662,13 +14497,76 @@ packages: inherits: 2.0.4 dev: false + /rollup-plugin-copy@3.4.0: + resolution: {integrity: sha512-rGUmYYsYsceRJRqLVlE9FivJMxJ7X6jDlP79fmFkL8sJs7VVMSVyA2yfyL+PGyO/vJs4A87hwhgVfz61njI+uQ==} + engines: {node: '>=8.3'} + dependencies: + '@types/fs-extra': 8.1.2 + colorette: 1.4.0 + fs-extra: 8.1.0 + globby: 10.0.1 + is-plain-object: 3.0.1 + dev: false + + /rollup-plugin-peer-deps-external@2.2.4(rollup@2.79.1): + resolution: {integrity: sha512-AWdukIM1+k5JDdAqV/Cxd+nejvno2FVLVeZ74NKggm3Q5s9cbbcOgUPGdbxPi4BXu7xGaZ8HG12F+thImYu/0g==} + peerDependencies: + rollup: '*' + dependencies: + rollup: 2.79.1 + dev: false + + /rollup-plugin-postcss@4.0.2(postcss@8.4.21)(ts-node@10.9.1): + resolution: {integrity: sha512-05EaY6zvZdmvPUDi3uCcAQoESDcYnv8ogJJQRp6V5kZ6J6P7uAVJlrTZcaaA20wTH527YTnKfkAoPxWI/jPp4w==} + engines: {node: '>=10'} + peerDependencies: + postcss: 8.x + dependencies: + chalk: 4.1.2 + concat-with-sourcemaps: 1.1.0 + cssnano: 5.1.15(postcss@8.4.21) + import-cwd: 3.0.0 + p-queue: 6.6.2 + pify: 5.0.0 + postcss: 8.4.21 + postcss-load-config: 3.1.4(postcss@8.4.21)(ts-node@10.9.1) + postcss-modules: 4.3.1(postcss@8.4.21) + promise.series: 0.2.0 + resolve: 1.22.1 + rollup-pluginutils: 2.8.2 + safe-identifier: 0.4.2 + style-inject: 0.3.0 + transitivePeerDependencies: + - ts-node + dev: false + + /rollup-plugin-typescript2@0.34.1(rollup@2.79.1)(typescript@4.9.5): + resolution: {integrity: sha512-P4cHLtGikESmqi1CA+tdMDUv8WbQV48mzPYt77TSTOPJpERyZ9TXdDgjSDix8Fkqce6soYz3+fa4lrC93IEkcw==} + peerDependencies: + rollup: '>=1.26.3' + typescript: '>=2.4.0' + dependencies: + '@rollup/pluginutils': 4.2.1 + find-cache-dir: 3.3.2 + fs-extra: 10.1.0 + rollup: 2.79.1 + semver: 7.3.8 + tslib: 2.5.0 + typescript: 4.9.5 + dev: false + + /rollup-pluginutils@2.8.2: + resolution: {integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==} + dependencies: + estree-walker: 0.6.1 + dev: false + /rollup@2.79.1: resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==} engines: {node: '>=10.0.0'} hasBin: true optionalDependencies: fsevents: 2.3.2 - dev: true /rollup@3.17.2: resolution: {integrity: sha512-qMNZdlQPCkWodrAZ3qnJtvCAl4vpQ8q77uEujVCCbC/6CLB7Lcmvjq7HyiOSnf4fxTT9XgsE36oLHJBH49xjqA==} @@ -14693,6 +14591,7 @@ packages: resolution: {integrity: sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==} dependencies: tslib: 2.5.0 + dev: true /safe-buffer@5.1.2: resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} @@ -14700,6 +14599,10 @@ packages: /safe-buffer@5.2.1: resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + /safe-identifier@0.4.2: + resolution: {integrity: sha512-6pNbSMW6OhAi9j+N8V+U715yBQsaWJ7eyEUaOrawX+isg5ZxhUlV1NipNtgaKHmFGiABwt+ZF04Ii+3Xjkg+8w==} + dev: false + /safe-json-utils@1.1.1: resolution: {integrity: sha512-SAJWGKDs50tAbiDXLf89PDwt9XYkWyANFWVzn4dTXl5QyI8t2o/bW5/OJl3lvc2WVU4MEpTo9Yz5NVFNsp+OJQ==} dev: false @@ -14720,44 +14623,6 @@ packages: /safer-buffer@2.1.2: resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} - /sass-loader@12.6.0(sass@1.58.3)(webpack@5.75.0): - resolution: {integrity: sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==} - engines: {node: '>= 12.13.0'} - peerDependencies: - fibers: '>= 3.1.0' - node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 - sass: ^1.3.0 - sass-embedded: '*' - webpack: ^5.0.0 - peerDependenciesMeta: - fibers: - optional: true - node-sass: - optional: true - sass: - optional: true - sass-embedded: - optional: true - dependencies: - klona: 2.0.6 - neo-async: 2.6.2 - sass: 1.58.3 - webpack: 5.75.0 - dev: false - - /sass@1.58.3: - resolution: {integrity: sha512-Q7RaEtYf6BflYrQ+buPudKR26/lH+10EmO9bBqbmPh/KeLqv8bjpTNqxe71ocONqXq+jYiCbpPUmQMS+JJPk4A==} - engines: {node: '>=12.0.0'} - hasBin: true - dependencies: - chokidar: 3.5.3 - immutable: 4.2.4 - source-map-js: 1.0.2 - dev: false - - /sax@1.2.4: - resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==} - /saxes@6.0.0: resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} engines: {node: '>=v12.22.7'} @@ -14777,7 +14642,6 @@ packages: '@types/json-schema': 7.0.11 ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) - dev: false /schema-utils@4.0.0: resolution: {integrity: sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==} @@ -14808,21 +14672,14 @@ packages: - debug dev: false + /secure-compare@3.0.1: + resolution: {integrity: sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==} + dev: true + /secure-random@1.1.2: resolution: {integrity: sha512-H2bdSKERKdBV1SwoqYm6C0y+9EA94v6SUBOWO8kDndc4NoUih7Dv6Tsgma7zO1lv27wIvjlD0ZpMQk7um5dheQ==} dev: false - /select-hose@2.0.0: - resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==} - dev: false - - /selfsigned@2.1.1: - resolution: {integrity: sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==} - engines: {node: '>=10'} - dependencies: - node-forge: 1.3.1 - dev: false - /semantic-release-plugin-decorators@3.0.1(semantic-release@20.1.0): resolution: {integrity: sha512-f5Qjvv/AJYByvkaj11a+05gQwfPwgQKo5OIhj8YVM2Dhf2rOPEOLD83jGrTdM7Nuf//sZYw77/cGUSVygUG9Kg==} peerDependencies: @@ -14884,6 +14741,7 @@ packages: /semver@5.7.1: resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==} hasBin: true + dev: true /semver@6.3.0: resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==} @@ -14928,22 +14786,6 @@ packages: resolution: {integrity: sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==} dependencies: randombytes: 2.1.0 - dev: false - - /serve-index@1.9.1: - resolution: {integrity: sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==} - engines: {node: '>= 0.8.0'} - dependencies: - accepts: 1.3.8 - batch: 0.6.1 - debug: 2.6.9 - escape-html: 1.0.3 - http-errors: 1.6.3 - mime-types: 2.1.35 - parseurl: 1.3.3 - transitivePeerDependencies: - - supports-color - dev: false /serve-static@1.15.0: resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==} @@ -14957,10 +14799,6 @@ packages: - supports-color dev: false - /setprototypeof@1.1.0: - resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==} - dev: false - /setprototypeof@1.2.0: resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} dev: false @@ -15043,6 +14881,7 @@ packages: ansi-styles: 4.3.0 astral-regex: 2.0.0 is-fullwidth-code-point: 3.0.0 + dev: true /slice-ansi@4.0.0: resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} @@ -15051,14 +14890,7 @@ packages: ansi-styles: 4.3.0 astral-regex: 2.0.0 is-fullwidth-code-point: 3.0.0 - - /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 - dev: false + dev: true /sonic-boom@2.8.0: resolution: {integrity: sha512-kuonw1YOYYNOve5iHdSahXPOK49GqwA+LZhI6Wz/l0rP57iKyXXIHaRagOBHAPmGwJC6od2Z9zgvZ5loSgMlVg==} @@ -15070,30 +14902,12 @@ packages: resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} engines: {node: '>=0.10.0'} - /source-map-loader@3.0.2(webpack@5.75.0): - resolution: {integrity: sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==} - engines: {node: '>= 12.13.0'} - peerDependencies: - webpack: ^5.0.0 - dependencies: - abab: 2.0.6 - iconv-lite: 0.6.3 - source-map-js: 1.0.2 - webpack: 5.75.0 - dev: false - - /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: - atob: 2.1.2 - decode-uri-component: 0.2.2 - /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: resolution: {integrity: sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==} @@ -15106,7 +14920,6 @@ packages: dependencies: buffer-from: 1.1.2 source-map: 0.6.1 - dev: false /source-map@0.5.7: resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==} @@ -15116,9 +14929,10 @@ packages: resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} engines: {node: '>=0.10.0'} - /source-map@0.7.4: - resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} - engines: {node: '>= 8'} + /sourcemap-codec@1.4.8: + resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} + deprecated: Please use @jridgewell/sourcemap-codec instead + dev: false /spawn-error-forwarder@1.0.0: resolution: {integrity: sha512-gRjMgK5uFjbCvdibeGJuy3I5OYz6VLoVdsOJdA6wV0WlfQVLFueoqMxwwYD9RODdgb6oUIvlRlsyFSiQkMKu0g==} @@ -15146,32 +14960,6 @@ packages: resolution: {integrity: sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA==} dev: true - /spdy-transport@3.0.0: - resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==} - dependencies: - debug: 4.3.4(supports-color@8.1.1) - detect-node: 2.1.0 - hpack.js: 2.1.6 - obuf: 1.1.2 - readable-stream: 3.6.1 - wbuf: 1.7.3 - transitivePeerDependencies: - - supports-color - dev: false - - /spdy@4.0.2: - resolution: {integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==} - engines: {node: '>=6.0.0'} - dependencies: - debug: 4.3.4(supports-color@8.1.1) - handle-thing: 2.0.1 - http-deceiver: 1.2.7 - select-hose: 2.0.0 - spdy-transport: 3.0.0 - transitivePeerDependencies: - - supports-color - dev: false - /split-on-first@1.1.0: resolution: {integrity: sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==} engines: {node: '>=6'} @@ -15217,22 +15005,18 @@ packages: jsbn: 0.1.1 safer-buffer: 2.1.2 tweetnacl: 0.14.5 + dev: true /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' - dev: false /stack-utils@2.0.6: resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} engines: {node: '>=10'} dependencies: escape-string-regexp: 2.0.0 - - /statuses@1.5.0: - resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==} - engines: {node: '>= 0.6'} - dev: false + dev: true /statuses@2.0.1: resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} @@ -15262,12 +15046,17 @@ packages: engines: {node: '>=4'} dev: false + /string-hash@1.1.3: + resolution: {integrity: sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==} + dev: false + /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 + dev: true /string-width@4.2.3: resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} @@ -15333,10 +15122,12 @@ packages: /strip-bom@4.0.0: resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==} engines: {node: '>=8'} + dev: true /strip-final-newline@2.0.0: resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} engines: {node: '>=6'} + dev: true /strip-final-newline@3.0.0: resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} @@ -15374,13 +15165,8 @@ packages: minimist: 1.2.8 through: 2.3.8 - /style-loader@3.3.1(webpack@5.75.0): - resolution: {integrity: sha512-GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ==} - engines: {node: '>= 12.13.0'} - peerDependencies: - webpack: ^5.0.0 - dependencies: - webpack: 5.75.0 + /style-inject@0.3.0: + resolution: {integrity: sha512-IezA2qp+vcdlhJaVm5SOdPPTUu0FCEqfNSli2vRuSIBbu5Nq5UvygTk/VzeCqfLz2Atj3dVII5QBKGZRZ0edzw==} dev: false /styled-jsx@5.1.1(@babel/core@7.21.0)(react@18.2.0): @@ -15415,35 +15201,6 @@ packages: /stylis@4.1.3: resolution: {integrity: sha512-GP6WDNWf+o403jrEp9c5jibKavrtLW+/qYGhFxFrG8maXhwTBI7gLLhiBb0o7uFccWN+EOS9aMO6cGHWAO07OA==} - /stylus-loader@7.1.0(stylus@0.55.0)(webpack@5.75.0): - resolution: {integrity: sha512-gNUEjjozR+oZ8cuC/Fx4LVXqZOgDKvpW9t2hpXHcxjfPYqSjQftaGwZUK+wL9B0QJ26uS6p1EmoWHmvld1dF7g==} - engines: {node: '>= 14.15.0'} - peerDependencies: - stylus: '>=0.52.4' - webpack: ^5.0.0 - dependencies: - fast-glob: 3.2.12 - klona: 2.0.6 - normalize-path: 3.0.0 - stylus: 0.55.0 - webpack: 5.75.0 - dev: false - - /stylus@0.55.0: - resolution: {integrity: sha512-MuzIIVRSbc8XxHH7FjkvWqkIcr1BvoMZoR/oFuAJDlh7VSaNJzrB4uJ38GRQa+mWjLXODAMzeDe0xi9GYbGwnw==} - hasBin: true - dependencies: - css: 3.0.0 - debug: 3.1.0 - glob: 7.2.3 - mkdirp: 1.0.4 - safer-buffer: 2.1.2 - sax: 1.2.4 - semver: 6.3.0 - source-map: 0.7.4 - transitivePeerDependencies: - - supports-color - /supports-color@5.5.0: resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} engines: {node: '>=4'} @@ -15468,6 +15225,7 @@ packages: dependencies: has-flag: 4.0.0 supports-color: 7.2.0 + dev: true /supports-preserve-symlinks-flag@1.0.0: resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} @@ -15475,7 +15233,6 @@ packages: /svg-parser@2.0.4: resolution: {integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==} - dev: false /svgo@2.8.0: resolution: {integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==} @@ -15489,7 +15246,6 @@ packages: csso: 4.2.0 picocolors: 1.0.0 stable: 0.1.8 - dev: false /symbol-observable@2.0.3: resolution: {integrity: sha512-sQV7phh2WCYAn81oAkakC5qjq2Ml0g8ozqz03wOGnx9dDlG1de6yrF+0RAzSJD8fPUow3PTSMf2SAbOGxb93BA==} @@ -15556,6 +15312,7 @@ packages: dependencies: ansi-escapes: 4.3.2 supports-hyperlinks: 2.3.0 + dev: true /terser-webpack-plugin@5.3.6(webpack@5.75.0): resolution: {integrity: sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==} @@ -15579,7 +15336,6 @@ packages: serialize-javascript: 6.0.0 terser: 5.16.5 webpack: 5.75.0 - dev: false /terser@5.16.5: resolution: {integrity: sha512-qcwfg4+RZa3YvlFh0qjifnzBHjKGNbtDo9yivMqMFDy9Q6FSaQWSB/j1xKhsoUFJIqDOM3TsN6D5xbrMrFcHbg==} @@ -15590,7 +15346,6 @@ packages: acorn: 8.8.2 commander: 2.20.3 source-map-support: 0.5.21 - dev: false /test-exclude@6.0.0: resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} @@ -15599,6 +15354,7 @@ packages: '@istanbuljs/schema': 0.1.3 glob: 7.2.3 minimatch: 3.1.2 + dev: true /text-extensions@1.9.0: resolution: {integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==} @@ -15616,6 +15372,7 @@ packages: /throttleit@1.0.0: resolution: {integrity: sha512-rkTVqu6IjfQ/6+uNuuc3sZek4CEYxTJom3IktzgdSxcZqdARuebbA/f4QmAxMQIxqq9ZLEUkSYqvuk1I6VKq4g==} + dev: true /through2@0.4.2: resolution: {integrity: sha512-45Llu+EwHKtAZYTPPVn3XZHBgakWMN3rokhEv5hu596XP+cNgplMg+Gj+1nmAvj+L0K7+N49zBKx5rah5u0QIQ==} @@ -15640,10 +15397,6 @@ packages: /through@2.3.8: resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} - /thunky@1.1.0: - resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==} - dev: false - /tiny-glob@0.2.9: resolution: {integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==} dependencies: @@ -15693,6 +15446,7 @@ packages: /tmpl@1.0.5: resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==} + dev: true /to-fast-properties@2.0.0: resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} @@ -15724,6 +15478,7 @@ packages: dependencies: psl: 1.9.0 punycode: 2.3.0 + dev: true /tough-cookie@4.1.2: resolution: {integrity: sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ==} @@ -15794,21 +15549,6 @@ packages: yargs-parser: 21.1.1 dev: true - /ts-loader@9.4.2(typescript@4.9.5)(webpack@5.75.0): - resolution: {integrity: sha512-OmlC4WVmFv5I0PpaxYb+qGeGOdm5giHU7HwDDUjw59emP2UYMHy9fFSDcYgSNoH8sXcj4hGCSEhlDZ9ULeDraA==} - engines: {node: '>=12.0.0'} - peerDependencies: - typescript: '*' - webpack: ^5.0.0 - dependencies: - chalk: 4.1.2 - enhanced-resolve: 5.12.0 - micromatch: 4.0.5 - semver: 7.3.8 - typescript: 4.9.5 - webpack: 5.75.0 - dev: false - /ts-node@10.9.1(@types/node@18.14.2)(typescript@4.9.5): resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} hasBin: true @@ -15902,9 +15642,11 @@ packages: resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} dependencies: safe-buffer: 5.2.1 + dev: true /tweetnacl@0.14.5: resolution: {integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==} + dev: true /type-check@0.3.2: resolution: {integrity: sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==} @@ -15940,6 +15682,7 @@ packages: /type-fest@0.21.3: resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} engines: {node: '>=10'} + dev: true /type-fest@0.6.0: resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} @@ -15981,10 +15724,6 @@ packages: is-typed-array: 1.1.10 dev: true - /typed-assert@1.0.9: - resolution: {integrity: sha512-KNNZtayBCtmnNmbo5mG47p1XsCyrx6iVqomjcZnec/1Y5GGARaxPs6r49RnSPeUP3YjNYiU9sQHAtY4BBvnZwg==} - dev: false - /typeforce@1.18.0: resolution: {integrity: sha512-7uc1O8h1M1g0rArakJdf0uLRSSgFcYexrVoKo+bzJd32gd4gDy2L/Z+8/FjPnU9ydY3pEnVPtr9FyscYY60K1g==} dev: false @@ -16043,6 +15782,13 @@ packages: tiny-inflate: 1.0.3 dev: false + /union@0.5.0: + resolution: {integrity: sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==} + engines: {node: '>= 0.8.0'} + dependencies: + qs: 6.11.0 + dev: true + /unique-string@2.0.0: resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==} engines: {node: '>=8'} @@ -16054,6 +15800,11 @@ packages: resolution: {integrity: sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==} dev: true + /universalify@0.1.2: + resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} + engines: {node: '>= 4.0.0'} + dev: false + /universalify@0.2.0: resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} engines: {node: '>= 4.0.0'} @@ -16076,6 +15827,7 @@ packages: /untildify@4.0.0: resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==} engines: {node: '>=8'} + dev: true /update-browserslist-db@1.0.10(browserslist@4.21.5): resolution: {integrity: sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==} @@ -16187,6 +15939,7 @@ packages: /uuid@8.3.2: resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} hasBin: true + dev: true /v8-compile-cache-lib@3.0.1: resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} @@ -16201,6 +15954,7 @@ packages: '@jridgewell/trace-mapping': 0.3.17 '@types/istanbul-lib-coverage': 2.0.4 convert-source-map: 1.9.0 + dev: true /validate-npm-package-license@3.0.4: resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} @@ -16221,6 +15975,7 @@ packages: assert-plus: 1.0.0 core-util-is: 1.0.2 extsprintf: 1.3.0 + dev: true /vite-plugin-eslint@1.8.1(eslint@8.15.0)(vite@4.1.4): resolution: {integrity: sha512-PqdMf3Y2fLO9FsNPmMX+//2BF5SF8nEWspZdgl4kSt7UvHDRHVVfHvxsD7ULYzZrJDGRxR81Nq7TOFgwMnUang==} @@ -16232,7 +15987,7 @@ packages: '@types/eslint': 8.21.1 eslint: 8.15.0 rollup: 2.79.1 - vite: 4.1.4(@types/node@18.14.2)(less@4.1.3)(stylus@0.55.0) + vite: 4.1.4(@types/node@18.14.2) dev: true /vite-tsconfig-paths@4.0.5(typescript@4.9.5): @@ -16246,7 +16001,7 @@ packages: - typescript dev: true - /vite@4.1.4(@types/node@18.14.2)(less@4.1.3)(stylus@0.55.0): + /vite@4.1.4(@types/node@18.14.2): resolution: {integrity: sha512-3knk/HsbSTKEin43zHu7jTwYWv81f8kgAL99G5NWBcA1LKvtvcVAC4JjBH1arBunO9kQka+1oGbrMKOjk4ZrBg==} engines: {node: ^14.18.0 || >=16.0.0} hasBin: true @@ -16273,16 +16028,14 @@ packages: dependencies: '@types/node': 18.14.2 esbuild: 0.16.17 - less: 4.1.3 postcss: 8.4.21 resolve: 1.22.1 rollup: 3.17.2 - stylus: 0.55.0 optionalDependencies: fsevents: 2.3.2 dev: true - /vitest@0.25.8(@vitest/ui@0.25.8)(jsdom@20.0.3)(less@4.1.3)(stylus@0.55.0): + /vitest@0.25.8(@vitest/ui@0.25.8)(jsdom@20.0.3): resolution: {integrity: sha512-X75TApG2wZTJn299E/TIYevr4E9/nBo1sUtZzn0Ci5oK8qnpZAZyhwg0qCeMSakGIWtc6oRwcQFyFfW14aOFWg==} engines: {node: '>=v14.16.0'} hasBin: true @@ -16319,7 +16072,7 @@ packages: tinybench: 2.3.1 tinypool: 0.3.1 tinyspy: 1.1.1 - vite: 4.1.4(@types/node@18.14.2)(less@4.1.3)(stylus@0.55.0) + vite: 4.1.4(@types/node@18.14.2) transitivePeerDependencies: - less - sass @@ -16340,6 +16093,7 @@ packages: resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} dependencies: makeerror: 1.0.12 + dev: true /watchpack@2.4.0: resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==} @@ -16347,13 +16101,6 @@ packages: dependencies: glob-to-regexp: 0.4.1 graceful-fs: 4.2.10 - dev: false - - /wbuf@1.7.3: - resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==} - dependencies: - minimalistic-assert: 1.0.1 - dev: false /webidl-conversions@3.0.1: resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} @@ -16364,68 +16111,6 @@ packages: engines: {node: '>=12'} dev: true - /webpack-dev-middleware@5.3.3(webpack@5.75.0): - resolution: {integrity: sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==} - engines: {node: '>= 12.13.0'} - peerDependencies: - webpack: ^4.0.0 || ^5.0.0 - dependencies: - colorette: 2.0.19 - memfs: 3.4.13 - mime-types: 2.1.35 - range-parser: 1.2.1 - schema-utils: 4.0.0 - webpack: 5.75.0 - dev: false - - /webpack-dev-server@4.11.1(webpack@5.75.0): - resolution: {integrity: sha512-lILVz9tAUy1zGFwieuaQtYiadImb5M3d+H+L1zDYalYoDl0cksAB1UNyuE5MMWJrG6zR1tXkCP2fitl7yoUJiw==} - engines: {node: '>= 12.13.0'} - hasBin: true - peerDependencies: - webpack: ^4.37.0 || ^5.0.0 - webpack-cli: '*' - peerDependenciesMeta: - webpack-cli: - optional: true - dependencies: - '@types/bonjour': 3.5.10 - '@types/connect-history-api-fallback': 1.3.5 - '@types/express': 4.17.17 - '@types/serve-index': 1.9.1 - '@types/serve-static': 1.15.1 - '@types/sockjs': 0.3.33 - '@types/ws': 8.5.4 - ansi-html-community: 0.0.8 - bonjour-service: 1.1.0 - chokidar: 3.5.3 - colorette: 2.0.19 - compression: 1.7.4 - connect-history-api-fallback: 2.0.0 - default-gateway: 6.0.3 - express: 4.18.2 - graceful-fs: 4.2.10 - html-entities: 2.3.3 - 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 - rimraf: 3.0.2 - schema-utils: 4.0.0 - selfsigned: 2.1.1 - serve-index: 1.9.1 - sockjs: 0.3.24 - spdy: 4.0.2 - webpack: 5.75.0 - webpack-dev-middleware: 5.3.3(webpack@5.75.0) - ws: 8.12.1 - transitivePeerDependencies: - - bufferutil - - debug - - supports-color - - utf-8-validate - dev: false - /webpack-merge@5.8.0: resolution: {integrity: sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==} engines: {node: '>=10.0.0'} @@ -16434,29 +16119,9 @@ packages: wildcard: 2.0.0 dev: false - /webpack-node-externals@3.0.0: - resolution: {integrity: sha512-LnL6Z3GGDPht/AigwRh2dvL9PQPFQ8skEpVrWZXLWBYmqcaojHNN0onvHzie6rq7EWKrrBfPYqNEzTJgiwEQDQ==} - engines: {node: '>=6'} - dev: false - /webpack-sources@3.2.3: resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==} engines: {node: '>=10.13.0'} - dev: false - - /webpack-subresource-integrity@5.1.0(webpack@5.75.0): - resolution: {integrity: sha512-sacXoX+xd8r4WKsy9MvH/q/vBtEHr86cpImXwyg74pFIpERKt6FmB8cXpeuh0ZLgclOlHI4Wcll7+R5L02xk9Q==} - engines: {node: '>= 12'} - peerDependencies: - html-webpack-plugin: '>= 5.0.0-beta.1 < 6' - webpack: ^5.12.0 - peerDependenciesMeta: - html-webpack-plugin: - optional: true - dependencies: - typed-assert: 1.0.9 - webpack: 5.75.0 - dev: false /webpack@5.75.0: resolution: {integrity: sha512-piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ==} @@ -16496,21 +16161,6 @@ packages: - '@swc/core' - esbuild - uglify-js - dev: false - - /websocket-driver@0.7.4: - resolution: {integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==} - engines: {node: '>=0.8.0'} - dependencies: - http-parser-js: 0.5.8 - safe-buffer: 5.2.1 - websocket-extensions: 0.1.4 - dev: false - - /websocket-extensions@0.1.4: - resolution: {integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==} - engines: {node: '>=0.8.0'} - dev: false /whatwg-encoding@2.0.0: resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==} @@ -16606,6 +16256,7 @@ packages: ansi-styles: 4.3.0 string-width: 4.2.3 strip-ansi: 6.0.1 + dev: true /wrap-ansi@7.0.0: resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} @@ -16624,6 +16275,7 @@ packages: dependencies: imurmurhash: 0.1.4 signal-exit: 3.0.7 + dev: true /ws@7.5.9: resolution: {integrity: sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==} @@ -16649,6 +16301,7 @@ packages: optional: true utf-8-validate: optional: true + dev: true /xml-name-validator@4.0.0: resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} @@ -16748,6 +16401,7 @@ packages: dependencies: buffer-crc32: 0.2.13 fd-slicer: 1.1.0 + dev: true /yn@3.1.1: resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} From 8ba73c0ccbe89957151ff567d3cb64aa8df49ab1 Mon Sep 17 00:00:00 2001 From: DavideSegullo Date: Thu, 13 Apr 2023 18:24:28 +0200 Subject: [PATCH 26/46] feat(txs-tracer-core): :sparkles: add esm support added esm support using rollup. --- packages/txs-tracer-core/.babelrc | 5 +++++ packages/txs-tracer-core/project.json | 16 ++++++++-------- 2 files changed, 13 insertions(+), 8 deletions(-) create mode 100644 packages/txs-tracer-core/.babelrc diff --git a/packages/txs-tracer-core/.babelrc b/packages/txs-tracer-core/.babelrc new file mode 100644 index 0000000..f92bd54 --- /dev/null +++ b/packages/txs-tracer-core/.babelrc @@ -0,0 +1,5 @@ +{ + "presets": [ + "minify" + ] +} diff --git a/packages/txs-tracer-core/project.json b/packages/txs-tracer-core/project.json index d98d0f6..5ae223f 100644 --- a/packages/txs-tracer-core/project.json +++ b/packages/txs-tracer-core/project.json @@ -1,21 +1,21 @@ { "name": "txs-tracer-core", "$schema": "../../node_modules/nx/schemas/project-schema.json", - "sourceRoot": "packages/txs-tracer-core/src", + "sourceRoot": "packages/txs-tracer-core", "projectType": "library", "targets": { "build": { - "executor": "@nrwl/js:tsc", - "outputs": [ - "{options.outputPath}" - ], + "executor": "@nrwl/rollup:rollup", + "outputs": ["{options.outputPath}"], "options": { + "project": "packages/txs-tracer-core/package.json", "outputPath": "dist/packages/txs-tracer-core", "main": "packages/txs-tracer-core/src/index.ts", "tsConfig": "packages/txs-tracer-core/tsconfig.lib.json", - "assets": [ - "packages/txs-tracer-core/*.md" - ] + "compiler": "babel", + "external": ["typescript"], + "format": ["cjs", "esm"], + "assets": ["packages/txs-tracer-core/CHANGELOG.md", "packages/txs-tracer-core/README.md"] } }, "publish": { From 26aa66ebdd964dc6fff5aa85ad9722954c42de6d Mon Sep 17 00:00:00 2001 From: DavideSegullo Date: Thu, 13 Apr 2023 18:48:56 +0200 Subject: [PATCH 27/46] feat: :arrow_up: upgrade semantic release dep --- package.json | 2 +- pnpm-lock.yaml | 64 +++++++++++++++++++++++--------------------------- 2 files changed, 30 insertions(+), 36 deletions(-) diff --git a/package.json b/package.json index 3099713..300b275 100644 --- a/package.json +++ b/package.json @@ -64,7 +64,7 @@ "@nrwl/web": "15.9.2", "@nrwl/workspace": "15.9.2", "@testing-library/react": "14.0.0", - "@theunderscorer/nx-semantic-release": "^2.0.1", + "@theunderscorer/nx-semantic-release": "^2.3.0", "@types/jest": "^29.4.0", "@types/node": "18.14.2", "@types/react": "18.0.28", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 4144c05..7e2c052 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -169,8 +169,8 @@ devDependencies: specifier: 14.0.0 version: 14.0.0(react-dom@18.2.0)(react@18.2.0) '@theunderscorer/nx-semantic-release': - specifier: ^2.0.1 - version: 2.0.1(nx@15.9.2)(typescript@4.9.5) + specifier: ^2.3.0 + version: 2.3.0(nx@15.9.2) '@types/jest': specifier: ^29.4.0 version: 29.4.0 @@ -4807,21 +4807,6 @@ packages: - typescript dev: true - /@nrwl/devkit@15.7.2(nx@15.9.2)(typescript@4.9.5): - resolution: {integrity: sha512-HMGi7L6w2g4IrYwhb04snD8Zr24Z/gzau5i9WUNkwzrjeR1xAm0Cc9WRre221zaeohtK11gyBt7BerT1tgkNwA==} - peerDependencies: - nx: '>= 14.1 <= 16' - dependencies: - '@phenomnomnominal/tsquery': 4.1.1(typescript@4.9.5) - ejs: 3.1.8 - ignore: 5.2.4 - nx: 15.9.2 - semver: 7.3.4 - tslib: 2.5.0 - transitivePeerDependencies: - - typescript - dev: true - /@nrwl/devkit@15.9.2(nx@15.9.2): resolution: {integrity: sha512-2DvTstVZb91m+d4wqUJMBHQ3elxyabdmFE6/3aXmtOGeDxTyXyDzf/1O6JvBBiL8K6XC3ZYchjtxUHgxl/NJ5A==} peerDependencies: @@ -5370,8 +5355,8 @@ packages: tslib: 2.5.0 dev: true - /@pnpm/config.env-replace@1.0.0: - resolution: {integrity: sha512-ZVPVDi1E8oeXlYqkGRtX0CkzLTwE2zt62bjWaWKaAvI8NZqHzlMvGeSNDpW+JB3+aKanYb4UETJOF1/CxGPemA==} + /@pnpm/config.env-replace@1.1.0: + resolution: {integrity: sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==} engines: {node: '>=12.22.0'} dev: true @@ -5382,11 +5367,11 @@ packages: graceful-fs: 4.2.10 dev: true - /@pnpm/npm-conf@2.1.0: - resolution: {integrity: sha512-Oe6ntvgsMTE3hDIqy6sajqHF+MnzJrOF06qC2QSiUEybLL7cp6tjoKUa32gpd9+KPVl4QyMs3E3nsXrx/Vdnlw==} + /@pnpm/npm-conf@2.1.1: + resolution: {integrity: sha512-yfRcuupmxxeDOSxvw4g+wFCrGiPD0L32f5WMzqMXp7Rl93EOCdFiDcaSNnZ10Up9GdNqkj70UTa8hfhPFphaZA==} engines: {node: '>=12'} dependencies: - '@pnpm/config.env-replace': 1.0.0 + '@pnpm/config.env-replace': 1.1.0 '@pnpm/network.ca-file': 1.0.2 config-chain: 1.1.13 dev: true @@ -6001,18 +5986,17 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: true - /@theunderscorer/nx-semantic-release@2.0.1(nx@15.9.2)(typescript@4.9.5): - resolution: {integrity: sha512-zvy9ISClJ02W+bwQFCh8jOykPFN325Jf4kUpPJpbbLL0m6ns1urdPmA/wsL/etlJh5JeEl0UXcJf2fTvOOsCxw==} + /@theunderscorer/nx-semantic-release@2.3.0(nx@15.9.2): + resolution: {integrity: sha512-W+GMR56EMTi1Qqn6Rgfn8wg3Gm4jEJ5iO4/gpz0e49RLuOjtOmw+VuPS4Ir9Z3ozshROSs58wFuCGqfQGeyKRQ==} engines: {node: '>=16.0.0'} dependencies: - '@nrwl/devkit': 15.7.2(nx@15.9.2)(typescript@4.9.5) + '@nrwl/devkit': 15.9.2(nx@15.9.2) '@semantic-release/changelog': 6.0.2(semantic-release@20.1.0) '@semantic-release/exec': 6.0.3(semantic-release@20.1.0) '@semantic-release/git': 10.0.1(semantic-release@20.1.0) '@semantic-release/github': 8.0.7(semantic-release@20.1.0) '@semantic-release/npm': 9.0.2(semantic-release@20.1.0) - cosmiconfig: 7.1.0 - fs-extra: 10.1.0 + cosmiconfig: 7.0.1 remeda: 0.0.32 semantic-release: 20.1.0 semantic-release-plugin-decorators: 3.0.1(semantic-release@20.1.0) @@ -6020,7 +6004,6 @@ packages: - encoding - nx - supports-color - - typescript dev: true /@tootallnate/once@2.0.0: @@ -8358,6 +8341,17 @@ packages: path-type: 4.0.0 yaml: 1.10.2 + /cosmiconfig@7.0.1: + resolution: {integrity: sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==} + engines: {node: '>=10'} + dependencies: + '@types/parse-json': 4.0.0 + import-fresh: 3.3.0 + parse-json: 5.2.0 + path-type: 4.0.0 + yaml: 1.10.2 + dev: true + /cosmiconfig@7.1.0: resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} engines: {node: '>=10'} @@ -12392,7 +12386,7 @@ packages: engines: {node: '>=8'} dev: true - /marked-terminal@5.1.1(marked@4.2.12): + /marked-terminal@5.1.1(marked@4.3.0): resolution: {integrity: sha512-+cKTOx9P4l7HwINYhzbrBSyzgxO2HaHKGZGuB1orZsMIgXYaJyfidT81VXRdpelW/PcHEWxywscePVgI/oUF6g==} engines: {node: '>=14.13.1 || >=16.0.0'} peerDependencies: @@ -12402,13 +12396,13 @@ packages: cardinal: 2.1.1 chalk: 5.2.0 cli-table3: 0.6.3 - marked: 4.2.12 + marked: 4.3.0 node-emoji: 1.11.0 supports-hyperlinks: 2.3.0 dev: true - /marked@4.2.12: - resolution: {integrity: sha512-yr8hSKa3Fv4D3jdZmtMMPghgVt6TWbk86WQaWhDloQjRSQhMMYCAro7jP7VDJrjjdV8pxVxMssXS8B8Y5DZ5aw==} + /marked@4.3.0: + resolution: {integrity: sha512-PRsaiG84bK+AMvxziE/lCFss8juXjNaWzVbN5tXAm4XjeaS9NAHhop+PjQxz2A9h8Q4M/xGmzP8vqNwy6JeK0A==} engines: {node: '>= 12'} hasBin: true dev: true @@ -14385,7 +14379,7 @@ packages: resolution: {integrity: sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ==} engines: {node: '>=14'} dependencies: - '@pnpm/npm-conf': 2.1.0 + '@pnpm/npm-conf': 2.1.1 dev: true /regjsparser@0.9.1: @@ -14710,8 +14704,8 @@ packages: hook-std: 3.0.0 hosted-git-info: 6.1.1 lodash-es: 4.17.21 - marked: 4.2.12 - marked-terminal: 5.1.1(marked@4.2.12) + marked: 4.3.0 + marked-terminal: 5.1.1(marked@4.3.0) micromatch: 4.0.5 p-each-series: 3.0.0 p-reduce: 3.0.0 From e9a1079ffd3d20c9d261a04fcb9d2208516f0a51 Mon Sep 17 00:00:00 2001 From: DavideSegullo Date: Thu, 13 Apr 2023 18:51:37 +0200 Subject: [PATCH 28/46] fix(txs-tracer-core): :wrench: fix project config --- packages/txs-tracer-core/project.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/packages/txs-tracer-core/project.json b/packages/txs-tracer-core/project.json index 5ae223f..ed1adbc 100644 --- a/packages/txs-tracer-core/project.json +++ b/packages/txs-tracer-core/project.json @@ -1,7 +1,7 @@ { "name": "txs-tracer-core", "$schema": "../../node_modules/nx/schemas/project-schema.json", - "sourceRoot": "packages/txs-tracer-core", + "sourceRoot": "packages/txs-tracer-core/src", "projectType": "library", "targets": { "build": { @@ -14,8 +14,7 @@ "tsConfig": "packages/txs-tracer-core/tsconfig.lib.json", "compiler": "babel", "external": ["typescript"], - "format": ["cjs", "esm"], - "assets": ["packages/txs-tracer-core/CHANGELOG.md", "packages/txs-tracer-core/README.md"] + "format": ["cjs", "esm"] } }, "publish": { From 93610a43507706e815d91afd7d8bf7badc604b88 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Thu, 13 Apr 2023 16:53:59 +0000 Subject: [PATCH 29/46] chore(release): 1.0.0-next.3 [skip ci] # [1.0.0-next.3](https://github.com/nabla-studio/cosmos-txs-tracer/compare/txs-tracer-core-v1.0.0-next.2...txs-tracer-core-v1.0.0-next.3) (2023-04-13) ### Bug Fixes * **txs-tracer-core:** :wrench: fix project config ([e9a1079](https://github.com/nabla-studio/cosmos-txs-tracer/commit/e9a1079ffd3d20c9d261a04fcb9d2208516f0a51)) ### Features * :arrow_up: upgrade nx js deps ([567131a](https://github.com/nabla-studio/cosmos-txs-tracer/commit/567131a6f63a995a818361cf35733e7ba77322e9)) * :arrow_up: upgrade semantic release dep ([26aa66e](https://github.com/nabla-studio/cosmos-txs-tracer/commit/26aa66ebdd964dc6fff5aa85ad9722954c42de6d)) * **txs-tracer-core:** :sparkles: add esm support ([8ba73c0](https://github.com/nabla-studio/cosmos-txs-tracer/commit/8ba73c0ccbe89957151ff567d3cb64aa8df49ab1)) --- packages/txs-tracer-core/CHANGELOG.md | 14 ++++++++++++++ packages/txs-tracer-core/package.json | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/packages/txs-tracer-core/CHANGELOG.md b/packages/txs-tracer-core/CHANGELOG.md index 661b3cf..5375416 100644 --- a/packages/txs-tracer-core/CHANGELOG.md +++ b/packages/txs-tracer-core/CHANGELOG.md @@ -1,3 +1,17 @@ +# [1.0.0-next.3](https://github.com/nabla-studio/cosmos-txs-tracer/compare/txs-tracer-core-v1.0.0-next.2...txs-tracer-core-v1.0.0-next.3) (2023-04-13) + + +### Bug Fixes + +* **txs-tracer-core:** :wrench: fix project config ([e9a1079](https://github.com/nabla-studio/cosmos-txs-tracer/commit/e9a1079ffd3d20c9d261a04fcb9d2208516f0a51)) + + +### Features + +* :arrow_up: upgrade nx js deps ([567131a](https://github.com/nabla-studio/cosmos-txs-tracer/commit/567131a6f63a995a818361cf35733e7ba77322e9)) +* :arrow_up: upgrade semantic release dep ([26aa66e](https://github.com/nabla-studio/cosmos-txs-tracer/commit/26aa66ebdd964dc6fff5aa85ad9722954c42de6d)) +* **txs-tracer-core:** :sparkles: add esm support ([8ba73c0](https://github.com/nabla-studio/cosmos-txs-tracer/commit/8ba73c0ccbe89957151ff567d3cb64aa8df49ab1)) + # [1.0.0-next.2](https://github.com/nabla-studio/cosmos-txs-tracer/compare/txs-tracer-core-v1.0.0-next.1...txs-tracer-core-v1.0.0-next.2) (2023-04-13) diff --git a/packages/txs-tracer-core/package.json b/packages/txs-tracer-core/package.json index 9acef1b..cefc80f 100644 --- a/packages/txs-tracer-core/package.json +++ b/packages/txs-tracer-core/package.json @@ -1,6 +1,6 @@ { "name": "@nabla-studio/txs-tracer-core", - "version": "1.0.0-next.2", + "version": "1.0.0-next.3", "description": "A series of state machines useful for tracking transactions for the Cosmos blockchain ecosystem", "type": "module", "repository": { From 1e9128175a272b7d83202dbc4513f6add1d30650 Mon Sep 17 00:00:00 2001 From: DavideSegullo Date: Sun, 16 Apr 2023 10:44:17 +0200 Subject: [PATCH 30/46] feat(txs-tracer-core): :sparkles: improve error handling --- .../cross-swap-trace-machine.ts | 87 ++++++++++--------- .../src/lib/types/cross-swap-trace.ts | 1 + .../src/lib/utils/cross-swap.ts | 44 ++++++++++ .../txs-tracer-core/src/lib/utils/index.ts | 1 + 4 files changed, 94 insertions(+), 39 deletions(-) create mode 100644 packages/txs-tracer-core/src/lib/utils/cross-swap.ts diff --git a/packages/txs-tracer-core/src/lib/machines/cross-swap-trace-machine/cross-swap-trace-machine.ts b/packages/txs-tracer-core/src/lib/machines/cross-swap-trace-machine/cross-swap-trace-machine.ts index e8cb394..3c965d3 100644 --- a/packages/txs-tracer-core/src/lib/machines/cross-swap-trace-machine/cross-swap-trace-machine.ts +++ b/packages/txs-tracer-core/src/lib/machines/cross-swap-trace-machine/cross-swap-trace-machine.ts @@ -6,16 +6,13 @@ import { IBCTraceDataResponse, IBCTraceFinalState, CrossSwapTraceFinalState, - SwapContractResponseRaw, - SwapContractResponse, TxTraceFinalState, TxTraceDataResponse, } from '../../types'; import { ibcTraceMachine } from '../ibc-trace-machine'; import { choose } from 'xstate/lib/actions'; -import { IndexedTx } from '@cosmjs/stargate'; -import { fromAscii, fromBase64, toAscii } from '@cosmjs/encoding'; import { txTraceMachine } from '../txs-trace-machine'; +import { getCrossSwapPacketSequence } from '../../utils'; const initialContext: CrossSwapTraceContext = { subscribeTimeout: 60_000, @@ -24,6 +21,7 @@ const initialContext: CrossSwapTraceContext = { loading: false, currentStep: 0, errorCode: 0, + errorMessage: '', srcChannel: '', dstChannel: '', query: '', @@ -79,7 +77,8 @@ export const crossSwapTraceMachine = createMachine( cond: (_, event) => { return ( event.data.state === IBCTraceFinalState.Complete && - event.data.tx !== undefined + event.data.tx !== undefined && + getCrossSwapPacketSequence(event.data.tx).packetSequence !== undefined ); }, actions: raise< @@ -93,6 +92,33 @@ export const crossSwapTraceMachine = createMachine( }, })), }, + { + cond: (_, event) => { + return ( + event.data.state === IBCTraceFinalState.Complete && + event.data.tx !== undefined && + getCrossSwapPacketSequence(event.data.tx).error !== undefined + ); + }, + actions: raise((_, event) => { + let errorMessage: string | undefined = ''; + + if (event.data.tx) { + const data = getCrossSwapPacketSequence(event.data.tx); + + errorMessage = data.error; + } + + return { + type: 'ON_ERROR', + data: { + state: event.data.state, + code: event.data.errorCode, + errorMessage, + }, + }; + }), + }, { actions: raise((_, event) => ({ type: 'ON_ERROR', @@ -106,7 +132,7 @@ export const crossSwapTraceMachine = createMachine( }, }, entry: [ - 'toggleLoading', + 'startLoading', 'increaseStep', sendTo('traceIBCM1', (ctx, event) => ({ type: 'TRACE', @@ -118,7 +144,6 @@ export const crossSwapTraceMachine = createMachine( }, })), ], - exit: ['toggleLoading'], on: { TRACE_M2: { target: 'trace_ibc_m2', @@ -186,40 +211,21 @@ export const crossSwapTraceMachine = createMachine( }, }, entry: [ - 'toggleLoading', 'increaseStep', sendTo('traceIBCM2', (ctx: CrossSwapTraceContext) => { const tx = ctx.M1Tx; if (tx) { - const events = [...tx.events].reverse(); - const fungibleTokenPacket = events.find( - e => e.type === 'fungible_token_packet', - ); - - if (fungibleTokenPacket) { - const success = fungibleTokenPacket.attributes.find( - e => e.key === 'success', - ); - - if (success) { - const responseRaw: SwapContractResponseRaw = JSON.parse(success.value); + const data = getCrossSwapPacketSequence(tx); - const response: SwapContractResponse = { - contract_result: JSON.parse( - fromAscii(fromBase64(responseRaw.contract_result)), - ), - ibc_ack: JSON.parse(fromAscii(fromBase64(responseRaw.ibc_ack))), - }; - - return { - type: 'TRACE', - data: { - query: `write_acknowledgement.packet_src_channel='${ctx.dstChannel}' and write_acknowledgement.packet_dst_channel='${ctx.srcChannel}' and write_acknowledgement.packet_sequence=${response.contract_result.packet_sequence}`, - websocketUrl: ctx.websocketUrl, - }, - }; - } + if (data.packetSequence) { + return { + type: 'TRACE', + data: { + query: `write_acknowledgement.packet_src_channel='${ctx.dstChannel}' and write_acknowledgement.packet_dst_channel='${ctx.srcChannel}' and write_acknowledgement.packet_sequence=${data.packetSequence}`, + websocketUrl: ctx.websocketUrl, + }, + }; } } @@ -228,7 +234,6 @@ export const crossSwapTraceMachine = createMachine( }; }), ], - exit: ['toggleLoading'], on: { ON_COMPLETE: { target: 'complete', @@ -249,7 +254,7 @@ export const crossSwapTraceMachine = createMachine( }, }, complete: { - entry: ['increaseStep'], + entry: ['stopLoading', 'increaseStep'], data: ctx => ({ state: CrossSwapTraceFinalState.Complete, M1Tx: ctx.M1Tx, @@ -265,6 +270,7 @@ export const crossSwapTraceMachine = createMachine( }, }, error: { + entry: ['stopLoading'], data: ctx => ({ state: CrossSwapTraceFinalState.Error, errorCode: ctx.errorCode, @@ -287,8 +293,11 @@ export const crossSwapTraceMachine = createMachine( }, { actions: { - toggleLoading: context => { - context.loading = !context.loading; + startLoading: context => { + context.loading = true; + }, + stopLoading: context => { + context.loading = false; }, increaseStep: context => { context.currentStep = context.currentStep + 1; diff --git a/packages/txs-tracer-core/src/lib/types/cross-swap-trace.ts b/packages/txs-tracer-core/src/lib/types/cross-swap-trace.ts index 7f3f5d5..4280ca4 100644 --- a/packages/txs-tracer-core/src/lib/types/cross-swap-trace.ts +++ b/packages/txs-tracer-core/src/lib/types/cross-swap-trace.ts @@ -9,6 +9,7 @@ import { export type CrossSwapTraceContext = Omit & { M1Tx?: IndexedTx; M2Tx?: IndexedTx; + errorMessage?: string; }; export const CrossSwapTraceFinalState = { diff --git a/packages/txs-tracer-core/src/lib/utils/cross-swap.ts b/packages/txs-tracer-core/src/lib/utils/cross-swap.ts new file mode 100644 index 0000000..0efe609 --- /dev/null +++ b/packages/txs-tracer-core/src/lib/utils/cross-swap.ts @@ -0,0 +1,44 @@ +import { IndexedTx } from '@cosmjs/stargate'; +import { SwapContractResponseRaw, SwapContractResponse } from '../types'; +import { fromAscii, fromBase64 } from '@cosmjs/encoding'; + +export const getCrossSwapPacketSequence = (tx: IndexedTx) => { + const events = [...tx.events].reverse(); + const fungibleTokenPacket = events.find( + e => e.type === 'fungible_token_packet', + ); + + if (fungibleTokenPacket) { + const success = fungibleTokenPacket.attributes.find(e => e.key === 'success'); + + if (success) { + const responseRaw: SwapContractResponseRaw = JSON.parse(success.value); + + const response: SwapContractResponse = { + contract_result: JSON.parse( + fromAscii(fromBase64(responseRaw.contract_result)), + ), + ibc_ack: JSON.parse(fromAscii(fromBase64(responseRaw.ibc_ack))), + }; + + return { + packetSequence: response.contract_result.packet_sequence, + error: undefined, + }; + } + + const error = fungibleTokenPacket.attributes.find(e => e.key === 'error'); + + if (error) { + return { + packetSequence: undefined, + error: error.value, + }; + } + } + + return { + packetSequence: undefined, + error: 'Unknown error', + }; +}; diff --git a/packages/txs-tracer-core/src/lib/utils/index.ts b/packages/txs-tracer-core/src/lib/utils/index.ts index a12616b..211c4ad 100644 --- a/packages/txs-tracer-core/src/lib/utils/index.ts +++ b/packages/txs-tracer-core/src/lib/utils/index.ts @@ -1,2 +1,3 @@ export * from './tx'; export * from './stream'; +export * from './cross-swap'; From f5a9c2feade35c9a7765927812b60e2205c7cd9b Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Sun, 16 Apr 2023 08:47:28 +0000 Subject: [PATCH 31/46] chore(release): 1.0.0-next.4 [skip ci] # [1.0.0-next.4](https://github.com/nabla-studio/cosmos-txs-tracer/compare/txs-tracer-core-v1.0.0-next.3...txs-tracer-core-v1.0.0-next.4) (2023-04-16) ### Features * **txs-tracer-core:** :sparkles: improve error handling ([1e91281](https://github.com/nabla-studio/cosmos-txs-tracer/commit/1e9128175a272b7d83202dbc4513f6add1d30650)) --- packages/txs-tracer-core/CHANGELOG.md | 7 +++++++ packages/txs-tracer-core/package.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/packages/txs-tracer-core/CHANGELOG.md b/packages/txs-tracer-core/CHANGELOG.md index 5375416..03c8244 100644 --- a/packages/txs-tracer-core/CHANGELOG.md +++ b/packages/txs-tracer-core/CHANGELOG.md @@ -1,3 +1,10 @@ +# [1.0.0-next.4](https://github.com/nabla-studio/cosmos-txs-tracer/compare/txs-tracer-core-v1.0.0-next.3...txs-tracer-core-v1.0.0-next.4) (2023-04-16) + + +### Features + +* **txs-tracer-core:** :sparkles: improve error handling ([1e91281](https://github.com/nabla-studio/cosmos-txs-tracer/commit/1e9128175a272b7d83202dbc4513f6add1d30650)) + # [1.0.0-next.3](https://github.com/nabla-studio/cosmos-txs-tracer/compare/txs-tracer-core-v1.0.0-next.2...txs-tracer-core-v1.0.0-next.3) (2023-04-13) diff --git a/packages/txs-tracer-core/package.json b/packages/txs-tracer-core/package.json index cefc80f..06a7c97 100644 --- a/packages/txs-tracer-core/package.json +++ b/packages/txs-tracer-core/package.json @@ -1,6 +1,6 @@ { "name": "@nabla-studio/txs-tracer-core", - "version": "1.0.0-next.3", + "version": "1.0.0-next.4", "description": "A series of state machines useful for tracking transactions for the Cosmos blockchain ecosystem", "type": "module", "repository": { From 4c5efb369a2ded0c275ae23f8999b973eba427ed Mon Sep 17 00:00:00 2001 From: DavideSegullo Date: Mon, 17 Apr 2023 17:47:27 +0200 Subject: [PATCH 32/46] feat(txs-tracer-core): :sparkles: improve ibc tracing improved ibc tracing, loading and events to parent. --- .../ibc-trace-machine/ibc-trace-machine.ts | 194 ++++++++++++++---- .../src/lib/types/ibc-trace.ts | 14 +- packages/txs-tracer-core/src/lib/utils/ibc.ts | 21 ++ .../txs-tracer-core/src/lib/utils/index.ts | 1 + 4 files changed, 185 insertions(+), 45 deletions(-) create mode 100644 packages/txs-tracer-core/src/lib/utils/ibc.ts diff --git a/packages/txs-tracer-core/src/lib/machines/ibc-trace-machine/ibc-trace-machine.ts b/packages/txs-tracer-core/src/lib/machines/ibc-trace-machine/ibc-trace-machine.ts index deb4364..8df29bb 100644 --- a/packages/txs-tracer-core/src/lib/machines/ibc-trace-machine/ibc-trace-machine.ts +++ b/packages/txs-tracer-core/src/lib/machines/ibc-trace-machine/ibc-trace-machine.ts @@ -1,4 +1,3 @@ -import { Attribute, Event, IndexedTx } from '@cosmjs/stargate'; import { assign, createMachine, @@ -9,6 +8,7 @@ import { } from 'xstate'; import { IBCTraceAckEventPayload, + IBCTraceRecvEventPayload, IBCTraceContext, IBCTraceEvents, IBCTraceFinalState, @@ -16,8 +16,25 @@ import { TxTraceFinalState, } from '../../types'; import { txTraceMachine } from '../txs-trace-machine'; +import { getPacketSequence } from '../../utils'; -const { choose } = actions; +const { choose, sendParent } = actions; + +const initialContext: IBCTraceContext = { + subscribeTimeout: 60_000, + connectionTimeout: 10_000, + websocketUrl: 'wss://juno.com', + dstWebsocketUrl: 'wss://rpc-osmosis.blockapsis.com', + loading: false, + currentStep: 0, + errorCode: 0, + query: '', + srcChannel: '', // ex: channel-140 + dstChannel: '', // ex: channel-3316 + transferTx: undefined, + recvTx: undefined, + ackTx: undefined, +}; export const ibcTraceMachine = createMachine( { @@ -38,6 +55,9 @@ export const ibcTraceMachine = createMachine( websocketUrl: (_, event) => { return event.data.websocketUrl; }, + dstWebsocketUrl: (_, event) => { + return event.data.dstWebsocketUrl; + }, query: (_, event) => { return event.data.query; }, @@ -58,7 +78,7 @@ export const ibcTraceMachine = createMachine( actions: choose< IBCTraceContext, DoneInvokeEvent, - DoneInvokeEvent + DoneInvokeEvent >([ { cond: (_, event) => { @@ -72,10 +92,10 @@ export const ibcTraceMachine = createMachine( actions: raise< IBCTraceContext, DoneInvokeEvent, - DoneInvokeEvent + DoneInvokeEvent >((_, event) => { return { - type: 'TRACE_ACK', + type: 'TRACE_RECV', data: { tx: event.data.txs ? event.data.txs[0] : undefined, }, @@ -98,8 +118,7 @@ export const ibcTraceMachine = createMachine( }, }, entry: [ - 'toggleLoading', - 'increaseStep', + 'startLoading', sendTo('sendPacketTrace', (ctx, event) => ({ type: 'TRACE', data: { @@ -108,12 +127,110 @@ export const ibcTraceMachine = createMachine( }, })), ], - exit: ['toggleLoading'], + on: { + TRACE_RECV: { + target: 'receive_packet', + actions: assign({ + transferTx: (_, event) => { + return event.data.tx; + }, + }), + }, + ON_ERROR: { + target: 'error', + actions: assign({ + errorCode: (_, event) => { + return event.data.code; + }, + }), + }, + }, + }, + /** + * The receive packet on the destination chain. + */ + receive_packet: { + invoke: { + id: 'sendReceivePacketTrace', + src: txTraceMachine, + data: { + subscribeTimeout: (context: IBCTraceContext) => context.subscribeTimeout, + connectionTimeout: (context: IBCTraceContext) => + context.connectionTimeout, + }, + onDone: { + actions: choose< + IBCTraceContext, + DoneInvokeEvent, + DoneInvokeEvent + >([ + { + cond: (_, event) => { + return ( + event.data.state === TxTraceFinalState.Result && + event.data.txs !== undefined && + event.data.txs.length > 0 && + event.data.txs[0].code === 0 + ); + }, + actions: raise< + IBCTraceContext, + DoneInvokeEvent, + DoneInvokeEvent + >((_, event) => { + return { + type: 'TRACE_ACK', + data: { + tx: event.data.txs ? event.data.txs[0] : undefined, + }, + }; + }), + }, + { + actions: raise((_, event) => ({ + type: 'ON_ERROR', + data: { + state: event.data.state, + code: + event.data.txs && event.data.txs.length > 0 + ? event.data.txs[0].code + : -1, + }, + })), + }, + ]), + }, + }, + entry: [ + 'increaseStep', + sendParent('INCREASE_STEP'), + sendTo('sendReceivePacketTrace', ctx => { + const tx = ctx.transferTx; + + if (tx) { + const { packetSequence } = getPacketSequence(tx, 'send_packet'); + + if (packetSequence) { + return { + type: 'TRACE', + data: { + query: `recv_packet.packet_src_channel='${ctx.srcChannel}' and recv_packet.packet_dst_channel='${ctx.dstChannel}' and recv_packet.packet_sequence=${packetSequence.value}`, + websocketUrl: ctx.dstWebsocketUrl, + }, + }; + } + } + + return { + type: 'TRACE', + }; + }), + ], on: { TRACE_ACK: { target: 'acknowledge_packet', actions: assign({ - ackTx: (_, event) => { + recvTx: (_, event) => { return event.data.tx; }, }), @@ -152,7 +269,7 @@ export const ibcTraceMachine = createMachine( event.data.txs[0].code === 0 ); }, - actions: raise((ctx, event) => { + actions: raise((_, event) => { return { type: 'TRACE_COMPLETED', data: { @@ -177,30 +294,22 @@ export const ibcTraceMachine = createMachine( }, }, entry: [ - 'toggleLoading', 'increaseStep', - sendTo('sendAckPacketTrace', (ctx, event) => { - const tx: IndexedTx | undefined = - event.type === 'TRACE_ACK' ? event.data.tx : undefined; + sendParent('INCREASE_STEP'), + sendTo('sendAckPacketTrace', ctx => { + const tx = ctx.transferTx; if (tx) { - const sendPacket: Event | undefined = tx.events.find( - e => e.type === 'send_packet', - ); - - if (sendPacket) { - const packetSequence: Attribute | undefined = - sendPacket.attributes.find(e => e.key === 'packet_sequence'); + const { packetSequence } = getPacketSequence(tx, 'send_packet'); - if (packetSequence) { - return { - type: 'TRACE', - data: { - query: `acknowledge_packet.packet_src_channel='${ctx.srcChannel}' and acknowledge_packet.packet_dst_channel='${ctx.dstChannel}' and acknowledge_packet.packet_sequence=${packetSequence.value}`, - websocketUrl: ctx.websocketUrl, - }, - }; - } + if (packetSequence) { + return { + type: 'TRACE', + data: { + query: `acknowledge_packet.packet_src_channel='${ctx.srcChannel}' and acknowledge_packet.packet_dst_channel='${ctx.dstChannel}' and acknowledge_packet.packet_sequence=${packetSequence.value}`, + websocketUrl: ctx.websocketUrl, + }, + }; } } @@ -209,7 +318,6 @@ export const ibcTraceMachine = createMachine( }; }), ], - exit: ['toggleLoading'], on: { TRACE_COMPLETED: { target: 'complete', @@ -230,14 +338,17 @@ export const ibcTraceMachine = createMachine( }, }, complete: { - entry: ['increaseStep'], + entry: ['stopLoading', 'increaseStep', sendParent('INCREASE_STEP')], type: 'final', data: ctx => ({ state: IBCTraceFinalState.Complete, - tx: ctx.ackTx, + transferTx: ctx.transferTx, + recvTx: ctx.recvTx, + ackTx: ctx.ackTx, }), }, error: { + entry: ['stopLoading'], type: 'final', data: ctx => ({ state: IBCTraceFinalState.Error, @@ -250,23 +361,18 @@ export const ibcTraceMachine = createMachine( events: {} as IBCTraceEvents, }, context: { - subscribeTimeout: 60_000, - connectionTimeout: 10_000, - websocketUrl: 'wss://rpc-osmosis.blockapsis.com', - loading: false, - currentStep: 0, - errorCode: 0, - query: '', - srcChannel: '', // ex: channel-140 - dstChannel: '', // ex: channel-3316 + ...initialContext, }, predictableActionArguments: true, preserveActionOrder: true, }, { actions: { - toggleLoading: context => { - context.loading = !context.loading; + startLoading: context => { + context.loading = true; + }, + stopLoading: context => { + context.loading = false; }, increaseStep: context => { context.currentStep = context.currentStep + 1; diff --git a/packages/txs-tracer-core/src/lib/types/ibc-trace.ts b/packages/txs-tracer-core/src/lib/types/ibc-trace.ts index 27f8daf..1ba18aa 100644 --- a/packages/txs-tracer-core/src/lib/types/ibc-trace.ts +++ b/packages/txs-tracer-core/src/lib/types/ibc-trace.ts @@ -13,12 +13,16 @@ export type IBCTraceContext = Omit< currentStep: number; srcChannel: string; dstChannel: string; + dstWebsocketUrl: string; errorCode?: number; txs?: IndexedTx; + transferTx?: IndexedTx; ackTx?: IndexedTx; + recvTx?: IndexedTx; }; export type IBCTraceEventPayload = TxTraceEventPayload & { + dstWebsocketUrl: string; srcChannel: string; dstChannel: string; }; @@ -32,6 +36,8 @@ export type IBCTraceAckEventPayload = { tx?: IndexedTx; }; +export type IBCTraceRecvEventPayload = IBCTraceAckEventPayload; + export const IBCTraceFinalState = { Complete: 'complete', Error: 'error', @@ -49,12 +55,18 @@ export type IBCTraceFinalStates = export interface IBCTraceDataResponse { state: IBCTraceFinalStates; - tx?: IndexedTx; + transferTx?: IndexedTx; + ackTx?: IndexedTx; + recvTx?: IndexedTx; errorCode?: number; } +export type IBCTraceParentEvents = { type: 'INCREASE_STEP' }; + export type IBCTraceEvents = + | IBCTraceParentEvents | { type: 'TRACE'; data: IBCTraceEventPayload } + | { type: 'TRACE_RECV'; data: IBCTraceRecvEventPayload } | { type: 'TRACE_ACK'; data: IBCTraceAckEventPayload } | { type: 'ON_ERROR'; data: IBCMachineResultErrorPayload } | { type: 'TRACE_COMPLETED'; data: IBCTraceAckEventPayload }; diff --git a/packages/txs-tracer-core/src/lib/utils/ibc.ts b/packages/txs-tracer-core/src/lib/utils/ibc.ts new file mode 100644 index 0000000..a892510 --- /dev/null +++ b/packages/txs-tracer-core/src/lib/utils/ibc.ts @@ -0,0 +1,21 @@ +import { IndexedTx } from '@cosmjs/stargate'; + +export const getPacketSequence = (tx: IndexedTx, name: string) => { + const packet = tx.events.find(e => e.type === name); + + if (packet) { + const packetSequence = packet.attributes.find( + e => e.key === 'packet_sequence', + ); + + return { + packetSequence, + error: undefined, + }; + } + + return { + packetSequence: undefined, + error: undefined, + }; +}; diff --git a/packages/txs-tracer-core/src/lib/utils/index.ts b/packages/txs-tracer-core/src/lib/utils/index.ts index 211c4ad..173cc58 100644 --- a/packages/txs-tracer-core/src/lib/utils/index.ts +++ b/packages/txs-tracer-core/src/lib/utils/index.ts @@ -1,3 +1,4 @@ export * from './tx'; export * from './stream'; export * from './cross-swap'; +export * from './ibc'; From a95f50a8963be567566bb8dcdc259fbfa83840f7 Mon Sep 17 00:00:00 2001 From: DavideSegullo Date: Mon, 17 Apr 2023 19:04:32 +0200 Subject: [PATCH 33/46] feat(txs-tracer-core): :sparkles: improve cross swap trace --- .../cross-swap-trace-machine.ts | 79 +++++++++++++------ .../src/lib/types/cross-swap-trace.ts | 9 ++- .../src/lib/utils/cross-swap.ts | 66 ++++++++++------ 3 files changed, 106 insertions(+), 48 deletions(-) diff --git a/packages/txs-tracer-core/src/lib/machines/cross-swap-trace-machine/cross-swap-trace-machine.ts b/packages/txs-tracer-core/src/lib/machines/cross-swap-trace-machine/cross-swap-trace-machine.ts index 3c965d3..d41ff25 100644 --- a/packages/txs-tracer-core/src/lib/machines/cross-swap-trace-machine/cross-swap-trace-machine.ts +++ b/packages/txs-tracer-core/src/lib/machines/cross-swap-trace-machine/cross-swap-trace-machine.ts @@ -12,12 +12,16 @@ import { import { ibcTraceMachine } from '../ibc-trace-machine'; import { choose } from 'xstate/lib/actions'; import { txTraceMachine } from '../txs-trace-machine'; -import { getCrossSwapPacketSequence } from '../../utils'; +import { + getCrossSwapPacketSequence, + getFungibleTokenPacketResponses, +} from '../../utils'; const initialContext: CrossSwapTraceContext = { subscribeTimeout: 60_000, connectionTimeout: 10_000, - websocketUrl: 'wss://rpc-osmosis.blockapsis.com', + websocketUrl: '', + dstWebsocketUrl: '', loading: false, currentStep: 0, errorCode: 0, @@ -50,6 +54,9 @@ export const crossSwapTraceMachine = createMachine( websocketUrl: (_, event) => { return event.data.websocketUrl; }, + dstWebsocketUrl: (_, event) => { + return event.data.dstWebsocketUrl; + }, query: (_, event) => { return event.data.query; }, @@ -77,8 +84,9 @@ export const crossSwapTraceMachine = createMachine( cond: (_, event) => { return ( event.data.state === IBCTraceFinalState.Complete && - event.data.tx !== undefined && - getCrossSwapPacketSequence(event.data.tx).packetSequence !== undefined + event.data.ackTx !== undefined && + getCrossSwapPacketSequence(event.data.ackTx).packetSequence !== + undefined ); }, actions: raise< @@ -88,7 +96,7 @@ export const crossSwapTraceMachine = createMachine( >((_, event) => ({ type: 'TRACE_M2', data: { - tx: event.data.tx, + tx: event.data.ackTx, }, })), }, @@ -96,15 +104,15 @@ export const crossSwapTraceMachine = createMachine( cond: (_, event) => { return ( event.data.state === IBCTraceFinalState.Complete && - event.data.tx !== undefined && - getCrossSwapPacketSequence(event.data.tx).error !== undefined + event.data.ackTx !== undefined && + getCrossSwapPacketSequence(event.data.ackTx).error !== undefined ); }, actions: raise((_, event) => { let errorMessage: string | undefined = ''; - if (event.data.tx) { - const data = getCrossSwapPacketSequence(event.data.tx); + if (event.data.ackTx) { + const data = getCrossSwapPacketSequence(event.data.ackTx); errorMessage = data.error; } @@ -133,18 +141,25 @@ export const crossSwapTraceMachine = createMachine( }, entry: [ 'startLoading', - 'increaseStep', sendTo('traceIBCM1', (ctx, event) => ({ type: 'TRACE', data: { query: event.type === 'TRACE' ? event.data.query : '', websocketUrl: ctx.websocketUrl, + dstWebsocketUrl: ctx.dstWebsocketUrl, srcChannel: ctx.srcChannel, dstChannel: ctx.dstChannel, }, })), ], on: { + INCREASE_STEP: { + actions: assign({ + currentStep: ctx => { + return ctx.currentStep + 1; + }, + }), + }, TRACE_M2: { target: 'trace_ibc_m2', actions: assign({ @@ -181,12 +196,18 @@ export const crossSwapTraceMachine = createMachine( >([ { cond: (_, event) => { - return ( + if ( event.data.state === TxTraceFinalState.Result && event.data.txs !== undefined && event.data.txs.length > 0 && event.data.txs[0].code === 0 - ); + ) { + const { error } = getFungibleTokenPacketResponses(event.data.txs[0]); + + return !error; + } + + return false; }, actions: raise((_, event) => ({ type: 'ON_COMPLETE', @@ -196,22 +217,31 @@ export const crossSwapTraceMachine = createMachine( })), }, { - actions: raise((_, event) => ({ - type: 'ON_ERROR', - data: { - state: event.data.state, - code: - event.data.txs && event.data.txs.length > 0 - ? event.data.txs[0].code - : -1, - }, - })), + actions: raise((_, event) => { + let errorMessage: string | undefined = undefined; + let code = -1; + + if (event.data.txs && event.data.txs.length > 0) { + const tx = event.data.txs[0]; + + errorMessage = getFungibleTokenPacketResponses(tx).error?.value; + code = tx.code; + } + + return { + type: 'ON_ERROR', + data: { + state: event.data.state, + errorMessage, + code, + }, + }; + }), }, ]), }, }, entry: [ - 'increaseStep', sendTo('traceIBCM2', (ctx: CrossSwapTraceContext) => { const tx = ctx.M1Tx; @@ -246,6 +276,9 @@ export const crossSwapTraceMachine = createMachine( ON_ERROR: { target: 'error', actions: assign({ + errorMessage: (_, event) => { + return event.data.errorMessage; + }, errorCode: (_, event) => { return event.data.code; }, diff --git a/packages/txs-tracer-core/src/lib/types/cross-swap-trace.ts b/packages/txs-tracer-core/src/lib/types/cross-swap-trace.ts index 4280ca4..a13b23a 100644 --- a/packages/txs-tracer-core/src/lib/types/cross-swap-trace.ts +++ b/packages/txs-tracer-core/src/lib/types/cross-swap-trace.ts @@ -4,6 +4,7 @@ import { IBCTraceAckEventPayload, IBCTraceContext, IBCTraceEventPayload, + IBCTraceParentEvents, } from './ibc-trace'; export type CrossSwapTraceContext = Omit & { @@ -12,6 +13,11 @@ export type CrossSwapTraceContext = Omit & { errorMessage?: string; }; +export type CrossSwapMachineResultErrorPayload = + IBCMachineResultErrorPayload & { + errorMessage?: string; + }; + export const CrossSwapTraceFinalState = { Complete: 'complete', Error: 'error', @@ -28,9 +34,10 @@ export type CrossSwapTraceFinalStates = (typeof CrossSwapTraceFinalState)[keyof typeof CrossSwapTraceFinalState]; export type CrossSwapTraceEvents = + | IBCTraceParentEvents | { type: 'TRACE'; data: IBCTraceEventPayload } | { type: 'TRACE_M2'; data: IBCTraceAckEventPayload } | { type: 'ON_COMPLETE'; data: IBCTraceAckEventPayload } - | { type: 'ON_ERROR'; data: IBCMachineResultErrorPayload } + | { type: 'ON_ERROR'; data: CrossSwapMachineResultErrorPayload } | { type: 'RESET' } | { type: 'TRACE_COMPLETED' }; diff --git a/packages/txs-tracer-core/src/lib/utils/cross-swap.ts b/packages/txs-tracer-core/src/lib/utils/cross-swap.ts index 0efe609..2e13b2d 100644 --- a/packages/txs-tracer-core/src/lib/utils/cross-swap.ts +++ b/packages/txs-tracer-core/src/lib/utils/cross-swap.ts @@ -1,40 +1,58 @@ import { IndexedTx } from '@cosmjs/stargate'; import { SwapContractResponseRaw, SwapContractResponse } from '../types'; import { fromAscii, fromBase64 } from '@cosmjs/encoding'; +import { Attribute } from '@cosmjs/stargate'; -export const getCrossSwapPacketSequence = (tx: IndexedTx) => { - const events = [...tx.events].reverse(); - const fungibleTokenPacket = events.find( +export const getFungibleTokenPacketResponses = (tx: IndexedTx) => { + const fungibleTokenPackets = tx.events.filter( e => e.type === 'fungible_token_packet', ); - if (fungibleTokenPacket) { - const success = fungibleTokenPacket.attributes.find(e => e.key === 'success'); + let success: Attribute | undefined = undefined; + let error: Attribute | undefined = undefined; - if (success) { - const responseRaw: SwapContractResponseRaw = JSON.parse(success.value); + for (const fungibleTokenPacket of fungibleTokenPackets) { + success = fungibleTokenPacket.attributes.find(e => e.key === 'success'); - const response: SwapContractResponse = { - contract_result: JSON.parse( - fromAscii(fromBase64(responseRaw.contract_result)), - ), - ibc_ack: JSON.parse(fromAscii(fromBase64(responseRaw.ibc_ack))), - }; + const currentError = fungibleTokenPacket.attributes.find( + e => e.key === 'error', + ); - return { - packetSequence: response.contract_result.packet_sequence, - error: undefined, - }; + if (currentError) { + error = currentError; } + } - const error = fungibleTokenPacket.attributes.find(e => e.key === 'error'); + return { + success, + error, + }; +}; - if (error) { - return { - packetSequence: undefined, - error: error.value, - }; - } +export const getCrossSwapPacketSequence = (tx: IndexedTx) => { + const { success, error } = getFungibleTokenPacketResponses(tx); + + if (success) { + const responseRaw: SwapContractResponseRaw = JSON.parse(success.value); + + const response: SwapContractResponse = { + contract_result: JSON.parse( + fromAscii(fromBase64(responseRaw.contract_result)), + ), + ibc_ack: JSON.parse(fromAscii(fromBase64(responseRaw.ibc_ack))), + }; + + return { + packetSequence: response.contract_result.packet_sequence, + error: undefined, + }; + } + + if (error) { + return { + packetSequence: undefined, + error: error.value, + }; } return { From ef6bf82eeafec15cba2d88a90c5b076a520a9545 Mon Sep 17 00:00:00 2001 From: DavideSegullo Date: Mon, 17 Apr 2023 19:09:21 +0200 Subject: [PATCH 34/46] feat(txs-tracer-core): :sparkles: add total steps --- .../cross-swap-trace-machine/cross-swap-trace-machine.ts | 1 + packages/txs-tracer-core/src/lib/types/cross-swap-trace.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/packages/txs-tracer-core/src/lib/machines/cross-swap-trace-machine/cross-swap-trace-machine.ts b/packages/txs-tracer-core/src/lib/machines/cross-swap-trace-machine/cross-swap-trace-machine.ts index d41ff25..ce5f858 100644 --- a/packages/txs-tracer-core/src/lib/machines/cross-swap-trace-machine/cross-swap-trace-machine.ts +++ b/packages/txs-tracer-core/src/lib/machines/cross-swap-trace-machine/cross-swap-trace-machine.ts @@ -24,6 +24,7 @@ const initialContext: CrossSwapTraceContext = { dstWebsocketUrl: '', loading: false, currentStep: 0, + totalSteps: 4, errorCode: 0, errorMessage: '', srcChannel: '', diff --git a/packages/txs-tracer-core/src/lib/types/cross-swap-trace.ts b/packages/txs-tracer-core/src/lib/types/cross-swap-trace.ts index a13b23a..0b41175 100644 --- a/packages/txs-tracer-core/src/lib/types/cross-swap-trace.ts +++ b/packages/txs-tracer-core/src/lib/types/cross-swap-trace.ts @@ -11,6 +11,7 @@ export type CrossSwapTraceContext = Omit & { M1Tx?: IndexedTx; M2Tx?: IndexedTx; errorMessage?: string; + totalSteps: number; }; export type CrossSwapMachineResultErrorPayload = From c0effd6dedb322835da2f979df8b0c1d5274b143 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Mon, 17 Apr 2023 17:12:10 +0000 Subject: [PATCH 35/46] chore(release): 1.0.0-next.5 [skip ci] # [1.0.0-next.5](https://github.com/nabla-studio/cosmos-txs-tracer/compare/txs-tracer-core-v1.0.0-next.4...txs-tracer-core-v1.0.0-next.5) (2023-04-17) ### Features * **txs-tracer-core:** :sparkles: add total steps ([ef6bf82](https://github.com/nabla-studio/cosmos-txs-tracer/commit/ef6bf82eeafec15cba2d88a90c5b076a520a9545)) * **txs-tracer-core:** :sparkles: improve cross swap trace ([a95f50a](https://github.com/nabla-studio/cosmos-txs-tracer/commit/a95f50a8963be567566bb8dcdc259fbfa83840f7)) * **txs-tracer-core:** :sparkles: improve ibc tracing ([4c5efb3](https://github.com/nabla-studio/cosmos-txs-tracer/commit/4c5efb369a2ded0c275ae23f8999b973eba427ed)) --- packages/txs-tracer-core/CHANGELOG.md | 9 +++++++++ packages/txs-tracer-core/package.json | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/packages/txs-tracer-core/CHANGELOG.md b/packages/txs-tracer-core/CHANGELOG.md index 03c8244..29251d2 100644 --- a/packages/txs-tracer-core/CHANGELOG.md +++ b/packages/txs-tracer-core/CHANGELOG.md @@ -1,3 +1,12 @@ +# [1.0.0-next.5](https://github.com/nabla-studio/cosmos-txs-tracer/compare/txs-tracer-core-v1.0.0-next.4...txs-tracer-core-v1.0.0-next.5) (2023-04-17) + + +### Features + +* **txs-tracer-core:** :sparkles: add total steps ([ef6bf82](https://github.com/nabla-studio/cosmos-txs-tracer/commit/ef6bf82eeafec15cba2d88a90c5b076a520a9545)) +* **txs-tracer-core:** :sparkles: improve cross swap trace ([a95f50a](https://github.com/nabla-studio/cosmos-txs-tracer/commit/a95f50a8963be567566bb8dcdc259fbfa83840f7)) +* **txs-tracer-core:** :sparkles: improve ibc tracing ([4c5efb3](https://github.com/nabla-studio/cosmos-txs-tracer/commit/4c5efb369a2ded0c275ae23f8999b973eba427ed)) + # [1.0.0-next.4](https://github.com/nabla-studio/cosmos-txs-tracer/compare/txs-tracer-core-v1.0.0-next.3...txs-tracer-core-v1.0.0-next.4) (2023-04-16) diff --git a/packages/txs-tracer-core/package.json b/packages/txs-tracer-core/package.json index 06a7c97..501a82e 100644 --- a/packages/txs-tracer-core/package.json +++ b/packages/txs-tracer-core/package.json @@ -1,6 +1,6 @@ { "name": "@nabla-studio/txs-tracer-core", - "version": "1.0.0-next.4", + "version": "1.0.0-next.5", "description": "A series of state machines useful for tracking transactions for the Cosmos blockchain ecosystem", "type": "module", "repository": { From b3dde44f29524af0cd9fb7f9f003451964894be9 Mon Sep 17 00:00:00 2001 From: DavideSegullo Date: Wed, 19 Apr 2023 01:35:59 +0200 Subject: [PATCH 36/46] feat(txs-tracer-core): :sparkles: add tx hash context --- .../cross-swap-trace-machine/cross-swap-trace-machine.ts | 4 ++++ packages/txs-tracer-core/src/lib/types/cross-swap-trace.ts | 7 ++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/packages/txs-tracer-core/src/lib/machines/cross-swap-trace-machine/cross-swap-trace-machine.ts b/packages/txs-tracer-core/src/lib/machines/cross-swap-trace-machine/cross-swap-trace-machine.ts index ce5f858..c8b5291 100644 --- a/packages/txs-tracer-core/src/lib/machines/cross-swap-trace-machine/cross-swap-trace-machine.ts +++ b/packages/txs-tracer-core/src/lib/machines/cross-swap-trace-machine/cross-swap-trace-machine.ts @@ -30,6 +30,7 @@ const initialContext: CrossSwapTraceContext = { srcChannel: '', dstChannel: '', query: '', + txHash: '', }; export const crossSwapTraceMachine = createMachine( @@ -61,6 +62,9 @@ export const crossSwapTraceMachine = createMachine( query: (_, event) => { return event.data.query; }, + txHash: (_, event) => { + return event.data.txHash; + }, }), }, }, diff --git a/packages/txs-tracer-core/src/lib/types/cross-swap-trace.ts b/packages/txs-tracer-core/src/lib/types/cross-swap-trace.ts index 0b41175..f11c764 100644 --- a/packages/txs-tracer-core/src/lib/types/cross-swap-trace.ts +++ b/packages/txs-tracer-core/src/lib/types/cross-swap-trace.ts @@ -10,6 +10,7 @@ import { export type CrossSwapTraceContext = Omit & { M1Tx?: IndexedTx; M2Tx?: IndexedTx; + txHash: string; errorMessage?: string; totalSteps: number; }; @@ -19,6 +20,10 @@ export type CrossSwapMachineResultErrorPayload = errorMessage?: string; }; +export type CrossSwapTraceEventPayload = IBCTraceEventPayload & { + txHash: string; +}; + export const CrossSwapTraceFinalState = { Complete: 'complete', Error: 'error', @@ -36,7 +41,7 @@ export type CrossSwapTraceFinalStates = export type CrossSwapTraceEvents = | IBCTraceParentEvents - | { type: 'TRACE'; data: IBCTraceEventPayload } + | { type: 'TRACE'; data: CrossSwapTraceEventPayload } | { type: 'TRACE_M2'; data: IBCTraceAckEventPayload } | { type: 'ON_COMPLETE'; data: IBCTraceAckEventPayload } | { type: 'ON_ERROR'; data: CrossSwapMachineResultErrorPayload } From ac1338683580e74ad6569b1932df568b6cbb4661 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Tue, 18 Apr 2023 23:38:08 +0000 Subject: [PATCH 37/46] chore(release): 1.0.0-next.6 [skip ci] # [1.0.0-next.6](https://github.com/nabla-studio/cosmos-txs-tracer/compare/txs-tracer-core-v1.0.0-next.5...txs-tracer-core-v1.0.0-next.6) (2023-04-18) ### Features * **txs-tracer-core:** :sparkles: add tx hash context ([b3dde44](https://github.com/nabla-studio/cosmos-txs-tracer/commit/b3dde44f29524af0cd9fb7f9f003451964894be9)) --- packages/txs-tracer-core/CHANGELOG.md | 7 +++++++ packages/txs-tracer-core/package.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/packages/txs-tracer-core/CHANGELOG.md b/packages/txs-tracer-core/CHANGELOG.md index 29251d2..9a1cc1f 100644 --- a/packages/txs-tracer-core/CHANGELOG.md +++ b/packages/txs-tracer-core/CHANGELOG.md @@ -1,3 +1,10 @@ +# [1.0.0-next.6](https://github.com/nabla-studio/cosmos-txs-tracer/compare/txs-tracer-core-v1.0.0-next.5...txs-tracer-core-v1.0.0-next.6) (2023-04-18) + + +### Features + +* **txs-tracer-core:** :sparkles: add tx hash context ([b3dde44](https://github.com/nabla-studio/cosmos-txs-tracer/commit/b3dde44f29524af0cd9fb7f9f003451964894be9)) + # [1.0.0-next.5](https://github.com/nabla-studio/cosmos-txs-tracer/compare/txs-tracer-core-v1.0.0-next.4...txs-tracer-core-v1.0.0-next.5) (2023-04-17) diff --git a/packages/txs-tracer-core/package.json b/packages/txs-tracer-core/package.json index 501a82e..df5cc51 100644 --- a/packages/txs-tracer-core/package.json +++ b/packages/txs-tracer-core/package.json @@ -1,6 +1,6 @@ { "name": "@nabla-studio/txs-tracer-core", - "version": "1.0.0-next.5", + "version": "1.0.0-next.6", "description": "A series of state machines useful for tracking transactions for the Cosmos blockchain ecosystem", "type": "module", "repository": { From 35ae10193ff338994820057e6853b2908bd20cec Mon Sep 17 00:00:00 2001 From: DavideSegullo Date: Wed, 19 Apr 2023 12:13:04 +0200 Subject: [PATCH 38/46] feat: :arrow_up: upgrade cosmos-kit deps --- package.json | 6 +- pnpm-lock.yaml | 209 ++++++++++++++++++++++++++----------------------- 2 files changed, 115 insertions(+), 100 deletions(-) diff --git a/package.json b/package.json index 300b275..811a183 100644 --- a/package.json +++ b/package.json @@ -23,9 +23,9 @@ "@cosmjs/proto-signing": "^0.30.1", "@cosmjs/stargate": "^0.30.1", "@cosmjs/tendermint-rpc": "^0.30.1", - "@cosmos-kit/core": "^1.1.4", - "@cosmos-kit/keplr": "^0.33.4", - "@cosmos-kit/react": "^1.3.1", + "@cosmos-kit/core": "^1.3.4", + "@cosmos-kit/keplr": "^0.33.18", + "@cosmos-kit/react": "^1.3.15", "@emotion/react": "11.10.6", "@emotion/server": "11.10.0", "@emotion/styled": "11.10.6", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 7e2c052..614f507 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -50,14 +50,14 @@ dependencies: specifier: ^0.30.1 version: 0.30.1 '@cosmos-kit/core': - specifier: ^1.1.4 - version: 1.1.4(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(cosmjs-types@0.7.2)(typescript@4.9.5) + specifier: ^1.3.4 + version: 1.3.4(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(cosmjs-types@0.7.2)(typescript@4.9.5) '@cosmos-kit/keplr': - specifier: ^0.33.4 - version: 0.33.4(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(cosmjs-types@0.7.2)(typescript@4.9.5) + specifier: ^0.33.18 + version: 0.33.18(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(cosmjs-types@0.7.2)(typescript@4.9.5) '@cosmos-kit/react': - specifier: ^1.3.1 - version: 1.3.1(@chakra-ui/form-control@2.0.17)(@chakra-ui/icon@3.0.15)(@chakra-ui/layout@2.1.16)(@chakra-ui/media-query@3.2.12)(@chakra-ui/menu@2.1.9)(@chakra-ui/spinner@2.0.12)(@chakra-ui/system@2.5.1)(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(@types/react@18.0.28)(cosmjs-types@0.7.2)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5) + specifier: ^1.3.15 + version: 1.3.15(@chakra-ui/form-control@2.0.17)(@chakra-ui/icon@3.0.15)(@chakra-ui/layout@2.1.16)(@chakra-ui/media-query@3.2.12)(@chakra-ui/menu@2.1.9)(@chakra-ui/spinner@2.0.12)(@chakra-ui/system@2.5.1)(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(@types/react@18.0.28)(cosmjs-types@0.7.2)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5) '@emotion/react': specifier: 11.10.6 version: 11.10.6(@types/react@18.0.28)(react@18.2.0) @@ -3331,7 +3331,7 @@ packages: qrcode.react: 3.1.0(react@18.2.0) react: 18.2.0 react-icons: 4.4.0(react@18.2.0) - react-resize-detector: 8.0.4(react-dom@18.2.0)(react@18.2.0) + react-resize-detector: 8.1.0(react-dom@18.2.0)(react@18.2.0) transitivePeerDependencies: - '@chakra-ui/form-control' - '@chakra-ui/icon' @@ -3361,7 +3361,7 @@ packages: qrcode.react: 3.1.0(react@18.2.0) react: 18.2.0 react-icons: 4.4.0(react@18.2.0) - react-resize-detector: 8.0.4(react-dom@18.2.0)(react@18.2.0) + react-resize-detector: 8.1.0(react-dom@18.2.0)(react@18.2.0) transitivePeerDependencies: - '@chakra-ui/form-control' - '@chakra-ui/icon' @@ -3374,8 +3374,8 @@ packages: - react-dom dev: false - /@cosmos-kit/core@1.1.4(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(cosmjs-types@0.7.2)(typescript@4.9.5): - resolution: {integrity: sha512-DMOHu7HPP8k7pu9TcL5U+1ehUH1eBbnwRt/r2PXRxPdxjxw5ZB6nGJ99A9qXb1hnnuUdGB+2AqtQsv7hnHUIKw==} + /@cosmos-kit/core@1.3.4(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(cosmjs-types@0.7.2)(typescript@4.9.5): + resolution: {integrity: sha512-7RiZkPKmX0qt5zyuT3dKNyk7yvj2jh9gwPGBdRBALw0nzpMzwY0jYQs/ARJXMJS6jliTK1N1DjZoJOjKgijeMw==} peerDependencies: '@cosmjs/amino': '>= 0.28' '@cosmjs/cosmwasm-stargate': '>= 0.28' @@ -3402,8 +3402,8 @@ packages: - typescript dev: false - /@cosmos-kit/keplr-extension@0.33.4(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(cosmjs-types@0.7.2)(typescript@4.9.5): - resolution: {integrity: sha512-2hdnssEYiys3dRrM/3vanGdbkPP8ufjfvbAbzX95THzmtQylPdXEeZIY7cF3ReJFKCONZccp0jp1kVcJFZnMAg==} + /@cosmos-kit/keplr-extension@0.33.16(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(cosmjs-types@0.7.2)(typescript@4.9.5): + resolution: {integrity: sha512-/mLoiJm/oNAeM667Q/LlMmBpiXZZV6UJMeQYpHDf5vY5q3QGQlMMvraVQyy3ODzTULXIypi1ZDT4f+ScgMd9tQ==} peerDependencies: '@cosmjs/amino': '>= 0.28' '@cosmjs/proto-signing': '>= 0.28' @@ -3411,7 +3411,7 @@ packages: '@chain-registry/keplr': 1.8.0 '@cosmjs/amino': 0.30.1 '@cosmjs/proto-signing': 0.30.1 - '@cosmos-kit/core': 1.1.4(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(cosmjs-types@0.7.2)(typescript@4.9.5) + '@cosmos-kit/core': 1.3.4(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(cosmjs-types@0.7.2)(typescript@4.9.5) transitivePeerDependencies: - '@cosmjs/cosmwasm-stargate' - '@cosmjs/stargate' @@ -3425,8 +3425,8 @@ packages: - typescript dev: false - /@cosmos-kit/keplr-mobile@0.33.4(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(cosmjs-types@0.7.2)(typescript@4.9.5): - resolution: {integrity: sha512-3AOXMtMuLNe6NRGD2AgK3A0C+5VL5txSehjx7vkK7qH/M1WrjO1N9ZySfPsit8cbKdY85FCnScjWN/AvK13Ofw==} + /@cosmos-kit/keplr-mobile@0.33.18(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(cosmjs-types@0.7.2)(typescript@4.9.5): + resolution: {integrity: sha512-A3V4ZCGWrqyjYiyHo3yuhW0fFb6QlYSq+Mq1mm/OmiZv+SYHPFOL/hst6DW2g3ekj5ppn1P0YMZhNvBEP91MNw==} peerDependencies: '@cosmjs/amino': '>= 0.28' '@cosmjs/proto-signing': '>= 0.28' @@ -3434,8 +3434,8 @@ packages: '@chain-registry/keplr': 1.8.0 '@cosmjs/amino': 0.30.1 '@cosmjs/proto-signing': 0.30.1 - '@cosmos-kit/core': 1.1.4(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(cosmjs-types@0.7.2)(typescript@4.9.5) - '@cosmos-kit/walletconnect': 0.2.4(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(cosmjs-types@0.7.2)(typescript@4.9.5) + '@cosmos-kit/core': 1.3.4(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(cosmjs-types@0.7.2)(typescript@4.9.5) + '@cosmos-kit/walletconnect': 0.2.17(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(cosmjs-types@0.7.2)(typescript@4.9.5) transitivePeerDependencies: - '@cosmjs/cosmwasm-stargate' - '@cosmjs/stargate' @@ -3451,8 +3451,8 @@ packages: - utf-8-validate dev: false - /@cosmos-kit/keplr@0.33.4(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(cosmjs-types@0.7.2)(typescript@4.9.5): - resolution: {integrity: sha512-25kwUCERtsek04A7D5mw59zO2rAdK9h1fOrZbBQclzkz+pbOMwC8v0+la4zJt8K/Gq7DjD3J/rG5pRUnZHdgkg==} + /@cosmos-kit/keplr@0.33.18(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(cosmjs-types@0.7.2)(typescript@4.9.5): + resolution: {integrity: sha512-SAKcJi+Ecm34md5ns+v7tfGSIxaDvMhTSqPcW8ENu/0uhs5Ia4P07bw9BIAFl68zWJnLCINVXVBwnGcd0ZKnPw==} peerDependencies: '@cosmjs/amino': '>= 0.28' '@cosmjs/cosmwasm-stargate': '>= 0.28' @@ -3463,8 +3463,8 @@ packages: '@cosmjs/cosmwasm-stargate': 0.30.1 '@cosmjs/proto-signing': 0.30.1 '@cosmjs/stargate': 0.30.1 - '@cosmos-kit/keplr-extension': 0.33.4(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(cosmjs-types@0.7.2)(typescript@4.9.5) - '@cosmos-kit/keplr-mobile': 0.33.4(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(cosmjs-types@0.7.2)(typescript@4.9.5) + '@cosmos-kit/keplr-extension': 0.33.16(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(cosmjs-types@0.7.2)(typescript@4.9.5) + '@cosmos-kit/keplr-mobile': 0.33.18(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(cosmjs-types@0.7.2)(typescript@4.9.5) transitivePeerDependencies: - '@react-native-async-storage/async-storage' - '@swc/core' @@ -3478,8 +3478,36 @@ packages: - utf-8-validate dev: false - /@cosmos-kit/react@1.3.1(@chakra-ui/form-control@2.0.17)(@chakra-ui/icon@3.0.15)(@chakra-ui/layout@2.1.16)(@chakra-ui/media-query@3.2.12)(@chakra-ui/menu@2.1.9)(@chakra-ui/spinner@2.0.12)(@chakra-ui/system@2.5.1)(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(@types/react@18.0.28)(cosmjs-types@0.7.2)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5): - resolution: {integrity: sha512-h2IXOMS2alGa0YuGVa/dxGT9Qz6p3FpjtPpJkhI4ksMac4qe/OsDD9IrWnuw4xuVE/X/S4QV5eIKcykLJWR6Yg==} + /@cosmos-kit/react-lite@1.3.15(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(cosmjs-types@0.7.2)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5): + resolution: {integrity: sha512-Zcm1WEM3OWqb+U4Apg4qxxAeSU5w9MBA0cLn/kWtPgTWwLU64IQ0UaHn0YvaquDCQkMjIEGELtRlgWvkwAt5jQ==} + peerDependencies: + '@cosmjs/cosmwasm-stargate': '>= 0.28' + '@cosmjs/stargate': '>= 0.28' + react: '18' + react-dom: '18' + dependencies: + '@babel/runtime': 7.11.2 + '@chain-registry/types': 0.13.1 + '@cosmjs/cosmwasm-stargate': 0.30.1 + '@cosmjs/stargate': 0.30.1 + '@cosmos-kit/core': 1.3.4(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(cosmjs-types@0.7.2)(typescript@4.9.5) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + transitivePeerDependencies: + - '@cosmjs/amino' + - '@cosmjs/proto-signing' + - '@react-native-async-storage/async-storage' + - '@swc/core' + - '@swc/wasm' + - '@types/node' + - cosmjs-types + - debug + - lokijs + - typescript + dev: false + + /@cosmos-kit/react@1.3.15(@chakra-ui/form-control@2.0.17)(@chakra-ui/icon@3.0.15)(@chakra-ui/layout@2.1.16)(@chakra-ui/media-query@3.2.12)(@chakra-ui/menu@2.1.9)(@chakra-ui/spinner@2.0.12)(@chakra-ui/system@2.5.1)(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(@types/react@18.0.28)(cosmjs-types@0.7.2)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5): + resolution: {integrity: sha512-VEXdllrv/rOTueaCbRZhAqKqUzsqUCAHVq4vr1GlzoKZ7KGgiiWqXMGM5/pTe1IIn7lSeFJCQ0tilESGfR6Gvg==} peerDependencies: '@cosmjs/cosmwasm-stargate': '>= 0.28' '@cosmjs/stargate': '>= 0.28' @@ -3492,13 +3520,11 @@ packages: '@cosmjs/cosmwasm-stargate': 0.30.1 '@cosmjs/stargate': 0.30.1 '@cosmology-ui/react': 0.1.21(@chakra-ui/form-control@2.0.17)(@chakra-ui/icon@3.0.15)(@chakra-ui/layout@2.1.16)(@chakra-ui/media-query@3.2.12)(@chakra-ui/menu@2.1.9)(@chakra-ui/spinner@2.0.12)(@chakra-ui/system@2.5.1)(@types/react@18.0.28)(react-dom@18.2.0)(react@18.2.0) - '@cosmos-kit/core': 1.1.4(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(cosmjs-types@0.7.2)(typescript@4.9.5) + '@cosmos-kit/core': 1.3.4(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(cosmjs-types@0.7.2)(typescript@4.9.5) + '@cosmos-kit/react-lite': 1.3.15(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(cosmjs-types@0.7.2)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5) '@emotion/react': 11.10.6(@types/react@18.0.28)(react@18.2.0) '@emotion/styled': 11.10.6(@emotion/react@11.10.6)(@types/react@18.0.28)(react@18.2.0) - '@walletconnect/types': 2.2.0(@types/node@18.14.2)(typescript@4.9.5) - bowser: 2.11.0 framer-motion: 9.1.7(react-dom@18.2.0)(react@18.2.0) - qrcode.react: 3.1.0(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) react-icons: 4.4.0(react@18.2.0) @@ -3523,8 +3549,8 @@ packages: - typescript dev: false - /@cosmos-kit/walletconnect@0.2.4(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(cosmjs-types@0.7.2)(typescript@4.9.5): - resolution: {integrity: sha512-uYq8EJTROhQo0yRiW2+E9Xr25sSEpYwXeX7S70QN6/F6XOeT4NkTGqS3/kDJ+9JnrfwyFaN8xk7F/T2w2a1Q8A==} + /@cosmos-kit/walletconnect@0.2.17(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(cosmjs-types@0.7.2)(typescript@4.9.5): + resolution: {integrity: sha512-cvE6r72OTuiK24b1CW2E3amha2XPmgaRKnkntjXRuAXod7ztvFvMZqjfapGX41TK617wdKK/cCTXuEwZ0z5e6A==} peerDependencies: '@cosmjs/amino': '>= 0.28' '@cosmjs/proto-signing': '>= 0.28' @@ -3532,10 +3558,10 @@ packages: '@babel/runtime': 7.11.2 '@cosmjs/amino': 0.30.1 '@cosmjs/proto-signing': 0.30.1 - '@cosmos-kit/core': 1.1.4(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(cosmjs-types@0.7.2)(typescript@4.9.5) - '@walletconnect/sign-client': 2.4.7(@types/node@18.14.2)(typescript@4.9.5) - '@walletconnect/types': 2.4.7(@types/node@18.14.2)(typescript@4.9.5) - '@walletconnect/utils': 2.4.7(@types/node@18.14.2)(typescript@4.9.5) + '@cosmos-kit/core': 1.3.4(@cosmjs/amino@0.30.1)(@cosmjs/cosmwasm-stargate@0.30.1)(@cosmjs/proto-signing@0.30.1)(@cosmjs/stargate@0.30.1)(@types/node@18.14.2)(cosmjs-types@0.7.2)(typescript@4.9.5) + '@walletconnect/sign-client': 2.7.0 + '@walletconnect/types': 2.7.0 + '@walletconnect/utils': 2.7.0 events: 3.3.0 transitivePeerDependencies: - '@cosmjs/cosmwasm-stargate' @@ -3984,14 +4010,14 @@ packages: '@ethersproject/logger': 5.7.0 dev: false - /@floating-ui/core@1.2.2: - resolution: {integrity: sha512-FaO9KVLFnxknZaGWGmNtjD2CVFuc0u4yeGEofoyXO2wgRA7fLtkngT6UB0vtWQWuhH3iMTZZ/Y89CMeyGfn8pA==} + /@floating-ui/core@1.2.6: + resolution: {integrity: sha512-EvYTiXet5XqweYGClEmpu3BoxmsQ4hkj3QaYA6qEnigCWffTP3vNRwBReTdrwDwo7OoJ3wM8Uoe9Uk4n+d4hfg==} dev: false - /@floating-ui/dom@1.2.3: - resolution: {integrity: sha512-lK9cZUrHSJLMVAdCvDqs6Ug8gr0wmqksYiaoj/bxj2gweRQkSuhg2/V6Jswz2KiQ0RAULbqw1oQDJIMpQ5GfGA==} + /@floating-ui/dom@1.2.6: + resolution: {integrity: sha512-02vxFDuvuVPs22iJICacezYJyf7zwwOCWkPNkWNBr1U0Qt1cKFYzWvxts0AmqcOQGwt/3KJWcWIgtbUU38keyw==} dependencies: - '@floating-ui/core': 1.2.2 + '@floating-ui/core': 1.2.6 dev: false /@humanwhocodes/config-array@0.9.5: @@ -6462,33 +6488,28 @@ packages: sirv: 2.0.2 dev: true - /@walletconnect/core@2.4.7(@types/node@18.14.2)(typescript@4.9.5): - resolution: {integrity: sha512-w92NrtziqrWs070HJICGh80Vp60PaXu06OjNvOnVZEorbTipCWx4xxgcC2NhsT4TCQ8r1FOut6ahLe1PILuRsg==} + /@walletconnect/core@2.7.0: + resolution: {integrity: sha512-xUeFPpElybgn1a+lknqtHleei4VyuV/4qWgB1nP8qQUAO6a5pNsioODrnB2VAPdUHJYBdx2dCt2maRk6g53IPQ==} dependencies: - '@walletconnect/heartbeat': 1.2.0(@types/node@18.14.2)(typescript@4.9.5) - '@walletconnect/jsonrpc-provider': 1.0.8 - '@walletconnect/jsonrpc-utils': 1.0.6 - '@walletconnect/jsonrpc-ws-connection': 1.0.9 + '@walletconnect/heartbeat': 1.2.1 + '@walletconnect/jsonrpc-provider': 1.0.12 + '@walletconnect/jsonrpc-utils': 1.0.7 + '@walletconnect/jsonrpc-ws-connection': 1.0.11 '@walletconnect/keyvaluestorage': 1.0.2 '@walletconnect/logger': 2.0.1 '@walletconnect/relay-api': 1.0.9 '@walletconnect/relay-auth': 1.0.4 - '@walletconnect/safe-json': 1.0.1 + '@walletconnect/safe-json': 1.0.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.4.7(@types/node@18.14.2)(typescript@4.9.5) - '@walletconnect/utils': 2.4.7(@types/node@18.14.2)(typescript@4.9.5) + '@walletconnect/types': 2.7.0 + '@walletconnect/utils': 2.7.0 events: 3.3.0 lodash.isequal: 4.5.0 - pino: 7.11.0 uint8arrays: 3.1.1 transitivePeerDependencies: - '@react-native-async-storage/async-storage' - - '@swc/core' - - '@swc/wasm' - - '@types/node' - bufferutil - lokijs - - typescript - utf-8-validate dev: false @@ -6521,11 +6542,19 @@ packages: - typescript dev: false - /@walletconnect/jsonrpc-provider@1.0.8: - resolution: {integrity: sha512-M44vzTrF0TeDcxQorm2lJ5klmfqchYOZqmIHb5T9lIPA/rj22643P83j44flZLyzycPqy5UUlIH6foeBPwjxMg==} + /@walletconnect/heartbeat@1.2.1: + resolution: {integrity: sha512-yVzws616xsDLJxuG/28FqtZ5rzrTA4gUjdEMTbWB5Y8V1XHRmqq4efAxCw5ie7WjbXFSUyBHaWlMR+2/CpQC5Q==} + dependencies: + '@walletconnect/events': 1.0.1 + '@walletconnect/time': 1.0.2 + tslib: 1.14.1 + dev: false + + /@walletconnect/jsonrpc-provider@1.0.12: + resolution: {integrity: sha512-6uI2y5281gloZSzICOjk+CVC7CVu0MhtMt2Yzpj05lPb0pzm/bK2oZ2ibxwLerPrqpNt/5bIFVRmoOgPw1mHAQ==} dependencies: - '@walletconnect/jsonrpc-utils': 1.0.6 - '@walletconnect/safe-json': 1.0.1 + '@walletconnect/jsonrpc-utils': 1.0.7 + '@walletconnect/safe-json': 1.0.2 tslib: 1.14.1 dev: false @@ -6536,19 +6565,19 @@ packages: tslib: 1.14.1 dev: false - /@walletconnect/jsonrpc-utils@1.0.6: - resolution: {integrity: sha512-snp0tfkjPiDLQp/jrBewI+9SM33GPV4+Gjgldod6XQ7rFyQ5FZjnBxUkY4xWH0+arNxzQSi6v5iDXjCjSaorpg==} + /@walletconnect/jsonrpc-utils@1.0.7: + resolution: {integrity: sha512-zJziApzUF/Il4VcwabnaU+0yo1QI4eUkYX99zmCVTHJvZOf2l0zjADf/OpKqWyeNFC3Io56Z/8uJHVtcNVvyFA==} dependencies: '@walletconnect/environment': 1.0.1 '@walletconnect/jsonrpc-types': 1.0.2 tslib: 1.14.1 dev: false - /@walletconnect/jsonrpc-ws-connection@1.0.9: - resolution: {integrity: sha512-x1COaW6hhMLEo+ND5zF/siBGg5SEwC/gHjeRbJtK1CRiq9atkg/XR7JwtSNfMvYX/O3PRCVmuc5SP0RQio9JUw==} + /@walletconnect/jsonrpc-ws-connection@1.0.11: + resolution: {integrity: sha512-TiFJ6saasKXD+PwGkm5ZGSw0837nc6EeFmurSPgIT/NofnOV4Tv7CVJqGQN0rQYoJUSYu21cwHNYaFkzNpUN+w==} dependencies: - '@walletconnect/jsonrpc-utils': 1.0.6 - '@walletconnect/safe-json': 1.0.1 + '@walletconnect/jsonrpc-utils': 1.0.7 + '@walletconnect/safe-json': 1.0.2 events: 3.3.0 tslib: 1.14.1 ws: 7.5.9 @@ -6591,40 +6620,34 @@ packages: dependencies: '@stablelib/ed25519': 1.0.3 '@stablelib/random': 1.0.2 - '@walletconnect/safe-json': 1.0.1 + '@walletconnect/safe-json': 1.0.2 '@walletconnect/time': 1.0.2 tslib: 1.14.1 uint8arrays: 3.1.1 dev: false - /@walletconnect/safe-json@1.0.1: - resolution: {integrity: sha512-Fm7e31oSYY15NQr8SsLJheKAy5L744udZf2lJKcz6wFmPJEzf7hOF0866o/rrldRzJnjZ4H2GJ45pFudsnLW5A==} + /@walletconnect/safe-json@1.0.2: + resolution: {integrity: sha512-Ogb7I27kZ3LPC3ibn8ldyUr5544t3/STow9+lzz7Sfo808YD7SBWk7SAsdBFlYgP2zDRy2hS3sKRcuSRM0OTmA==} dependencies: tslib: 1.14.1 dev: false - /@walletconnect/sign-client@2.4.7(@types/node@18.14.2)(typescript@4.9.5): - resolution: {integrity: sha512-x5uxnHQkNSn0QNXUdPEfwy4o1Vyi2QIWkDGUh+pfSP4s2vN0+IJAcwqBqkPn+zJ1X7eKYLs+v0ih1eieciYMPA==} + /@walletconnect/sign-client@2.7.0: + resolution: {integrity: sha512-K99xa6GSFS04U+140yrIEi/VJJJ0Q1ov4jCaiqa9euILDKxlBsM7m5GR+9sq6oYyj18SluJY4CJTdeOXUJlarA==} dependencies: - '@walletconnect/core': 2.4.7(@types/node@18.14.2)(typescript@4.9.5) + '@walletconnect/core': 2.7.0 '@walletconnect/events': 1.0.1 - '@walletconnect/heartbeat': 1.2.0(@types/node@18.14.2)(typescript@4.9.5) - '@walletconnect/jsonrpc-provider': 1.0.8 - '@walletconnect/jsonrpc-utils': 1.0.6 + '@walletconnect/heartbeat': 1.2.1 + '@walletconnect/jsonrpc-utils': 1.0.7 '@walletconnect/logger': 2.0.1 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.4.7(@types/node@18.14.2)(typescript@4.9.5) - '@walletconnect/utils': 2.4.7(@types/node@18.14.2)(typescript@4.9.5) + '@walletconnect/types': 2.7.0 + '@walletconnect/utils': 2.7.0 events: 3.3.0 - pino: 7.11.0 transitivePeerDependencies: - '@react-native-async-storage/async-storage' - - '@swc/core' - - '@swc/wasm' - - '@types/node' - bufferutil - lokijs - - typescript - utf-8-validate dev: false @@ -6652,37 +6675,33 @@ packages: - typescript dev: false - /@walletconnect/types@2.4.7(@types/node@18.14.2)(typescript@4.9.5): - resolution: {integrity: sha512-1VaPdPJrE+UrEjAhK5bdxq2+MTo3DvUMmQeNUsp3vUGhocQXB9hJQQ1rYBknYYSyDu2rTksGCQ4nv3ZOqfxvHw==} + /@walletconnect/types@2.7.0: + resolution: {integrity: sha512-aMUDUtO79WSBtC/bDetE6aFwdgwJr0tJ8nC8gnAl5ELsrjygEKCn6M8Q+v6nP9svG9yf5Rds4cImxCT6BWwTyw==} dependencies: '@walletconnect/events': 1.0.1 - '@walletconnect/heartbeat': 1.2.0(@types/node@18.14.2)(typescript@4.9.5) + '@walletconnect/heartbeat': 1.2.1 '@walletconnect/jsonrpc-types': 1.0.2 '@walletconnect/keyvaluestorage': 1.0.2 '@walletconnect/logger': 2.0.1 events: 3.3.0 transitivePeerDependencies: - '@react-native-async-storage/async-storage' - - '@swc/core' - - '@swc/wasm' - - '@types/node' - lokijs - - typescript dev: false - /@walletconnect/utils@2.4.7(@types/node@18.14.2)(typescript@4.9.5): - resolution: {integrity: sha512-t3kW0qLClnejTTKg3y/o/MmJb5ZDGfD13YT9Nw56Up3qq/pwVfTtWjt8vJOQWMIm0hZgjgESivcf6/wuu3/Oqw==} + /@walletconnect/utils@2.7.0: + resolution: {integrity: sha512-k32jrQeyJsNZPdmtmg85Y3QgaS5YfzYSPrAxRC2uUD1ts7rrI6P5GG2iXNs3AvWKOuCgsp/PqU8s7AC7CRUscw==} dependencies: '@stablelib/chacha20poly1305': 1.0.1 '@stablelib/hkdf': 1.0.1 '@stablelib/random': 1.0.2 '@stablelib/sha256': 1.0.1 '@stablelib/x25519': 1.0.3 - '@walletconnect/jsonrpc-utils': 1.0.6 + '@walletconnect/jsonrpc-utils': 1.0.7 '@walletconnect/relay-api': 1.0.9 - '@walletconnect/safe-json': 1.0.1 + '@walletconnect/safe-json': 1.0.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.4.7(@types/node@18.14.2)(typescript@4.9.5) + '@walletconnect/types': 2.7.0 '@walletconnect/window-getters': 1.0.1 '@walletconnect/window-metadata': 1.0.1 detect-browser: 5.3.0 @@ -6690,11 +6709,7 @@ packages: uint8arrays: 3.1.1 transitivePeerDependencies: - '@react-native-async-storage/async-storage' - - '@swc/core' - - '@swc/wasm' - - '@types/node' - lokijs - - typescript dev: false /@walletconnect/window-getters@1.0.1: @@ -14126,8 +14141,8 @@ packages: use-sidecar: 1.1.2(@types/react@18.0.28)(react@18.2.0) dev: false - /react-resize-detector@8.0.4(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-ln9pMAob8y8mc9UI4aZuuWFiyMqBjnTs/sxe9Vs9dPXUjwCTeKK1FP8I75ufnb/2mEEZXG6wOo/fjMcBRRuAXw==} + /react-resize-detector@8.1.0(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-S7szxlaIuiy5UqLhLL1KY3aoyGHbZzsTpYal9eYMwCyKqoqoVLCmIgAgNyIM1FhnP2KyBygASJxdhejrzjMb+w==} peerDependencies: react: ^16.0.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0 @@ -14169,7 +14184,7 @@ packages: '@babel/runtime': 7.21.0 '@emotion/cache': 11.10.5 '@emotion/react': 11.10.6(@types/react@18.0.28)(react@18.2.0) - '@floating-ui/dom': 1.2.3 + '@floating-ui/dom': 1.2.6 '@types/react-transition-group': 4.4.5 memoize-one: 6.0.0 prop-types: 15.8.1 From 3243ff0999ef30fbe44c6f20c1ea8f008592617b Mon Sep 17 00:00:00 2001 From: DavideSegullo Date: Wed, 19 Apr 2023 13:08:41 +0200 Subject: [PATCH 39/46] feat(txs-tracer-core): :sparkles: improve loading times --- .../cross-swap-trace-machine.ts | 4 +-- .../src/lib/utils/cross-swap.ts | 29 ++++++++++++------- 2 files changed, 20 insertions(+), 13 deletions(-) diff --git a/packages/txs-tracer-core/src/lib/machines/cross-swap-trace-machine/cross-swap-trace-machine.ts b/packages/txs-tracer-core/src/lib/machines/cross-swap-trace-machine/cross-swap-trace-machine.ts index c8b5291..6fde11b 100644 --- a/packages/txs-tracer-core/src/lib/machines/cross-swap-trace-machine/cross-swap-trace-machine.ts +++ b/packages/txs-tracer-core/src/lib/machines/cross-swap-trace-machine/cross-swap-trace-machine.ts @@ -257,8 +257,8 @@ export const crossSwapTraceMachine = createMachine( return { type: 'TRACE', data: { - query: `write_acknowledgement.packet_src_channel='${ctx.dstChannel}' and write_acknowledgement.packet_dst_channel='${ctx.srcChannel}' and write_acknowledgement.packet_sequence=${data.packetSequence}`, - websocketUrl: ctx.websocketUrl, + query: `acknowledge_packet.packet_src_channel='${ctx.dstChannel}' and acknowledge_packet.packet_dst_channel='${ctx.srcChannel}' and acknowledge_packet.packet_sequence=${data.packetSequence}`, + websocketUrl: ctx.dstWebsocketUrl, }, }; } diff --git a/packages/txs-tracer-core/src/lib/utils/cross-swap.ts b/packages/txs-tracer-core/src/lib/utils/cross-swap.ts index 2e13b2d..a7fda27 100644 --- a/packages/txs-tracer-core/src/lib/utils/cross-swap.ts +++ b/packages/txs-tracer-core/src/lib/utils/cross-swap.ts @@ -32,19 +32,26 @@ export const getFungibleTokenPacketResponses = (tx: IndexedTx) => { export const getCrossSwapPacketSequence = (tx: IndexedTx) => { const { success, error } = getFungibleTokenPacketResponses(tx); - if (success) { - const responseRaw: SwapContractResponseRaw = JSON.parse(success.value); - - const response: SwapContractResponse = { - contract_result: JSON.parse( - fromAscii(fromBase64(responseRaw.contract_result)), - ), - ibc_ack: JSON.parse(fromAscii(fromBase64(responseRaw.ibc_ack))), - }; + try { + if (success) { + const responseRaw: SwapContractResponseRaw = JSON.parse(success.value); + + const response: SwapContractResponse = { + contract_result: JSON.parse( + fromAscii(fromBase64(responseRaw.contract_result)), + ), + ibc_ack: JSON.parse(fromAscii(fromBase64(responseRaw.ibc_ack))), + }; + return { + packetSequence: response.contract_result.packet_sequence, + error: undefined, + }; + } + } catch { return { - packetSequence: response.contract_result.packet_sequence, - error: undefined, + packetSequence: undefined, + error: 'Unknown error', }; } From fdeb32595789b5d6d2101cd83fad0ce0629e5426 Mon Sep 17 00:00:00 2001 From: DavideSegullo Date: Wed, 19 Apr 2023 13:09:02 +0200 Subject: [PATCH 40/46] feat(demo-app-cosmos): :sparkles: add mainnet examples --- apps/demo-app-cosmos/pages/_app.tsx | 66 ++++++++++++++++++++++------ apps/demo-app-cosmos/pages/index.tsx | 62 +++++++++++--------------- 2 files changed, 78 insertions(+), 50 deletions(-) diff --git a/apps/demo-app-cosmos/pages/_app.tsx b/apps/demo-app-cosmos/pages/_app.tsx index 905633d..ddead09 100644 --- a/apps/demo-app-cosmos/pages/_app.tsx +++ b/apps/demo-app-cosmos/pages/_app.tsx @@ -1,11 +1,22 @@ import { Chain } from "@chain-registry/types"; import { ChakraProvider } from "@chakra-ui/react"; import { Decimal } from "@cosmjs/math"; -import { GasPrice } from "@cosmjs/stargate"; +import { Registry } from "@cosmjs/proto-signing"; +import { AminoTypes, GasPrice } from "@cosmjs/stargate"; import { wallets as keplrWallets } from "@cosmos-kit/keplr"; import { ChainProvider, defaultTheme } from "@cosmos-kit/react"; import { assets, chains } from "chain-registry"; import type { AppProps } from "next/app"; +import { + cosmosAminoConverters, + cosmosProtoRegistry, + cosmwasmAminoConverters, + cosmwasmProtoRegistry, + ibcAminoConverters, + ibcProtoRegistry, + osmosisAminoConverters, + osmosisProtoRegistry, +} from 'osmojs'; function MyApp({ Component, pageProps }: AppProps) { return ( @@ -21,21 +32,50 @@ function MyApp({ Component, pageProps }: AppProps) { wallets={[ ...keplrWallets, ]} - defaultNameService={"osmosis"} + endpointOptions={{ + 'juno': { + rpc: ['https://rpc-juno.itastakers.com'] + } + }} + walletConnectOptions={{ + signClient: { + projectId: process.env.NEXT_PUBLIC_WALLET_CONNECT_PROJECT_ID ?? '', + relayUrl: process.env.NEXT_PUBLIC_WALLET_CONNECT_RELAY_URL, + metadata: { + name: process.env.NEXT_PUBLIC_WALLET_CONNECT_METADATA_NAME ?? '', + description: + process.env.NEXT_PUBLIC_WALLET_CONNECT_METADATA_DESCRIPTION ?? '', + url: process.env.NEXT_PUBLIC_WALLET_CONNECT_METADATA_URL ?? '', + icons: [process.env.NEXT_PUBLIC_WALLET_CONNECT_METADATA_ICON ?? ''], + }, + }, + }} signerOptions={{ signingStargate: (chain: Chain) => { - switch (chain.chain_name) { - case "osmosistestnet": - return { - gasPrice: new GasPrice(Decimal.zero(1), "uosmo") - }; - case "junotestnet": - return { - gasPrice: new GasPrice(Decimal.zero(1), "ujunox") - }; - default: - return void 0; + let gasPrice: GasPrice | undefined = undefined; + + if (chain.fees && chain.fees.fee_tokens.length > 0) { + gasPrice = new GasPrice( + Decimal.zero(1), + chain.fees.fee_tokens[0].denom, + ); } + + return { + gasPrice, + registry: new Registry([ + ...ibcProtoRegistry, + ...cosmosProtoRegistry, + ...osmosisProtoRegistry, + ...cosmwasmProtoRegistry, + ]), + aminoTypes: new AminoTypes({ + ...ibcAminoConverters, + ...cosmosAminoConverters, + ...osmosisAminoConverters, + ...cosmwasmAminoConverters, + }), + }; }, }} logLevel={"INFO"} diff --git a/apps/demo-app-cosmos/pages/index.tsx b/apps/demo-app-cosmos/pages/index.tsx index b13197a..19f655a 100644 --- a/apps/demo-app-cosmos/pages/index.tsx +++ b/apps/demo-app-cosmos/pages/index.tsx @@ -50,14 +50,14 @@ export function Index() { getRpcEndpoint, sign, getSigningStargateClient, - } = useChain('osmosistestnet'); + } = useChain('osmosis'); const { address: junoAddress, connect: connectCosmos, sign: signJuno, getRpcEndpoint: getJunoRpcEndpoint, getSigningStargateClient: getJunoSigningStargateClient, - } = useChain('junotestnet'); + } = useChain('juno'); const { status: globalStatus } = useWallet(); const sendToken = useCallback(async () => { @@ -76,17 +76,7 @@ export function Index() { fromAddress: address, }); - const fee: StdFee = { - amount: [ - { - denom: 'uosmo', - amount: '864', - }, - ], - gas: '86364', - }; - - const responseSign = await stargateClient.sign(address, [msg], fee, ''); + const responseSign = await sign([msg]); const txBytes = TxRaw.encode(responseSign).finish(); @@ -105,7 +95,7 @@ export function Index() { websocketUrl: rpc.replace('https', 'wss'), }, }); - }, [getSigningStargateClient, getRpcEndpoint, sendMachine, address]); + }, [getSigningStargateClient, address, sign, getRpcEndpoint, sendMachine]); const sendIBCToken = useCallback(async () => { const { transfer } = ibc.applications.transfer.v1.MessageComposer.withTypeUrl; @@ -115,12 +105,12 @@ export function Index() { const msg = transfer({ sourcePort: 'transfer', /** - * Channel 3316 from osmo to juno + * Channel 42 from osmo to juno */ - sourceChannel: 'channel-3316', + sourceChannel: 'channel-42', token: { denom: 'uosmo', - amount: '1000000', + amount: '1', }, sender: address, receiver: junoAddress, @@ -141,24 +131,19 @@ export function Index() { const transactionId = toHex(broadcasted.hash).toUpperCase(); const rpc = await getRpcEndpoint(); + const junoRPC = await getJunoRpcEndpoint(); sendIBCMachine({ type: 'TRACE', data: { websocketUrl: rpc.replace('https', 'wss'), + dstWebsocketUrl: junoRPC.replace('https', 'wss'), query: `tx.hash='${transactionId}'`, - srcChannel: 'channel-3316', - dstChannel: 'channel-140', + srcChannel: 'channel-42', + dstChannel: 'channel-0', }, }); - }, [ - getSigningStargateClient, - address, - junoAddress, - sign, - getRpcEndpoint, - sendIBCMachine, - ]); + }, [getSigningStargateClient, address, junoAddress, sign, getRpcEndpoint, getJunoRpcEndpoint, sendIBCMachine]); const sendIBCSwapToken = useCallback(async () => { const { transfer } = ibc.applications.transfer.v1.MessageComposer.withTypeUrl; @@ -178,7 +163,7 @@ export function Index() { const memo = { wasm: { - contract: 'osmo1efakw4was99usxve258p58a5a26f0yt072gvyej5zr4lv5r0hxqqsddqgg', + contract: 'osmo195stc2anmc6d9y6z7ms3u3pwskv5c8aql498r945pdw5axxe9xsqn76fs6', msg: { osmosis_swap: { output_denom: 'uosmo', @@ -195,15 +180,15 @@ export function Index() { const msg = transfer({ sourcePort: 'transfer', /** - * Channel 140 from juno to osmo + * Channel 0 from juno to osmo */ - sourceChannel: 'channel-140', + sourceChannel: 'channel-0', token: { - denom: 'ujunox', - amount: '1000', + denom: 'ujuno', + amount: '100000', }, sender: junoAddress, - receiver: 'osmo1efakw4was99usxve258p58a5a26f0yt072gvyej5zr4lv5r0hxqqsddqgg', + receiver: 'osmo195stc2anmc6d9y6z7ms3u3pwskv5c8aql498r945pdw5axxe9xsqn76fs6', timeoutTimestamp: Long.fromNumber( Math.floor(new Date().getTime() / 1000) + 600, ).multiply(1_000_000_000), @@ -221,17 +206,20 @@ export function Index() { const transactionId = toHex(broadcasted.hash).toUpperCase(); const rpc = await getJunoRpcEndpoint(); + const osmosisRPC = await getRpcEndpoint(); sendCrossSwapMachine({ type: 'TRACE', data: { - websocketUrl: rpc.replace('https', 'wss'), + websocketUrl: 'https://rpc-juno.itastakers.com'.replace('https', 'wss'), + dstWebsocketUrl: 'https://rpc.osmosis.zone'.replace('https', 'wss'), query: `tx.hash='${transactionId}'`, - srcChannel: 'channel-140', - dstChannel: 'channel-3316', + srcChannel: 'channel-0', + dstChannel: 'channel-42', + txHash: transactionId, }, }); - }, [getJunoSigningStargateClient, junoAddress, address, signJuno, getJunoRpcEndpoint, sendCrossSwapMachine]); + }, [getJunoSigningStargateClient, crossSwapState.matches, junoAddress, address, signJuno, getJunoRpcEndpoint, getRpcEndpoint, sendCrossSwapMachine]); /* * Replace the elements below with your own. From e11cf2b44f5ccf65cc91087f9a04fede3b779353 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Wed, 19 Apr 2023 11:11:28 +0000 Subject: [PATCH 41/46] chore(release): 1.0.0-next.7 [skip ci] # [1.0.0-next.7](https://github.com/nabla-studio/cosmos-txs-tracer/compare/txs-tracer-core-v1.0.0-next.6...txs-tracer-core-v1.0.0-next.7) (2023-04-19) ### Features * :arrow_up: upgrade cosmos-kit deps ([35ae101](https://github.com/nabla-studio/cosmos-txs-tracer/commit/35ae10193ff338994820057e6853b2908bd20cec)) * **txs-tracer-core:** :sparkles: improve loading times ([3243ff0](https://github.com/nabla-studio/cosmos-txs-tracer/commit/3243ff0999ef30fbe44c6f20c1ea8f008592617b)) --- packages/txs-tracer-core/CHANGELOG.md | 8 ++++++++ packages/txs-tracer-core/package.json | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/packages/txs-tracer-core/CHANGELOG.md b/packages/txs-tracer-core/CHANGELOG.md index 9a1cc1f..eaf22ee 100644 --- a/packages/txs-tracer-core/CHANGELOG.md +++ b/packages/txs-tracer-core/CHANGELOG.md @@ -1,3 +1,11 @@ +# [1.0.0-next.7](https://github.com/nabla-studio/cosmos-txs-tracer/compare/txs-tracer-core-v1.0.0-next.6...txs-tracer-core-v1.0.0-next.7) (2023-04-19) + + +### Features + +* :arrow_up: upgrade cosmos-kit deps ([35ae101](https://github.com/nabla-studio/cosmos-txs-tracer/commit/35ae10193ff338994820057e6853b2908bd20cec)) +* **txs-tracer-core:** :sparkles: improve loading times ([3243ff0](https://github.com/nabla-studio/cosmos-txs-tracer/commit/3243ff0999ef30fbe44c6f20c1ea8f008592617b)) + # [1.0.0-next.6](https://github.com/nabla-studio/cosmos-txs-tracer/compare/txs-tracer-core-v1.0.0-next.5...txs-tracer-core-v1.0.0-next.6) (2023-04-18) diff --git a/packages/txs-tracer-core/package.json b/packages/txs-tracer-core/package.json index df5cc51..a4f2098 100644 --- a/packages/txs-tracer-core/package.json +++ b/packages/txs-tracer-core/package.json @@ -1,6 +1,6 @@ { "name": "@nabla-studio/txs-tracer-core", - "version": "1.0.0-next.6", + "version": "1.0.0-next.7", "description": "A series of state machines useful for tracking transactions for the Cosmos blockchain ecosystem", "type": "module", "repository": { From 262393d60ce3517c88f04aedd0fcc8a9382b2423 Mon Sep 17 00:00:00 2001 From: DavideSegullo Date: Thu, 20 Apr 2023 15:48:18 +0200 Subject: [PATCH 42/46] feat(txs-tracer-core): :sparkles: add end forward middleware tracing --- .../cross-swap-trace-machine.ts | 30 ++++++++++++++++++- .../src/lib/types/cross-swap-trace.ts | 25 ++++++++++++++++ 2 files changed, 54 insertions(+), 1 deletion(-) diff --git a/packages/txs-tracer-core/src/lib/machines/cross-swap-trace-machine/cross-swap-trace-machine.ts b/packages/txs-tracer-core/src/lib/machines/cross-swap-trace-machine/cross-swap-trace-machine.ts index 6fde11b..8348e5d 100644 --- a/packages/txs-tracer-core/src/lib/machines/cross-swap-trace-machine/cross-swap-trace-machine.ts +++ b/packages/txs-tracer-core/src/lib/machines/cross-swap-trace-machine/cross-swap-trace-machine.ts @@ -29,6 +29,10 @@ const initialContext: CrossSwapTraceContext = { errorMessage: '', srcChannel: '', dstChannel: '', + startSrcChannel: undefined, + startDstChannel: undefined, + endSrcChannel: undefined, + endDstChannel: undefined, query: '', txHash: '', }; @@ -53,6 +57,18 @@ export const crossSwapTraceMachine = createMachine( dstChannel: (_, event) => { return event.data.dstChannel; }, + startSrcChannel: (_, event) => { + return event.data.startSrcChannel; + }, + startDstChannel: (_, event) => { + return event.data.startDstChannel; + }, + endSrcChannel: (_, event) => { + return event.data.endSrcChannel; + }, + endDstChannel: (_, event) => { + return event.data.endDstChannel; + }, websocketUrl: (_, event) => { return event.data.websocketUrl; }, @@ -254,10 +270,22 @@ export const crossSwapTraceMachine = createMachine( const data = getCrossSwapPacketSequence(tx); if (data.packetSequence) { + /** + * If endSrcChannel and endDstChannel are configured, it means + * we need to trace the transaction from Osmosis to + * the forwarder chain (For example Cosmos Hub) + */ + const srcChannel = ctx.endSrcChannel + ? ctx.endSrcChannel + : ctx.dstChannel; + const dstChannel = ctx.endDstChannel + ? ctx.endDstChannel + : ctx.srcChannel; + return { type: 'TRACE', data: { - query: `acknowledge_packet.packet_src_channel='${ctx.dstChannel}' and acknowledge_packet.packet_dst_channel='${ctx.srcChannel}' and acknowledge_packet.packet_sequence=${data.packetSequence}`, + query: `acknowledge_packet.packet_src_channel='${srcChannel}' and acknowledge_packet.packet_dst_channel='${dstChannel}' and acknowledge_packet.packet_sequence=${data.packetSequence}`, websocketUrl: ctx.dstWebsocketUrl, }, }; diff --git a/packages/txs-tracer-core/src/lib/types/cross-swap-trace.ts b/packages/txs-tracer-core/src/lib/types/cross-swap-trace.ts index f11c764..b725b35 100644 --- a/packages/txs-tracer-core/src/lib/types/cross-swap-trace.ts +++ b/packages/txs-tracer-core/src/lib/types/cross-swap-trace.ts @@ -13,6 +13,27 @@ export type CrossSwapTraceContext = Omit & { txHash: string; errorMessage?: string; totalSteps: number; + /** + * Data definitions for interchain swaps + */ + /** + * Channel related to token transfer using forward middleware on start. + * for example if I swap atom to osmo (And the swap is performed on Juno Chain), + * I'll set it to the channel between the Osmosis chain and the Cosmos Hub chain. + * endSrcChannel: channel-1 + * endDstChannel: channel-207 + */ + startSrcChannel?: string; + startDstChannel?: string; + /** + * Channel related to token transfer using forward middleware + * for example if I swap osmo to atom (And the swap is performed on Juno Chain), + * I'll set it to the channel between the Osmosis chain and the Cosmos Hub chain. + * endSrcChannel: channel-0 + * endDstChannel: channel-141 + */ + endSrcChannel?: string; + endDstChannel?: string; }; export type CrossSwapMachineResultErrorPayload = @@ -22,6 +43,10 @@ export type CrossSwapMachineResultErrorPayload = export type CrossSwapTraceEventPayload = IBCTraceEventPayload & { txHash: string; + startSrcChannel?: string; + startDstChannel?: string; + endSrcChannel?: string; + endDstChannel?: string; }; export const CrossSwapTraceFinalState = { From 913b64cf2891a79759aad8dff7508642893c49bc Mon Sep 17 00:00:00 2001 From: DavideSegullo Date: Thu, 20 Apr 2023 19:22:58 +0200 Subject: [PATCH 43/46] feat(txs-tracer-core): :sparkles: add interchain swap trace added tracer between non-native tokens --- .../cross-swap-trace-machine.ts | 48 ++++++------------- .../src/lib/types/cross-swap-trace.ts | 29 +++-------- .../src/lib/utils/cross-swap.ts | 4 +- 3 files changed, 24 insertions(+), 57 deletions(-) diff --git a/packages/txs-tracer-core/src/lib/machines/cross-swap-trace-machine/cross-swap-trace-machine.ts b/packages/txs-tracer-core/src/lib/machines/cross-swap-trace-machine/cross-swap-trace-machine.ts index 8348e5d..f8ecb66 100644 --- a/packages/txs-tracer-core/src/lib/machines/cross-swap-trace-machine/cross-swap-trace-machine.ts +++ b/packages/txs-tracer-core/src/lib/machines/cross-swap-trace-machine/cross-swap-trace-machine.ts @@ -13,7 +13,7 @@ import { ibcTraceMachine } from '../ibc-trace-machine'; import { choose } from 'xstate/lib/actions'; import { txTraceMachine } from '../txs-trace-machine'; import { - getCrossSwapPacketSequence, + getCrossSwapAckPacketResponse, getFungibleTokenPacketResponses, } from '../../utils'; @@ -22,6 +22,7 @@ const initialContext: CrossSwapTraceContext = { connectionTimeout: 10_000, websocketUrl: '', dstWebsocketUrl: '', + executorWebsocketUrl: '', loading: false, currentStep: 0, totalSteps: 4, @@ -29,10 +30,6 @@ const initialContext: CrossSwapTraceContext = { errorMessage: '', srcChannel: '', dstChannel: '', - startSrcChannel: undefined, - startDstChannel: undefined, - endSrcChannel: undefined, - endDstChannel: undefined, query: '', txHash: '', }; @@ -57,24 +54,15 @@ export const crossSwapTraceMachine = createMachine( dstChannel: (_, event) => { return event.data.dstChannel; }, - startSrcChannel: (_, event) => { - return event.data.startSrcChannel; - }, - startDstChannel: (_, event) => { - return event.data.startDstChannel; - }, - endSrcChannel: (_, event) => { - return event.data.endSrcChannel; - }, - endDstChannel: (_, event) => { - return event.data.endDstChannel; - }, websocketUrl: (_, event) => { return event.data.websocketUrl; }, dstWebsocketUrl: (_, event) => { return event.data.dstWebsocketUrl; }, + executorWebsocketUrl: (_, event) => { + return event.data.executorWebsocketUrl; + }, query: (_, event) => { return event.data.query; }, @@ -106,7 +94,7 @@ export const crossSwapTraceMachine = createMachine( return ( event.data.state === IBCTraceFinalState.Complete && event.data.ackTx !== undefined && - getCrossSwapPacketSequence(event.data.ackTx).packetSequence !== + getCrossSwapAckPacketResponse(event.data.ackTx).packetSequence !== undefined ); }, @@ -126,14 +114,14 @@ export const crossSwapTraceMachine = createMachine( return ( event.data.state === IBCTraceFinalState.Complete && event.data.ackTx !== undefined && - getCrossSwapPacketSequence(event.data.ackTx).error !== undefined + getCrossSwapAckPacketResponse(event.data.ackTx).error !== undefined ); }, actions: raise((_, event) => { let errorMessage: string | undefined = ''; if (event.data.ackTx) { - const data = getCrossSwapPacketSequence(event.data.ackTx); + const data = getCrossSwapAckPacketResponse(event.data.ackTx); errorMessage = data.error; } @@ -267,26 +255,20 @@ export const crossSwapTraceMachine = createMachine( const tx = ctx.M1Tx; if (tx) { - const data = getCrossSwapPacketSequence(tx); + const data = getCrossSwapAckPacketResponse(tx); - if (data.packetSequence) { + if (data.response) { /** - * If endSrcChannel and endDstChannel are configured, it means - * we need to trace the transaction from Osmosis to - * the forwarder chain (For example Cosmos Hub) + * The channel between Osmosis and the destination chain */ - const srcChannel = ctx.endSrcChannel - ? ctx.endSrcChannel - : ctx.dstChannel; - const dstChannel = ctx.endDstChannel - ? ctx.endDstChannel - : ctx.srcChannel; + const srcChannel = data.response.contract_result.channel_id; + const packetSequence = data.response.contract_result.packet_sequence; return { type: 'TRACE', data: { - query: `acknowledge_packet.packet_src_channel='${srcChannel}' and acknowledge_packet.packet_dst_channel='${dstChannel}' and acknowledge_packet.packet_sequence=${data.packetSequence}`, - websocketUrl: ctx.dstWebsocketUrl, + query: `acknowledge_packet.packet_src_channel='${srcChannel}' and acknowledge_packet.packet_sequence=${packetSequence}`, + websocketUrl: ctx.executorWebsocketUrl, }, }; } diff --git a/packages/txs-tracer-core/src/lib/types/cross-swap-trace.ts b/packages/txs-tracer-core/src/lib/types/cross-swap-trace.ts index b725b35..7ce94e3 100644 --- a/packages/txs-tracer-core/src/lib/types/cross-swap-trace.ts +++ b/packages/txs-tracer-core/src/lib/types/cross-swap-trace.ts @@ -14,26 +14,9 @@ export type CrossSwapTraceContext = Omit & { errorMessage?: string; totalSteps: number; /** - * Data definitions for interchain swaps + * The url to the chain websocket that executes the swap contract. */ - /** - * Channel related to token transfer using forward middleware on start. - * for example if I swap atom to osmo (And the swap is performed on Juno Chain), - * I'll set it to the channel between the Osmosis chain and the Cosmos Hub chain. - * endSrcChannel: channel-1 - * endDstChannel: channel-207 - */ - startSrcChannel?: string; - startDstChannel?: string; - /** - * Channel related to token transfer using forward middleware - * for example if I swap osmo to atom (And the swap is performed on Juno Chain), - * I'll set it to the channel between the Osmosis chain and the Cosmos Hub chain. - * endSrcChannel: channel-0 - * endDstChannel: channel-141 - */ - endSrcChannel?: string; - endDstChannel?: string; + executorWebsocketUrl: string; }; export type CrossSwapMachineResultErrorPayload = @@ -42,11 +25,11 @@ export type CrossSwapMachineResultErrorPayload = }; export type CrossSwapTraceEventPayload = IBCTraceEventPayload & { + /** + * The url to the chain websocket that executes the swap contract. + */ + executorWebsocketUrl: string; txHash: string; - startSrcChannel?: string; - startDstChannel?: string; - endSrcChannel?: string; - endDstChannel?: string; }; export const CrossSwapTraceFinalState = { diff --git a/packages/txs-tracer-core/src/lib/utils/cross-swap.ts b/packages/txs-tracer-core/src/lib/utils/cross-swap.ts index a7fda27..81a8d1f 100644 --- a/packages/txs-tracer-core/src/lib/utils/cross-swap.ts +++ b/packages/txs-tracer-core/src/lib/utils/cross-swap.ts @@ -29,7 +29,7 @@ export const getFungibleTokenPacketResponses = (tx: IndexedTx) => { }; }; -export const getCrossSwapPacketSequence = (tx: IndexedTx) => { +export const getCrossSwapAckPacketResponse = (tx: IndexedTx) => { const { success, error } = getFungibleTokenPacketResponses(tx); try { @@ -45,12 +45,14 @@ export const getCrossSwapPacketSequence = (tx: IndexedTx) => { return { packetSequence: response.contract_result.packet_sequence, + response, error: undefined, }; } } catch { return { packetSequence: undefined, + response: undefined, error: 'Unknown error', }; } From d163ad4e3d121b3d89281093c72ad5a7cf457745 Mon Sep 17 00:00:00 2001 From: DavideSegullo Date: Thu, 20 Apr 2023 19:23:09 +0200 Subject: [PATCH 44/46] feat(demo-app-cosmos): :sparkles: add examples --- apps/demo-app-cosmos/pages/_app.tsx | 5 - apps/demo-app-cosmos/pages/index.tsx | 141 +++++++++++++++++++++++---- 2 files changed, 123 insertions(+), 23 deletions(-) diff --git a/apps/demo-app-cosmos/pages/_app.tsx b/apps/demo-app-cosmos/pages/_app.tsx index ddead09..054cb39 100644 --- a/apps/demo-app-cosmos/pages/_app.tsx +++ b/apps/demo-app-cosmos/pages/_app.tsx @@ -32,11 +32,6 @@ function MyApp({ Component, pageProps }: AppProps) { wallets={[ ...keplrWallets, ]} - endpointOptions={{ - 'juno': { - rpc: ['https://rpc-juno.itastakers.com'] - } - }} walletConnectOptions={{ signClient: { projectId: process.env.NEXT_PUBLIC_WALLET_CONNECT_PROJECT_ID ?? '', diff --git a/apps/demo-app-cosmos/pages/index.tsx b/apps/demo-app-cosmos/pages/index.tsx index 19f655a..86d7180 100644 --- a/apps/demo-app-cosmos/pages/index.tsx +++ b/apps/demo-app-cosmos/pages/index.tsx @@ -53,11 +53,21 @@ export function Index() { } = useChain('osmosis'); const { address: junoAddress, - connect: connectCosmos, + connect: connectJuno, sign: signJuno, getRpcEndpoint: getJunoRpcEndpoint, getSigningStargateClient: getJunoSigningStargateClient, } = useChain('juno'); + const { + address: cosmosAddress, + connect: connectCosmos, + sign: signCosmos, + getRpcEndpoint: getCosmosRpcEndpoint, + getSigningStargateClient: getCosmosSigningStargateClient, + } = useChain('cosmoshub'); + const { + address: akashAddress + } = useChain('akash'); const { status: globalStatus } = useWallet(); const sendToken = useCallback(async () => { @@ -92,7 +102,7 @@ export function Index() { type: 'TRACE', data: { query: `tx.hash='${transactionId}'`, - websocketUrl: rpc.replace('https', 'wss'), + websocketUrl: rpc.toString().replace('https', 'wss'), }, }); }, [getSigningStargateClient, address, sign, getRpcEndpoint, sendMachine]); @@ -136,8 +146,8 @@ export function Index() { sendIBCMachine({ type: 'TRACE', data: { - websocketUrl: rpc.replace('https', 'wss'), - dstWebsocketUrl: junoRPC.replace('https', 'wss'), + websocketUrl: rpc.toString().replace('https', 'wss'), + dstWebsocketUrl: junoRPC.toString().replace('https', 'wss'), query: `tx.hash='${transactionId}'`, srcChannel: 'channel-42', dstChannel: 'channel-0', @@ -161,34 +171,125 @@ export function Index() { }) } - const memo = { + /** + * Native to non-native + */ + /* const memo = { wasm: { - contract: 'osmo195stc2anmc6d9y6z7ms3u3pwskv5c8aql498r945pdw5axxe9xsqn76fs6', + contract: 'osmo1uwk8xc6q0s6t5qcpr6rht3sczu6du83xq8pwxjua0hfj5hzcnh3sqxwvxs', msg: { osmosis_swap: { - output_denom: 'uosmo', + output_denom: 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2', //// ATOM on osmosis slippage: { twap: { slippage_percentage: '20', window_seconds: 10 } }, - receiver: junoAddress, + // receiver: junoAddress, + receiver: cosmosAddress, on_failed_delivery: { local_recovery_addr: address, }, + "next_memo": { + "forward": { + "receiver": junoAddress, // Final receiver + "port": "transfer", + "channel": "channel-207" // Juno's channel on gaia + } + }, }, }, }, + }; */ + + /** + * Non-native to native + */ + /* const memo = { + forward: { + "receiver": "osmo1uwk8xc6q0s6t5qcpr6rht3sczu6du83xq8pwxjua0hfj5hzcnh3sqxwvxs", // XCS contract + "port": "transfer", + "channel": "channel-141", // Osmosis channel on gaia + "next": { + wasm: { + contract: 'osmo1uwk8xc6q0s6t5qcpr6rht3sczu6du83xq8pwxjua0hfj5hzcnh3sqxwvxs', + msg: { + osmosis_swap: { + output_denom: 'ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED', // Juno on osmosis + slippage: { twap: { slippage_percentage: '20', window_seconds: 10 } }, + receiver: junoAddress, + on_failed_delivery: { + local_recovery_addr: address, + }, + }, + }, + }, + } + } + }; */ + /** + * Non-native to non-native + */ + const memo = { + forward: { + "receiver": "osmo1uwk8xc6q0s6t5qcpr6rht3sczu6du83xq8pwxjua0hfj5hzcnh3sqxwvxs", // XCS contract + "port": "transfer", + "channel": "channel-141", // Osmosis channel on gaia + "next": { + wasm: { + contract: 'osmo1uwk8xc6q0s6t5qcpr6rht3sczu6du83xq8pwxjua0hfj5hzcnh3sqxwvxs', + msg: { + osmosis_swap: { + output_denom: 'ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4', // Akash on osmosis + slippage: { twap: { slippage_percentage: '20', window_seconds: 10 } }, + receiver: akashAddress, // Akash address + "next_memo": { + "forward": { + "receiver": junoAddress, // Final receiver + "port": "transfer", + "channel": "channel-35" // Juno's channel on Akash + } + }, + on_failed_delivery: { + local_recovery_addr: address, + }, + }, + }, + }, + } + } }; - const msg = transfer({ + /** + * Native to non-native + */ + /* const msg = transfer({ sourcePort: 'transfer', - /** - * Channel 0 from juno to osmo - */ + // Channel 0 from juno to osmo sourceChannel: 'channel-0', token: { denom: 'ujuno', amount: '100000', }, sender: junoAddress, - receiver: 'osmo195stc2anmc6d9y6z7ms3u3pwskv5c8aql498r945pdw5axxe9xsqn76fs6', + receiver: 'osmo1uwk8xc6q0s6t5qcpr6rht3sczu6du83xq8pwxjua0hfj5hzcnh3sqxwvxs', + timeoutTimestamp: Long.fromNumber( + Math.floor(new Date().getTime() / 1000) + 600, + ).multiply(1_000_000_000), + memo: JSON.stringify(memo) + }); */ + + /** + * Non-native to native + * + * Swap Atom to JUNO + */ + const msg = transfer({ + sourcePort: 'transfer', + // Channel 1 from juno to atom + sourceChannel: 'channel-1', + token: { + denom: 'ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9', // Atom on Juno + amount: '1', + }, + sender: junoAddress, + receiver: cosmosAddress, timeoutTimestamp: Long.fromNumber( Math.floor(new Date().getTime() / 1000) + 600, ).multiply(1_000_000_000), @@ -211,15 +312,18 @@ export function Index() { sendCrossSwapMachine({ type: 'TRACE', data: { - websocketUrl: 'https://rpc-juno.itastakers.com'.replace('https', 'wss'), - dstWebsocketUrl: 'https://rpc.osmosis.zone'.replace('https', 'wss'), + websocketUrl: 'https://rpc-juno-ia.cosmosia.notional.ventures'.replace('https', 'wss'), + dstWebsocketUrl: 'https://rpc.cosmoshub.strange.love'.replace('https', 'wss'), + executorWebsocketUrl: 'https://rpc.osmosis.zone'.replace('https', 'wss'), query: `tx.hash='${transactionId}'`, - srcChannel: 'channel-0', - dstChannel: 'channel-42', + /* srcChannel: 'channel-0', // Channels for Juno to osmosis (Native to native) + dstChannel: 'channel-42', */ + srcChannel: 'channel-1', // Channels for Juno to CosmosHub (Non-native to native) and (Non-native to non-native) + dstChannel: 'channel-207', txHash: transactionId, }, }); - }, [getJunoSigningStargateClient, crossSwapState.matches, junoAddress, address, signJuno, getJunoRpcEndpoint, getRpcEndpoint, sendCrossSwapMachine]); + }, [getJunoSigningStargateClient, crossSwapState.matches, cosmosAddress, address, junoAddress, signJuno, getJunoRpcEndpoint, getRpcEndpoint, sendCrossSwapMachine]); /* * Replace the elements below with your own. @@ -244,6 +348,7 @@ export function Index() {